diff --git a/.gitignore b/.gitignore index c9278761b0c..a10d522c704 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,7 @@ lm_eval/caching/.cache # don't track files created by wandb wandb examples/wandb +.hermeto/ +.hermeto.env +hermeto-output/ +.build-config.json diff --git a/.tekton/odh-ta-lmes-job-pull-request.yaml b/.tekton/odh-ta-lmes-job-pull-request.yaml index c2f43ef9594..10329d6fb00 100644 --- a/.tekton/odh-ta-lmes-job-pull-request.yaml +++ b/.tekton/odh-ta-lmes-job-pull-request.yaml @@ -38,7 +38,13 @@ spec: - name: path-context value: . - name: hermetic - value: false + value: "true" + - name: prefetch-input + value: | + [ + {"type": "pip", "path": ".", "requirements_files": ["requirements/requirements-build.txt", "requirements/requirements-cuda.txt", "requirements/requirements-cpu.txt"], "binary": {"arch": ":all:"}}, + {"type": "rpm", "path": "requirements"} + ] - name: build-image-index value: true - name: build-platforms @@ -49,6 +55,8 @@ spec: - linux/s390x - name: image-expires-after value: 5d + - name: allow-cross-platform-images + value: "true" - name: enable-slack-failure-notification value: "false" taskRunSpecs: diff --git a/Dockerfile.konflux.lmes-job b/Dockerfile.konflux.lmes-job index e664f1d2fe0..47c388256d0 100644 --- a/Dockerfile.konflux.lmes-job +++ b/Dockerfile.konflux.lmes-job @@ -1,236 +1,42 @@ -############################################################### -# Stage 1 Base builder image with common tooling -############################################################### +FROM quay.io/aipcc/base-images/cpu:3.5.0@sha256:a398ebc954964790a18157c50bf36656f358005786e46273b87f885d78909d5d AS cpu-base +FROM quay.io/aipcc/base-images/cuda-12.9-el9.6:3.5.0@sha256:49dd116addf206d555b6c9532cd9d90f93730d8db4363ffe9b8901c34ecd51e1 AS cuda-base -FROM registry.access.redhat.com/ubi9/python-311:latest AS builder -USER root - -ENV PATH="$HOME/.cargo/bin:$PATH" -ENV LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib:/usr/lib64:/usr/lib -ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ - -ARG TARGETARCH -# Install dependencies -RUN dnf install -y skopeo && dnf clean all -RUN if [ "$TARGETARCH" = "s390x" ]; then \ - dnf install -y gcc-toolset-13 make wget unzip rust cargo gcc-gfortran openblas-devel pkgconfig && \ - dnf clean all ; \ - elif [ "$TARGETARCH" = "ppc64le" ]; then \ - dnf install -y gcc-toolset-13 make wget unzip rust cargo && \ - dnf clean all ; \ - fi && \ - pip install --upgrade pip 'cmake<4' setuptools wheel - -COPY requirements.txt . - -# Create a dummy file to trigger build dependency -RUN touch /tmp/control - -############################################################### -# Stage 2 to build Arrow -############################################################### - -FROM builder AS arrow-builder -USER root +FROM cpu-base AS base-ppc64le +FROM cpu-base AS base-s390x +FROM cuda-base AS base-amd64 +FROM cuda-base AS base-arm64 ARG TARGETARCH -RUN mkdir -p /arrowwheels - -RUN if [ "$TARGETARCH" = "ppc64le" ] ; then \ - PYARROW_VERSION=$(sed -n 's/^pyarrow==\([^ ;]*\).*/\1/p' requirements.txt) ; \ - if [ -z "$PYARROW_VERSION" ]; then \ - echo "ERROR: pyarrow version not found in requirements.txt" >&2 ; \ - exit 1 ; \ - fi ; \ - export PYARROW_VERSION ; \ - git clone -b apache-arrow-${PYARROW_VERSION} https://github.com/apache/arrow.git --recursive && \ - cd arrow && rm -rf .git && mkdir dist && \ - pip3 install -r python/requirements-build.txt && \ - export ARROW_HOME=$(pwd)/dist && \ - export LD_LIBRARY_PATH=$(pwd)/dist/lib:$LD_LIBRARY_PATH && \ - export CMAKE_PREFIX_PATH=$ARROW_HOME:$CMAKE_PREFIX_PATH && \ - export PARQUET_TEST_DATA="${PWD}/cpp/submodules/parquet-testing/data" && \ - export ARROW_TEST_DATA="${PWD}/testing/data" && \ - cmake -S cpp -B cpp/build \ - -DCMAKE_INSTALL_PREFIX=$ARROW_HOME \ - -DCMAKE_BUILD_TYPE=release \ - -DARROW_WITH_BZ2=ON \ - -DARROW_WITH_ZLIB=ON \ - -DARROW_WITH_ZSTD=ON \ - -DARROW_WITH_LZ4=ON \ - -DARROW_WITH_SNAPPY=ON \ - -DARROW_WITH_BROTLI=ON \ - -DARROW_DATASET=ON \ - -DARROW_FILESYSTEM=ON \ - -DARROW_COMPUTE=ON \ - -DARROW_JSON=ON \ - -DARROW_CSV=ON \ - -DARROW_PYTHON=ON \ - -DARROW_PARQUET=ON \ - -DARROW_ORC=ON \ - -DARROW_BUILD_SHARED=ON \ - -DARROW_BUILD_TESTS=OFF && \ - cd cpp/build && \ - make -j20 install && \ - export PYARROW_PARALLEL=20 && \ - export PYARROW_WITH_PARQUET=1 && \ - export PYARROW_WITH_DATASET=1 && \ - export PYARROW_BUNDLE_ARROW_CPP=1 && \ - pip3 install wheel && \ - cd ../../python && \ - python setup.py build_ext \ - --build-type=release \ - --bundle-arrow-cpp \ - bdist_wheel --dist-dir /arrowwheels/ \ -; fi - -COPY patches/s390x/parquet-support.patch /tmp/s390x-parquet.patch - -RUN if [ "$TARGETARCH" = "s390x" ] ; then \ - git clone https://github.com/apache/arrow.git --recursive && \ - cd arrow && git checkout 7c3d4867e40dd0100542247a61cb83520369b2d4 && \ - git apply /tmp/s390x-parquet.patch && \ - rm -rf .git && mkdir dist && \ - pip3 install -r python/requirements-build.txt && \ - export ARROW_HOME=$(pwd)/dist && \ - export LD_LIBRARY_PATH=$(pwd)/dist/lib:$LD_LIBRARY_PATH && \ - export CMAKE_PREFIX_PATH=$ARROW_HOME:$CMAKE_PREFIX_PATH && \ - export PARQUET_TEST_DATA="${PWD}/cpp/submodules/parquet-testing/data" && \ - export ARROW_TEST_DATA="${PWD}/testing/data" && \ - cmake -S cpp -B cpp/build \ - -DCMAKE_INSTALL_PREFIX=$ARROW_HOME \ - -DCMAKE_BUILD_TYPE=release \ - -DARROW_WITH_BZ2=ON \ - -DARROW_WITH_ZLIB=ON \ - -DARROW_WITH_ZSTD=ON \ - -DARROW_WITH_LZ4=ON \ - -DARROW_WITH_SNAPPY=ON \ - -DARROW_WITH_BROTLI=ON \ - -DARROW_DATASET=ON \ - -DARROW_FILESYSTEM=ON \ - -DARROW_COMPUTE=ON \ - -DARROW_JSON=ON \ - -DARROW_CSV=ON \ - -DARROW_PYTHON=ON \ - -DARROW_PARQUET=ON \ - -DARROW_ORC=OFF \ - -DARROW_BUILD_SHARED=ON \ - -DARROW_BUILD_TESTS=OFF && \ - cd cpp/build && \ - make -j20 install && \ - export PYARROW_PARALLEL=20 && \ - export PYARROW_WITH_PARQUET=1 && \ - export PYARROW_WITH_DATASET=1 && \ - export PYARROW_BUNDLE_ARROW_CPP=1 && \ - pip3 install wheel && \ - cd ../../python && \ - python setup.py build_ext \ - --build-type=release \ - --bundle-arrow-cpp \ - bdist_wheel --dist-dir /arrowwheels/ \ -; fi - -############################################################### -# Stage 3 to build PyTorch -############################################################### - -FROM builder AS torch-builder +FROM base-${TARGETARCH} USER root -ARG MAX_JOBS -ARG _GLIBCXX_USE_CXX11_ABI=1 -RUN mkdir -p /torchwheels - -ARG TARGETARCH -RUN if [ "$TARGETARCH" = "s390x" ] || [ "$TARGETARCH" = "ppc64le" ]; then \ - TORCH_VERSION=$(sed -n 's/^torch==\([^ ;]*\).*/\1/p' requirements.txt) ; \ - if [ -z "$TORCH_VERSION" ]; then \ - echo "ERROR: torch version not found in requirements.txt" >&2 ; \ - exit 1 ; \ - fi ; \ - export TORCH_VERSION ; \ - source /opt/rh/gcc-toolset-13/enable && \ - git clone --recursive https://github.com/pytorch/pytorch.git -b v${TORCH_VERSION} && \ - cd pytorch && pip install -r requirements.txt && \ - python setup.py develop && \ - rm -f dist/torch*+git*whl && \ - PYTORCH_BUILD_VERSION=${TORCH_VERSION} PYTORCH_BUILD_NUMBER=1 pip wheel . --wheel-dir /torchwheels/ \ -; fi - -############################################################### -# Stage 4 to build OpenBLAS -############################################################### -FROM builder AS openblas-builder -ENV OPENBLAS_VERSION=0.3.30 ARG TARGETARCH -WORKDIR /root - -# Creating a directory for OpenBlas -RUN mkdir /tmp/openblas - -RUN if [ "$TARGETARCH" = "ppc64le" ]; then \ - source /opt/rh/gcc-toolset-13/enable && \ - wget https://github.com/OpenMathLib/OpenBLAS/releases/download/v${OPENBLAS_VERSION}/OpenBLAS-${OPENBLAS_VERSION}.zip && \ - unzip OpenBLAS-${OPENBLAS_VERSION}.zip -d /tmp/ && mv -T /tmp/OpenBLAS-${OPENBLAS_VERSION} /tmp/openblas && \ - cd /tmp/openblas && \ - make -j$(nproc) TARGET=POWER9 BINARY=64 USE_OPENMP=1 USE_THREAD=1 NUM_THREADS=120 DYNAMIC_ARCH=1 INTERFACE64=0 ; \ - fi - -############################################################### -# Stage 5 to build Final Image -############################################################### - -FROM builder AS final-build -USER root - -ARG TARGETARCH -ENV PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ -ENV PATH="$HOME/.cargo/bin:$PATH" -ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib64:/usr/local/lib:/usr/lib64:/usr/lib - -# Dummy file to trigger build dependency -COPY --from=torch-builder /tmp/control /dev/null -COPY --from=arrow-builder /tmp/control /dev/null - -# Copy built OpenBLAS sources -COPY --from=openblas-builder /tmp/openblas/ /openblas - -# Install PyTorch and Arrow wheels -ARG TARGETARCH -RUN --mount=type=cache,from=torch-builder,source=/torchwheels/,target=/torchwheels/,ro \ - --mount=type=cache,from=arrow-builder,source=/arrowwheels/,target=/arrowwheels/,ro \ - if [ "$TARGETARCH" = "s390x" ] || [ "$TARGETARCH" = "ppc64le" ]; then \ - HOME=/root pip install /arrowwheels/*.whl /torchwheels/*.whl ; \ - fi - -# Install OpenBLAS -RUN if [ "$TARGETARCH" = "ppc64le" ]; then \ - PREFIX=/usr/local make -C /openblas install && rm -rf /openblas ; \ - fi - RUN sed -i.bak 's/include-system-site-packages = false/include-system-site-packages = true/' /opt/app-root/pyvenv.cfg -# Copy license COPY LICENSE.md /licenses/lm-evaluation-harness.md WORKDIR /opt/app-root/src COPY . . -# Copy the pinned requirements file -COPY requirements.txt . +RUN dnf install -y skopeo && \ + dnf clean all -# Install the pinned dependencies -RUN if [ "$TARGETARCH" = "s390x" ]; then \ - grep -v -E "^(pyarrow|torch)[>= /tmp/requirements_filtered.txt && \ - pip install --no-cache-dir -r /tmp/requirements_filtered.txt ; \ +RUN pip install --no-cache-dir --no-deps --require-hashes \ + -r requirements/requirements-build.txt + +RUN if [ "$TARGETARCH" = "amd64" ] || [ "$TARGETARCH" = "arm64" ]; then \ + pip install --no-cache-dir --no-deps --require-hashes \ + -r requirements/requirements-cuda.txt; \ else \ - pip install --no-cache-dir -r requirements.txt ; \ + pip install --no-cache-dir --no-deps --require-hashes \ + -r requirements/requirements-cpu.txt; \ fi -# Install the package RUN pip install --no-cache-dir --no-deps -e . +RUN chmod -R og+rX /opt/app-root/src/ + USER default RUN mkdir /opt/app-root/src/hf_home && chmod g+rwx /opt/app-root/src/hf_home && \ @@ -243,7 +49,7 @@ ENV PATH="/opt/app-root/bin:/opt/app-root/src/.local/bin/:/opt/app-root/src/bin: RUN python -c 'from lm_eval.tasks.unitxt import task; import os.path; print("class: !function " + task.__file__.replace("task.py", "task.Unitxt"))' > ./my_tasks/unitxt -ENV PYTHONPATH=/opt/app-root/src/.local/lib/python3.11/site-packages:/opt/app-root/src/lm-evaluation-harness:/opt/app-root/src:/opt/app-root/src/server +ENV PYTHONPATH=/opt/app-root/src/.local/lib/python3.12/site-packages:/opt/app-root/src/lm-evaluation-harness:/opt/app-root/src:/opt/app-root/src/server ENV HF_HOME=/opt/app-root/src/hf_home ENV UNITXT_CATALOGS=/opt/app-root/src/my_catalogs diff --git a/pyproject.toml b/pyproject.toml index c4890be9976..6ed9326a4f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,49 +1,38 @@ [build-system] -requires = ["setuptools==70.0.0", "wheel==0.45.1"] +requires = ["setuptools>=64.0"] build-backend = "setuptools.build_meta" [project] name = "lm_eval" -version = "0.4.8" +version = "0.4.12" authors = [ - {name="EleutherAI", email="contact@eleuther.ai"} + { name = "EleutherAI", email = "contact@eleuther.ai" } ] description = "A framework for evaluating language models" readme = "README.md" classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] -requires-python = ">=3.11,<3.13" -license = { "text" = "MIT" } +requires-python = ">=3.10" +license = { text = "MIT" } dependencies = [ - "urllib3==2.6.3", - "accelerate==1.0.1", - "evaluate==0.4.3", - "eval-hub-sdk[adapter]==0.4.2", - "datasets==3.1.0", - "jsonlines==4.0.0", - "numexpr==2.10.1", - "peft==0.13.2", - "pybind11==2.13.6", - "pytablewriter==1.2.0", - "rouge-score==0.1.2", - "sacrebleu==2.4.3", - "scikit-learn==1.5.2", - "sqlitedict==2.1.0", - "torch==2.6.0", - "tqdm-multiprocess==0.0.11", - "transformers==4.48.0", - "zstandard==0.23.0", - "dill==0.3.8", - "word2number==1.1", - "more_itertools==10.5.0", - "unitxt==1.17.2", - "jiwer==3.0.5", - "boto3==1.42.12", - "olot==0.1.15", + "datasets>=2.16.0", + "numpy", + "evaluate>=0.4.0", + "jinja2", + "jsonlines", + "pytablewriter", + "rouge-score>=0.0.4", + "sacrebleu>=1.5.0", + "scikit-learn>=0.24.1", + "sqlitedict", + "zstandard", + "dill", + "word2number", + "more_itertools", + "typing_extensions" ] [tool.setuptools.packages.find] @@ -62,33 +51,122 @@ Homepage = "https://github.com/EleutherAI/lm-evaluation-harness" Repository = "https://github.com/EleutherAI/lm-evaluation-harness" [project.optional-dependencies] -api = [ - "requests==2.32.5", - "aiohttp==3.13.3", - "tenacity==9.0.0", - "tqdm==4.66.6", - "tiktoken==0.8.0", -] -ifeval = ["langdetect==1.0.9", "immutabledict==4.2.1", "nltk==3.9.3"] +# Model backend dependencies +api = ["requests", "aiohttp", "tenacity", "tqdm", "tiktoken"] +hf = ["transformers>=4.1","torch>=1.8", "accelerate>=0.26.0", "peft>=0.2.0",] +vllm = ["vllm>=0.18"] +gptq = ["auto-gptq[triton]>=0.6.0"] +gptqmodel = ["gptqmodel>=1.0.9"] +ipex = ["optimum-intel"] +ibm_watsonx_ai = ["ibm_watsonx_ai>=1.1.22", "python-dotenv"] +# mamba requires CUDA (nvcc) - cannot build on macOS/CPU-only systems +# mamba = ["mamba_ssm", "causal-conv1d==1.0.2", "torch"] +# megatron_lm requires separate installation of Megatron-LM +# megatron_lm = ["torch>=1.8"] +optimum = ["optimum[openvino]"] +habana = ["optimum-habana"] +sparsify = ["sparsify"] +#sae_lens = ["sae_lens"] # sae-lens requires datasets < 3.0 +# Task specific dependencies +acpbench = ["lark>=1.1.9", "tarski[clingo]==0.8.2", "pddl==0.4.2", "kstar-planner==1.4.2"] +audiolm_qwen = ["librosa", "soundfile"] +dev = ["pytest", "pytest-cov", "pytest-xdist", "pre-commit", "requests", "aiohttp", "tenacity", "tqdm", "tiktoken", "sentencepiece", "ruff"] +ifeval = ["langdetect", "immutabledict", "nltk>=3.9.1"] +japanese_leaderboard = ["emoji==2.14.0", "neologdn==0.5.3", "fugashi[unidic-lite]", "rouge_score>=0.1.2"] +longbench = ["jieba", "fuzzywuzzy", "rouge"] +libra = ["pymorphy2"] math = ["sympy>=1.12", "antlr4-python3-runtime==4.11", "math_verify[antlr4_11_0]"] +multilingual = ["nagisa>=0.2.7", "jieba>=0.42.1", "pycountry"] +ruler = ["nltk", "wonderwords", "scipy"] +sentencepiece = ["sentencepiece>=0.1.98"] +discrim_eval = ["statsmodels==0.14.4"] +unitxt = ["unitxt==1.22.0"] +wandb = ["wandb>=0.16.3", "pandas", "numpy"] +zeno = ["pandas", "zeno-client"] +tasks = [ + "lm_eval[discrim_eval]", + "lm_eval[ifeval]", + "lm_eval[japanese_leaderboard]", + "lm_eval[longbench]", + "lm_eval[libra]", + "lm_eval[math]", + "lm_eval[multilingual]", + "lm_eval[ruler]", +] + +[dependency-groups] dev = [ - "pytest==8.3.3", - "pytest-cov==6.0.0", - "pytest-xdist==3.6.1", - "pre-commit==4.0.1", - "mypy==1.13.0", + "lm_eval[api]", "lm_eval[dev]", "lm_eval[hf]","sentencepiece" +] + +[tool.uv] +conflicts = [ + [ + { extra = "acpbench" }, + { extra = "math" }, + ], + [ + { extra = "acpbench" }, + { extra = "tasks" }, + ], + [ + { extra = "gptq" }, + { extra = "vllm" }, + ], ] -hf_transfer = ["hf-transfer==0.1.9"] -testing = ["pytest==8.3.3", "pytest-cov==6.0.0", "pytest-xdist==3.6.1"] -ibm_watsonx_ai = ["ibm-watsonx-ai==1.4.11"] + +[tool.pymarkdown] +plugins.md013.enabled = false # line-length +plugins.md024.allow_different_nesting = true # no-duplicate-headers +plugins.md025.enabled = false # single-header +plugins.md028.enabled = false # no-blanks-blockquote +plugins.md029.allow_extended_start_values = true # ol-prefix +plugins.md034.enabled = false # no-bare-urls [tool.ruff.lint] -extend-select = ["I"] +preview = true +explicit-preview-rules = true +extend-select = [ + # bugbear, comprehension, docstyle, pycodestyle, pyflakes + "B", "C419", "D", "E", "F", + # refurb, isort, typecheck, useless-if-else + "FURB", "I", "TC", "RUF034", + # flake8-bandit, simplify, pyupgrade, invalid-escape-sequence + "S", "SIM", "S307", "UP", "W605", +] +fixable = [ + # bugbear, pydocstyle, pycodestyle, unused-import + "B", "D", "E", "F401", + # refurb, unsorted-imports, ruff-specific + "FURB", "I001", "RUF", + # simplify, type-checking, pyupgrade, invalid-escape + "SIM", "TC", "UP", "W605", +] +ignore = [ + "D10", "D200", "D202", "D205", + "D212", "D415", "D417", + "E11", "E402", "E501", "E701", + "E731", "E741", + "SIM105", "SIM401", "SIM118", # flake8-simplify + "S311", "S701", "S101" # bandits, assert-used +] + +[tool.ruff.lint.extend-per-file-ignores] +"__init__.py" = [ + "F401", # unused-import + "F402", # import-shadowed-by-loop-var + "F403", # undefined-local-with-import-star + "F405", # undefined-local-with-import-star-usage +] [tool.ruff.lint.isort] -lines-after-imports = 2 +combine-as-imports = true known-first-party = ["lm_eval"] +lines-after-imports = 2 -[tool.ruff.lint.extend-per-file-ignores] -"__init__.py" = ["F401", "F402", "F403"] -"utils.py" = ["F401"] +[tool.ruff.lint.pydocstyle] +convention = "google" +ignore-var-parameters = true + +[tool.pytest] +testpaths = ["tests"] diff --git a/requirements/redhat-minimal.repo b/requirements/redhat-minimal.repo new file mode 100644 index 00000000000..9306afaf85d --- /dev/null +++ b/requirements/redhat-minimal.repo @@ -0,0 +1,43 @@ +[rhel-9-for-$basearch-baseos-rpms] +name=Red Hat Enterprise Linux 9 for $basearch - BaseOS (RPMs) +baseurl=https://cdn.redhat.com/content/dist/rhel9/9/$basearch/baseos/os +enabled=1 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release +sslverify=1 +sslcacert=/etc/rhsm/ca/redhat-uep.pem +sslclientkey=/etc/pki/entitlement/341307322155648560-key.pem +sslclientcert=/etc/pki/entitlement/341307322155648560.pem + +[rhel-9-for-$basearch-appstream-rpms] +name=Red Hat Enterprise Linux 9 for $basearch - AppStream (RPMs) +baseurl=https://cdn.redhat.com/content/dist/rhel9/9/$basearch/appstream/os +enabled=1 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release +sslverify=1 +sslcacert=/etc/rhsm/ca/redhat-uep.pem +sslclientkey=/etc/pki/entitlement/341307322155648560-key.pem +sslclientcert=/etc/pki/entitlement/341307322155648560.pem + +[rhel-9-for-$basearch-baseos-source-rpms] +name=Red Hat Enterprise Linux 9 for $basearch - BaseOS (Source RPMs) +baseurl=https://cdn.redhat.com/content/dist/rhel9/9/$basearch/baseos/source/SRPMS +enabled=1 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release +sslverify=1 +sslcacert=/etc/rhsm/ca/redhat-uep.pem +sslclientkey=/etc/pki/entitlement/341307322155648560-key.pem +sslclientcert=/etc/pki/entitlement/341307322155648560.pem + +[rhel-9-for-$basearch-appstream-source-rpms] +name=Red Hat Enterprise Linux 9 for $basearch - AppStream (Source RPMs) +baseurl=https://cdn.redhat.com/content/dist/rhel9/9/$basearch/appstream/source/SRPMS +enabled=1 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release +sslverify=1 +sslcacert=/etc/rhsm/ca/redhat-uep.pem +sslclientkey=/etc/pki/entitlement/341307322155648560-key.pem +sslclientcert=/etc/pki/entitlement/341307322155648560.pem diff --git a/requirements/requirements-build.in b/requirements/requirements-build.in new file mode 100644 index 00000000000..830da8524ab --- /dev/null +++ b/requirements/requirements-build.in @@ -0,0 +1,2 @@ +setuptools==80.10.2 +wheel==0.45.1 diff --git a/requirements/requirements-build.txt b/requirements/requirements-build.txt new file mode 100644 index 00000000000..f9c1674035e --- /dev/null +++ b/requirements/requirements-build.txt @@ -0,0 +1,12 @@ +# This file was autogenerated by uv via the following command: +# uv pip compile requirements/requirements-build.in --python-platform linux --python-version 3.12 --index-url https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ --index-strategy first-index --emit-index-url --emit-index-annotation --prerelease=if-necessary --no-strip-markers --generate-hashes -o requirements/requirements-build.txt +--index-url https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ + +setuptools==80.10.2 \ + --hash=sha256:38fd6a399113360efcbade5b776c53a83dcd122927484bc699d8baf30e2918eb + # via -r requirements/requirements-build.in + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +wheel==0.45.1 \ + --hash=sha256:8d64e749fb01c99539255aed1b9b6b672db3e3719a17b1b5e1f5d89b02c64214 + # via -r requirements/requirements-build.in + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ diff --git a/requirements/requirements-cpu.txt b/requirements/requirements-cpu.txt new file mode 100644 index 00000000000..35546a380ce --- /dev/null +++ b/requirements/requirements-cpu.txt @@ -0,0 +1,637 @@ +# This file was autogenerated by uv via the following command: +# uv pip compile pyproject.toml --extra api --extra hf --extra ibm_watsonx_ai --extra ifeval --extra math --python-platform linux --python-version 3.12 --index-url https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ --index-strategy first-index --emit-index-url --emit-index-annotation --prerelease=if-necessary --no-strip-markers --no-emit-package lm_eval --generate-hashes -o requirements/requirements-cpu.txt +--index-url https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ + +absl-py==2.4.0 \ + --hash=sha256:89270ac19d667cec91fcf7793982b1afd9beb5d05714f2c57509ec78d7cdd225 + # via rouge-score + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +accelerate==1.14.0 \ + --hash=sha256:d39aacabf33ce9a0f9313e5d085752b1232db66a7dcdbd5a8cc0a64a86e8cd9d + # via + # lm-eval (pyproject.toml) + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +aiohappyeyeballs==2.6.2 \ + --hash=sha256:36508a3b205c38102478f8ce09e69a1bb03b59d649632e009f9cc640da6df599 + # via aiohttp + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +aiohttp==3.14.0 \ + --hash=sha256:0ac7fb5dcd82331c7c1fe72dc69d91f0783b8c195e4d3b7bb16a686a8e972039 \ + --hash=sha256:5f27f24849977642a34a5e75937632917e546778dcbb9aa4ad49d571eb506f21 \ + --hash=sha256:b56172f629bbe13bee3b8993e47d321cf077c2aca4a9c1265ad5e6ef2a0f1aac \ + --hash=sha256:d7a0b5f1b9cd7592cf7077fc6f831f64c7f4a08a078ba604b6b1eedb56cf00ff + # via + # lm-eval (pyproject.toml) + # fsspec + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +aiosignal==1.4.0 \ + --hash=sha256:f67c1242810c1da35afc04f8fe6057d1f133fa581d32ecc4c841d08134436218 + # via aiohttp + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +annotated-doc==0.0.4 \ + --hash=sha256:1ecb2803f2d35e57ba03d74245d9ece70ffce1552a51d1ab1d2b439d791e5086 + # via typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +antlr4-python3-runtime==4.11.0 \ + --hash=sha256:2fc575b81b736486427a07a4e74fdd40f15e9fc03326a4c5091fb4dfdaf4a257 + # via + # lm-eval (pyproject.toml) + # latex2sympy2-extended + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +anyio==4.13.0 \ + --hash=sha256:9759534bb36a5a46684b0b924114f75ef32c7e0cd8d4088faf46e5f75f580b4a + # via httpx + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +attrs==26.1.0 \ + --hash=sha256:72a7cd6c5cd0ba459eec87d0cff40ba06839196b8355a01450ea1db9f6ab6a3d + # via + # aiohttp + # jsonlines + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +cachetools==7.1.4 \ + --hash=sha256:2c532448490746cb5330504ca9b4e301367de61e7352e630c8d0ccffba800f3a + # via ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +certifi==2026.5.20 \ + --hash=sha256:05c8400840d93782ba65327c7d0e74d952899224101ed9674ad094f508853834 + # via + # httpcore + # httpx + # ibm-watsonx-ai + # requests + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +chardet==6.0.0.post1 \ + --hash=sha256:f8987215aa8b167eaa02fff42943c9b86128c461b5c419c6dbbdada867fe007f + # via mbstrdecoder + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +charset-normalizer==3.4.7 \ + --hash=sha256:29d94e888271160a8b8c2a465d62777b7f0c2a5c056a57b1c47dc60765eea275 + # via requests + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +click==8.4.1 \ + --hash=sha256:b6631fcc106907263ae7f6376f80d967fd75c1902c3d2bb2ca1cead22e589b39 + # via + # huggingface-hub + # nltk + # typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +colorama==0.4.6 \ + --hash=sha256:6ed541f077995070cebe515f805f043a0282651a5f0d77f16ccdd0e1edc43d17 + # via sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +dataproperty==1.1.1 \ + --hash=sha256:c816dcf44e7f11cfc28596737c969d9ffa352a8dccd11c2fa4bf6c7836792c3d + # via + # pytablewriter + # tabledata + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +datasets==4.8.5 \ + --hash=sha256:88b6073955f252a31b85cb20ad5115e9e2c342b364beaec56485ddd90f21e553 + # via + # lm-eval (pyproject.toml) + # evaluate + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +dill==0.4.1 \ + --hash=sha256:8aa45e639751fc9610ff6aa53229cd95c66142cb2372fa4b530985c0d6a445ce + # via + # lm-eval (pyproject.toml) + # datasets + # evaluate + # multiprocess + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +evaluate==0.4.6 \ + --hash=sha256:f098c7a20a500e0b8e7ad56b4f922106580db04e9103df80eff5cc0e08dc5882 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +filelock==3.29.1 \ + --hash=sha256:ade1272bd6c3f32419c3463a05e3dc1963901dbc13880e591f246e52b0873a21 + # via + # datasets + # huggingface-hub + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +frozenlist==1.8.0 \ + --hash=sha256:053403b043ebba4431ecd530760be926f862f441280a20703e157b33a5b69e2f \ + --hash=sha256:0e702e35f72baf35d3c6d8b34e664a4b90bb7bd2090e585c4419bd77a9e0eb37 \ + --hash=sha256:824190e162bc775e7f6ded9bde5897738987c51548677c213d1ff728b10efe5b \ + --hash=sha256:866c929c5c39e63efa1d48fffa6f38add29f7e97eca458963e1d078ab1d52a25 + # via + # aiohttp + # aiosignal + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +fsspec==2026.2.0 \ + --hash=sha256:49b6a55beff15391f0263932bb504812a5153780a4560c702de3662fd6a648b5 + # via + # datasets + # evaluate + # huggingface-hub + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +h11==0.16.0 \ + --hash=sha256:cdf040cf1a6fd5711975544a7931d24e41901fe6dceed7f7effda231389afff3 + # via httpcore + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +hf-xet==1.5.1 ; platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64' \ + --hash=sha256:1c81a2bf52de7fce806473afeae8822ebabbb806cc45d6e7df906a8ebf25fcbc \ + --hash=sha256:236938f6e7b607bba83e3c69f706a88c04ac98ae40185b7993d2252c27c31512 \ + --hash=sha256:5072f2dcc3fb7d66700b2b14af25f534623b2b71166f4a6566dac091da387936 \ + --hash=sha256:e0b14eda87d8109be4ca52aa5daef4897ed046ff2e558f363be65008c048149e + # via huggingface-hub + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +httpcore==1.0.9 \ + --hash=sha256:fc0ea63671089523efc6fe94ec49d0b10c9660460cbca6172fc972c1c5f9c0ac + # via httpx + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +httpx==0.28.1 \ + --hash=sha256:40b3fef8650d88ced417b05b236427596a6da9117b0f64ef5b0a5d548d20addb + # via + # datasets + # huggingface-hub + # ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +huggingface-hub==1.20.1 \ + --hash=sha256:9e6dc3eb4f6871be13c5f2a0d36d315b3120ea1ac75e88b00773154cba7dc6bc + # via + # accelerate + # datasets + # evaluate + # peft + # tokenizers + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +ibm-cos-sdk==2.14.3 \ + --hash=sha256:317309c1bd2c1f7f68fdad5fb28d1436f37c2befc139b626cf9f862f14a09767 + # via ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +ibm-cos-sdk-core==2.14.3 \ + --hash=sha256:cb4ffda06b41e18b8b09fb01c599fb60d3a68fb1646b3ef61a2b531a45a09180 + # via + # ibm-cos-sdk + # ibm-cos-sdk-s3transfer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +ibm-cos-sdk-s3transfer==2.14.3 \ + --hash=sha256:f088cf1853b8dd55dc25063ee1e1fe90b19bac107da7e8fe53d8451f26e69dea + # via ibm-cos-sdk + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +ibm-watsonx-ai==1.5.13 \ + --hash=sha256:e4d98c20c719d1e7a2234f74aa7b6e2f4fe6d6a6a29bc590e289812cc5ba9f4d + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +idna==3.18 \ + --hash=sha256:8a16d5d6db808e4640e6bad7349f52e09b10eba58914fb7d366902ec4fc226a8 + # via + # anyio + # httpx + # requests + # yarl + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +immutabledict==4.3.1 \ + --hash=sha256:1b92f98ce9b4754e881a5b6c55f686af280faff55739b6c260e771c694a24fc6 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +jinja2==3.1.6 \ + --hash=sha256:500424e00f5a3b423f8657c8bb0bd846da38af583d9535629f9f93045865bd11 + # via + # lm-eval (pyproject.toml) + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +jmespath==1.0.1 \ + --hash=sha256:61d251e15b7d408031d4e8be38a90d9b362bfefc8df761e45f0f0e1bcec6845c + # via + # ibm-cos-sdk + # ibm-cos-sdk-core + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +joblib==1.5.3 \ + --hash=sha256:5abb2344270cfda261f96ba20f11fb77c3fb1a36769063440ee2ae421b0cb524 + # via + # nltk + # scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +jsonlines==4.0.0 \ + --hash=sha256:4051e271057c3acac8c0754dbb85de18a28f11fe488cf1a947d0b04740d328ab + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +langdetect==1.0.9 \ + --hash=sha256:2d25e4a5b5d75d081415198fc424545f055a0dada61847d31bd3c3ebc74aa73c + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +latex2sympy2-extended==1.11.0 \ + --hash=sha256:a00900ea1ccfbcbafb9244c9b45593bae32e9800198635e3de3b1a46d77f83c0 + # via math-verify + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +lomond==0.3.3 \ + --hash=sha256:23a57f452ab67da1f601b944bf30b47c2f5b7f981db0ca0bf2bb25f6a232b134 + # via ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +lxml==6.1.1 \ + --hash=sha256:1e46e1fe457dbc0229bd2064b66a5ec7e232cd86541e718d000feb1700448777 \ + --hash=sha256:697bb653b29eaac98629671c79027a8cf4ecc73beca3e25e82120db6cb87501f \ + --hash=sha256:b1749295320490b363d6bec5c173f15d2e1a0b7438ae8ac62ac2d39eef697b5b \ + --hash=sha256:b535ef46679e523b1fbf95904be2f042671f92559ca05f64737d7f8e191ca017 + # via sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +markdown-it-py==4.2.0 \ + --hash=sha256:aec8d53b1472c56d47ce05b7da68fd354ffb406b38d4245567d368f130a9e628 + # via rich + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +markupsafe==3.0.3 \ + --hash=sha256:69df84105cae0b20755395a4ef80a8a97a9993be2a6efe47bc91aef05e26fc51 \ + --hash=sha256:df08b744fa599c9bd3bccd7d0b72a9f12c4bfb0a31a5ce3113f4b16289429e6f \ + --hash=sha256:e0404961f3e45375f32cb6a8fec8821f4dbfabb62d6880ac0e7d316ba05bfafd \ + --hash=sha256:e6c6055c4623ff263b359600373e42d2027521c5f7f453b535a5a05ea37b8537 + # via jinja2 + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +math-verify==0.9.0 \ + --hash=sha256:f3d1950f2df9e37b3502ee0fefb74788239bd50010a939062dc33cfc215f7a5e + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +mbstrdecoder==1.1.5 \ + --hash=sha256:49d5aca233ef72fda9914754167744f708d11c570a65d58bd4234b59117b8579 + # via + # dataproperty + # pytablewriter + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +mdurl==0.1.2 \ + --hash=sha256:3b685cb48a3cde202b232cb167ea1d9c287724d240966f2f16d2f10732b78636 + # via markdown-it-py + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +more-itertools==11.1.0 \ + --hash=sha256:c77430ea1c1d303f2fd19520f7065710bc918d3a53f80e36a2c5c8a86e5570b3 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +mpmath==1.3.0 \ + --hash=sha256:3912d9c5c6877b3a3198b133dfe5b8a7c64c87566f7b16f460c12dc30fa77405 + # via sympy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +multidict==6.7.1 \ + --hash=sha256:14a85a18a8d32c109c4886b8bfae4a66b55d275a86a19dd8a0b611887bde6c85 \ + --hash=sha256:4213730650f4d37161dfda5ec18ad17c62c7f2d9d36a3a2599afe58bd8a13af1 \ + --hash=sha256:b863786cc047cc648abc38b892a5575a0abcb5e1b9b348cd89f122ac4d7b304f \ + --hash=sha256:e145db09d0ab2761780a43d8380a7d8f6faffac11966d8148375ab7175a0f249 + # via + # aiohttp + # yarl + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +multiprocess==0.70.16 \ + --hash=sha256:3bb6aec8fcea1821c05940ffc55c2d11aae22cd7c5a898284aed38f814b77ef8 + # via + # datasets + # evaluate + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +narwhals==2.22.0 \ + --hash=sha256:2ad70b075945ecae416f2fc92fc52264a2a6c1f581258a309c7c60657329cde6 + # via scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +networkx==3.6.1 \ + --hash=sha256:56b687ad58bed743066f1b7d5e6f56a72d2f193c8eaf35064abaedda4fba3745 + # via torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +nltk==3.9.4 \ + --hash=sha256:99935c670d486819ac6b9c78b2b36b811bdb8e0720414ee3f3663d8ff521bd62 + # via + # lm-eval (pyproject.toml) + # rouge-score + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +numpy==2.4.6 \ + --hash=sha256:2bb01ebf532203603f12867279b04c066d4359c2d3db6a81f8c1c1efa8b8c1e2 \ + --hash=sha256:39e386a5c013a26e27ff4da521859d261cd56be84c76df89d7f01085c1b2fa6e \ + --hash=sha256:9b90239c970b22c4ee5afb7fd16d972aa7b4f31869b9ee6be8caca6dedd7a57c \ + --hash=sha256:f07cd840335cc21424fdb1c31a6c1ff7acc27ea0d831c8b8ed30d83d952e9d89 + # via + # lm-eval (pyproject.toml) + # accelerate + # datasets + # evaluate + # pandas + # peft + # rouge-score + # sacrebleu + # scikit-learn + # scipy + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +packaging==26.2 \ + --hash=sha256:7c418e01ce14b2bfd2cbf95e6d0a2b1278b711cd84527100f02b0966f08cc4a5 + # via + # accelerate + # datasets + # evaluate + # huggingface-hub + # ibm-watsonx-ai + # peft + # transformers + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pandas==2.3.3 \ + --hash=sha256:0f8eb3443bc174c59021515e04bc5980607bedff085892591b8acd38593d62c6 \ + --hash=sha256:130665e4f3ee91d60caa5563524728553bd8f930269c8bb95e9517fe0160b448 \ + --hash=sha256:18c0f606500ae8eb6010159ddfbf67382b5ee0d1fd96aeec9d7d658dd9925c25 \ + --hash=sha256:246256fbe7bc48bc6087274eca3ef50462db380e41fd2629c08864ecc6f71814 \ + --hash=sha256:65224b68b10055b6f0032c9638c724b20a6288d7a091a957713ff2f8a37d6999 \ + --hash=sha256:ac10e08a9c05e7cea994402668c64b859de6929d0841f75a56a052a4254fb7eb \ + --hash=sha256:f792f3775b1c6bc55936654cd923cf1f5ad8b5b12da44daa152da0b8d1589739 \ + --hash=sha256:fc5d82648fb49837094317ca5c20ce3ad3abe4b2eecd0c3977ee8879b55b9fa3 + # via + # datasets + # evaluate + # ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pathvalidate==3.3.1 \ + --hash=sha256:d37761dfd8c3ae688c403f5c0e7419de29ad7b59c977085493aecd3a3f7a7d2c + # via pytablewriter + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +peft==0.19.1 \ + --hash=sha256:f535ba967638601280a0d00480242ff013e14b5f9d8596a2c3ffa353ae5f159d + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +portalocker==3.2.0 \ + --hash=sha256:45d3f49b3fa2769b5ef4f437a6972c1b4f9540c4cfab1ced1344396ef2e5f78d + # via sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +propcache==0.4.1 \ + --hash=sha256:592720ed230b7c5fd2137d6dfcd483e856c5ffba4f2ec65f119df696190e70c3 \ + --hash=sha256:74d3401abe4e59fb9de6a2b1951f0a6e73321da05096a1e578a6e2311ab26204 \ + --hash=sha256:846626915d5125527d1aec396e74c3ff2644179752698453a63ee7b651f20b7b \ + --hash=sha256:d2dc9b0baa6aedb2b462dbea35040695b466101c073c125616dc19c6199d4bbb + # via + # aiohttp + # yarl + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +psutil==7.2.2 \ + --hash=sha256:447fc9764101c7dc16308a2f1c5cee5fb504d583f879e57a0b65fb6533285f95 \ + --hash=sha256:b9bae30c9445a30ba7201802dd1de81b93e3ad13db46efdfc73482bf181ef00c \ + --hash=sha256:d0fd695ea9826323fd73da686a154e27a98494b848ee079eacee842ea7897d23 \ + --hash=sha256:f8aebc9b1f47dd55c4760b9353159595703fef5a9b9ebe9aa8b23bc222054f7c + # via + # accelerate + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pyarrow==24.0.0 \ + --hash=sha256:07d3f97e89210d07ce4b53e5b548a503b6c3293aeb7e02c41a10676e35936b2c \ + --hash=sha256:51fc2b166a11ef5a22816575efa5ec2b769be39a6c1133422d0fc6059a9c4033 \ + --hash=sha256:5da8d05a60b5cf855f9f3432bf8c09cb0e210b709882d96f3e51954a441957e7 \ + --hash=sha256:ae9bfe09f2cbf2e9a95b5467cef0c78ff985e77b66723a2eabd4cdf22bb20dab + # via datasets + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pygments==2.20.0 \ + --hash=sha256:14c06510dc5a2dbf9d83a85463d229907d0456e167a3752d361e6cd1cbfd1152 + # via rich + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pytablewriter==1.2.1 \ + --hash=sha256:1ea2e14f61d5f6758c3b715c170da7ca8c7c09ec6c85781fc248643435a1a5fa + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +python-dateutil==2.9.0.post0 \ + --hash=sha256:48d0381d3876a6f959d2731ffddb508ea44e2f55212e48c3eea2c9b187c15712 + # via + # ibm-cos-sdk-core + # pandas + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +python-dotenv==1.2.2 \ + --hash=sha256:b380203de11ab7a5b422fa6f9f377fe1ae1e1daa8559474a0518b6ca10f7aec5 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pytz==2026.2 \ + --hash=sha256:23d753f564045149edade757f9302e7a88d7d99012e9b7b1c52ef603ee68beae + # via + # pandas + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +pyyaml==6.0.3 \ + --hash=sha256:2bd6846091e45ed85468748b300a374d5b3724bf49b59a2773d15b72fd25cf09 \ + --hash=sha256:2e1123ff9917c251043614409b1660a891837de28b9d2c1210dbca78c52822e5 \ + --hash=sha256:726ba29089425e37e0a54208804a621cbeed0cba6c1156d817226bc6cdc26d4a \ + --hash=sha256:d76fd28238122285a5a5790b3fba7ccfce6006e19eb2c8fbd6700d723c3f674b + # via + # accelerate + # datasets + # huggingface-hub + # peft + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +regex==2026.5.9 \ + --hash=sha256:10dffee7540d4ef59ede26661bd50ac117422abbe628f15f806be02f50ff7fe1 \ + --hash=sha256:807a2846f13470bf98da27991b7cfa0c69e7dd841e18741b74070f0abadbf755 \ + --hash=sha256:e365aeca234d8c18ec2dd47ea3166766d815ec44f82fecfdc5a446961af0a3b4 \ + --hash=sha256:e7506a9c89923515e7d170bc2af6a0aa1baa9fe45f5047ae9a33c4dab2079d1f + # via + # nltk + # sacrebleu + # tiktoken + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +requests==2.34.2 \ + --hash=sha256:ea6708de2da329a533299949db29fca0e3f7e3135068ad5171a28d07a9687631 + # via + # lm-eval (pyproject.toml) + # datasets + # evaluate + # ibm-cos-sdk-core + # ibm-watsonx-ai + # tiktoken + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +rich==15.0.0 \ + --hash=sha256:b78831156a60d0f5cb5d008f7f9285c48ffdbe315164c9cd396ca3b65fe8130a + # via typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +rouge-score==0.1.2 \ + --hash=sha256:0e17c0e87e7d7b35680ecd8478cea312463d07abe079f05b28c964ddf2991159 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +sacrebleu==2.6.0 \ + --hash=sha256:aea4a62af469617803bbe904c2fa33038fa83a36d71129ef327ccb73b515924f + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +safetensors==0.8.0 \ + --hash=sha256:23e3a3c88c19ad1a2d282a4eb04a84433aa406daeaa4e1d8f49b0123cafc9e62 \ + --hash=sha256:800d4a5cf3320f0c0b49dfb7b4ec6cfe9a5e735b33b8254a74d5a2e452dc4408 \ + --hash=sha256:ae8e482791a7348f972072ac995368904d8fe58ee62c7e410ec2b6b03cc76cab \ + --hash=sha256:b903354cbf8d3db3818b1942f9d39b0e713b5a93bd3790502412d2b01ebc217e + # via + # accelerate + # peft + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +scikit-learn==1.9.0 \ + --hash=sha256:509b8c36718bb996ee7c5ea3f11a4967847d6794f23df6e736472c527169323e \ + --hash=sha256:6326a29ac3eeceb5724306cad2cfd41afac07af8ca83a8ac2a07e4063f3c71e2 \ + --hash=sha256:981a4a562bbcc91202e6c2001b059994433cc25ee0afad91f24abcc24bed4516 \ + --hash=sha256:d5a5dbfa05f48494957544feb98cb091171c403a6a862e4bcee67f128750d4f1 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +scipy==1.17.1 \ + --hash=sha256:5b5fcb9a053e7c5352a1d8358f082edea9dc6358f435888c8b6a4e3980a25cd7 \ + --hash=sha256:96da98227f47d4950936822e54eef2142055efdbc61fd316cfd4fcfb8e34c0f2 \ + --hash=sha256:b02d5ee34f85657e4131aaf4a68e7119a73965528763b677fdd9102ab1f1016f \ + --hash=sha256:bc09f41aaf469fa1e5af67f47b8c1476745ca0596cb95e08165182973583a02e + # via scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +setuptools==80.10.2 \ + --hash=sha256:38fd6a399113360efcbade5b776c53a83dcd122927484bc699d8baf30e2918eb + # via + # pytablewriter + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +shellingham==1.5.4 \ + --hash=sha256:c62d421a942ec6b2400acb0091f31f7bd860d133dfcc8e7c5a252afedba20f8f + # via typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +six==1.17.0 \ + --hash=sha256:6388b9db719664e1ccea84c166718ff3d2bbf56490cbf14fb7478b3b782eb0e5 + # via + # langdetect + # lomond + # python-dateutil + # rouge-score + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +sqlitedict==2.1.0 \ + --hash=sha256:ae43d9f42fe5f29c205e2fbe690b709013684d03535cb8235d2625d4b02a6431 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +sympy==1.14.0 \ + --hash=sha256:6cf6a1e379dbba75ca560e2cbd4394144f9e7e7335ee1be872c224f004eeb172 + # via + # lm-eval (pyproject.toml) + # latex2sympy2-extended + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tabledata==1.3.5 \ + --hash=sha256:680658494fe69e2a7f60eefa0a2714809cb5027fd503579fe42e7aae85850d58 + # via pytablewriter + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tabulate==0.10.0 \ + --hash=sha256:ab130f2db33194496db41f780bb6723620399a36b30dde286264d80b5505a60f + # via + # ibm-watsonx-ai + # sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tcolorpy==0.1.7 \ + --hash=sha256:6fa5393a9fb1ceab4d52db8f18c1750e044765baecd6ccac377e975b5dd4c1b9 + # via pytablewriter + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tenacity==9.1.4 \ + --hash=sha256:eb86e53b6b467dfbbedc4b64399eb73def7f0ca9b7feaf28bb1785169c644971 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +threadpoolctl==3.6.0 \ + --hash=sha256:583c55d12dfac4ba91b2d41e1a334cba51d2c5fbab1e4cd4b918cf88dbff6184 + # via scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tiktoken==0.13.0 \ + --hash=sha256:0dadabde894995d110828e7c10bcd3d1c366f5957d8aff7a21c332ebcf787bcb \ + --hash=sha256:6b7957ba97d5a211bdca1fb208d0a11e84e7c23f199b3e9d1e5a85ae1e150a46 \ + --hash=sha256:a6c5edba316f3f708fddb42f398f30ac4a0495c7ba625992bded135509eb712f \ + --hash=sha256:bb42f1a91319c8f4b48e745a5f3d3f68ff00b35ee652e77b995398cf1485011e + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tokenizers==0.22.2 \ + --hash=sha256:19a5651dc0f6d0dbcb98030c43d7da01d9e9069159fde96100105b9ae9ee1762 \ + --hash=sha256:4004617b00a81bab27af6ae5380a45e4477e0aa544715ddb6548e0f112c5ca23 \ + --hash=sha256:48eb9560e0e190853b056a9b31055989b36d1ca480f26d67873dd79e9431fbd8 \ + --hash=sha256:dfe8f5ac54094113be1d091cdcfd6f43b8b6b5d91a53e63ecefceb0c7043c8e8 + # via transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +torch==2.11.0 \ + --hash=sha256:295792d7e9bc15de90102b759af7c9f992a79e63237cbc4533a3fc22a35a341b \ + --hash=sha256:4a952ae1aac7c6e29887b95e85bf42a684d26b1cb15454eb0dfb2fdc0661ec03 \ + --hash=sha256:511b340c8a5b380ce2ea5a2b7facb288dd86fe96f7bd8135013b235123dce68f \ + --hash=sha256:6b40f508c63fd697a5db30b500f672546a80b90245734c952b7e299a95fa82f3 \ + --hash=sha256:8868279107548716a4fff5285592010e52a2f863527260e75e8581676b151e3e \ + --hash=sha256:cae92e5cb6b1441eb6e1def8dbaef7f1d719dd551d6e956fdfee0790e0975ffd \ + --hash=sha256:e2fdbbbd77a87f448677fbfc7ea1c94d987e64b0d16e8850d50b682e836b2aeb + # via + # lm-eval (pyproject.toml) + # accelerate + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tqdm==4.67.3 \ + --hash=sha256:9cdaa3ef8944e8a64e15f580ac86aa264affc2da130173fa2f1893468a4befb7 + # via + # lm-eval (pyproject.toml) + # datasets + # evaluate + # huggingface-hub + # nltk + # peft + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +transformers==5.12.1 \ + --hash=sha256:42b75f6a0411b89c701bb9fcc447f39ce0636f063cc31acd0a432fdcd71614c6 + # via + # lm-eval (pyproject.toml) + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +triton==3.6.0 ; platform_machine != 's390x' \ + --hash=sha256:1fd543ee4b888f749e186f87fb4c669894fd2f74849b820ffee3014a54e99d05 \ + --hash=sha256:669850f373cd9bd588b5a4d86c6849f16be98b3e8087130ad945082842ae631b \ + --hash=sha256:a64f6de7b2d45d0426474a980776161e626ccdcbb35e8b540686411fe204e0c9 + # via torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +typepy==1.3.5 \ + --hash=sha256:ef1bc29ee880af196f3be6a33afbcf382147a8e217eea7bf7e38a56407f03152 + # via + # dataproperty + # pytablewriter + # tabledata + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +typer==0.25.1 \ + --hash=sha256:fd5aa39cf1c0e1a8af8ebe0843ae011ae7da0f500fec2e10e4b0ae31facae726 + # via + # huggingface-hub + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +typing-extensions==4.15.0 \ + --hash=sha256:d4c36b823c1249a191f9eb39ce8f15787da425fdf7a0029315c99a9e5338260a + # via + # lm-eval (pyproject.toml) + # aiohttp + # aiosignal + # anyio + # huggingface-hub + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +tzdata==2026.2 \ + --hash=sha256:97cd135246a60d3b1c3b8c77ff13dd509daf21b82b151cf920576378a7d72132 + # via pandas + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +urllib3==2.7.0 \ + --hash=sha256:8c0d942cee38135eb54435268fa34bceed0d0a7dff31d8aaee06c06ef8637942 + # via + # ibm-cos-sdk-core + # ibm-watsonx-ai + # requests + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +word2number==1.1 \ + --hash=sha256:9d9ef8267dc04c414a373492310f326de83ed0add15e3b017c401d8d97dee24f + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +xxhash==3.7.0 \ + --hash=sha256:17797b9deebedb6027115cb349555f3c74be46acaf6b37109f86397c295382ae \ + --hash=sha256:3f4c6b6ec3601c7abbc2c31e240eb5acda2d2591d241f4a9a1fe9ba29e50bb68 \ + --hash=sha256:790cf47b7ed318330d4363a7ce50f0e915b8ef5b8d7c0dd3f167f4ad12e79b9e \ + --hash=sha256:8b856ab5958585b534880ca3c53307db6703ce4f1665f97921d30c3024a31710 + # via + # datasets + # evaluate + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +yarl==1.24.2 \ + --hash=sha256:0c25026803293aa01955606c53270f4306b4196169570198a3a29b3a054f3d86 \ + --hash=sha256:16ecb00a9b23f75686d3cdcd098105dd71f4e4ce21ffe13c181be7af349adc61 \ + --hash=sha256:31f672aadd67c499c13777c60cce25b75f1c1f3c8006fed3b2fdcbb474ae410d \ + --hash=sha256:3af19c86bfd747dd5324eda948c4e93c9fd57a47bf89f0fa9f51a019529b7081 \ + --hash=sha256:b60a3ea96299c776f65c02e3714c4a34a608fdd95831d3861ee3ab0797eff0b0 \ + --hash=sha256:c2cc773c104456911cfd309315909b4c0a90918d4883b2e9f025729a504a3e6e \ + --hash=sha256:c72aabbf544bceb3fa895376a188a90b7152efd47045b589fd358505ad8a85d4 \ + --hash=sha256:fcf4442656e2947f3a7e7d3cc85c8030a92570c133df0c9a3ab576a8be8e55fd + # via aiohttp + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ +zstandard==0.25.0 \ + --hash=sha256:10b7b539e5c935d16b78f26d90203a4e4414631e3b4bd97da4923c75536ba006 \ + --hash=sha256:3f12f3143d2dba84081a79932a30e8179df5c655134d1ae613cc760aab9e4ff2 \ + --hash=sha256:c734ffe543d7aaf7ff9848fb06fcc4c251e2c1670eab845b8983b6ff24f993fd \ + --hash=sha256:fdc7ec1d57af80b7b7d2cadb025366aae714533322e5f908acd8e2da2dc75bb4 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cpu-ubi9/simple/ diff --git a/requirements/requirements-cuda.txt b/requirements/requirements-cuda.txt new file mode 100644 index 00000000000..5e6af3c8683 --- /dev/null +++ b/requirements/requirements-cuda.txt @@ -0,0 +1,587 @@ +# This file was autogenerated by uv via the following command: +# uv pip compile pyproject.toml --extra api --extra hf --extra ibm_watsonx_ai --extra ifeval --extra math --python-platform linux --python-version 3.12 --index-url https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ --index-strategy first-index --emit-index-url --emit-index-annotation --prerelease=if-necessary --no-strip-markers --no-emit-package lm_eval --generate-hashes -o requirements/requirements-cuda.txt +--index-url https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ + +absl-py==2.4.0 \ + --hash=sha256:a300d440d9589e4348428a237afdb7b17bb6361ff611042b8c115e1f648224ea + # via rouge-score + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +accelerate==1.14.0 \ + --hash=sha256:1d96172d5a0639abbcab6af6fb112cd8ac058c11d10383779bfaf6935c3420ca + # via + # lm-eval (pyproject.toml) + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +aiohappyeyeballs==2.6.2 \ + --hash=sha256:99c9ff47fa25fe3cb04c2b7d26897dc5aa2ed6b087781c6b710ff7dc224b6353 + # via aiohttp + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +aiohttp==3.14.0 \ + --hash=sha256:84731fde77407e04b509f44c406621c8370de0ea9f14e88cdb51da1736b341a1 \ + --hash=sha256:c75cc8a8627e3dbfd73282e58ac063666dfb2bff7f4c4bee4fbd4e20dc356c44 + # via + # lm-eval (pyproject.toml) + # fsspec + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +aiosignal==1.4.0 \ + --hash=sha256:84bb411dcc5e2c82cfa762e247abd2e4318c9a0c01b799a606057f4c06784074 + # via aiohttp + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +annotated-doc==0.0.4 \ + --hash=sha256:980f40d7e2bcebda8dd1249560822a9a8f2194c651999c9f6f17c7557df2b7a6 + # via typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +antlr4-python3-runtime==4.11.0 \ + --hash=sha256:d28cac51c41a32ce2dcbde750782b64b1b6b8afe5df60d87c8f52bdcc5151612 + # via + # lm-eval (pyproject.toml) + # latex2sympy2-extended + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +anyio==4.13.0 \ + --hash=sha256:97201aeef619c79cf7dfbd710ee9ccc01ef7eb296dc09ce754480190486330b2 + # via httpx + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +attrs==26.1.0 \ + --hash=sha256:595b8be1b67bbf6bdbfa550ecdb64e043d16a83d558ae1447080b227dd8c9ad8 + # via + # aiohttp + # jsonlines + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +cachetools==7.1.4 \ + --hash=sha256:101df97401809115037d11c7dd9edb113310aa114c1c4bc11b37f849c44565cc + # via ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +certifi==2026.5.20 \ + --hash=sha256:a5969aaa1cdd08482f75f320e9dfb145b1817cdc2b34cdb0d8da5693c2f1206f + # via + # httpcore + # httpx + # ibm-watsonx-ai + # requests + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +chardet==6.0.0.post1 \ + --hash=sha256:eafa58465986cbf93cee1b86ddc0c8512bd7935f60ead244802b3b29c400aace + # via mbstrdecoder + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +charset-normalizer==3.4.7 \ + --hash=sha256:4735a41d36d125f57b44224441f1305449095789db729f230903a4d4d5c75bdd + # via requests + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +click==8.4.1 \ + --hash=sha256:ee02c00cb93ea87dd673f7efd3325b46c85da45fae403247e488d7e94742fc67 + # via + # huggingface-hub + # nltk + # typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +colorama==0.4.6 \ + --hash=sha256:b70f037ae54ce125240a1daa542a45e94e6ae4ae47b08975fd96c3c58575641e + # via sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +dataproperty==1.1.1 \ + --hash=sha256:a1e10c52fa158bb1e941a560a109497a567f882dc72968f2a2e3c8612ab21a88 + # via + # pytablewriter + # tabledata + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +datasets==4.8.5 \ + --hash=sha256:5b13a4e3b4eda25b5e038b230d214aa8e117aea1c88aae272b91cafd90f665ca + # via + # lm-eval (pyproject.toml) + # evaluate + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +dill==0.4.1 \ + --hash=sha256:d7e17d1d1a2a43b9419783eb6e48079b663a3f880d64e4e641a34a7147d34885 + # via + # lm-eval (pyproject.toml) + # datasets + # evaluate + # multiprocess + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +evaluate==0.4.6 \ + --hash=sha256:3a24ab8afe57bf1508c250d23786cedfd643748448b9bd774a770118ed3d80f1 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +filelock==3.29.1 \ + --hash=sha256:55f57453d975b8fdccc6540827526257ab918871084c5032fe84fa9f02d30d90 + # via + # datasets + # huggingface-hub + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +frozenlist==1.8.0 \ + --hash=sha256:114e62a9cd16c9559fbf2aff8ed73348238ddc308dd62b7b2218f69b1c4ae54d \ + --hash=sha256:91b2bb6b74349c7e451a5a2b1e2e7c340ccbc2b0cb3b4dcd1914ce1041e7474d + # via + # aiohttp + # aiosignal + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +fsspec==2026.2.0 \ + --hash=sha256:5560becfc74b072ea75e65c8143a8a5aa7ceeaa383035c235e1eeaa8a486405a + # via + # datasets + # evaluate + # huggingface-hub + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +h11==0.16.0 \ + --hash=sha256:8a756fb516e5dd39e8498f518377bad837a2a8be483f62c18fc326807fdb909e + # via httpcore + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +hf-xet==1.5.1 ; platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64' \ + --hash=sha256:2301e1737636880bd6077591191f98cb3f4fec5d445641e618c76ed9e510c2e5 \ + --hash=sha256:464736437f5532b313e5995e498b495112a696e2a1541122f543848dade830ef + # via huggingface-hub + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +httpcore==1.0.9 \ + --hash=sha256:e6ecc739c5846a3755d17193fcda03fcbcee1581c429f2e2c2e4d2cb45e9f227 + # via httpx + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +httpx==0.28.1 \ + --hash=sha256:bae388abdd89db8c43baa6416df523ce0c2058c72c47825a663b0a0d85981bd8 + # via + # datasets + # huggingface-hub + # ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +huggingface-hub==1.20.1 \ + --hash=sha256:e27bb521e27be6e324d52f4c0657edf46c9857048ff07b562a0af4318cbc3990 + # via + # accelerate + # datasets + # evaluate + # peft + # tokenizers + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +ibm-cos-sdk==2.14.3 \ + --hash=sha256:212d323beecca0805f2c5006397f6167942e2d90cd79003f5bfa28d78e629e2b + # via ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +ibm-cos-sdk-core==2.14.3 \ + --hash=sha256:f87b5907563c72777bff321f98e86c94d85bf39fb4798bb83ad3a116b595ddb6 + # via + # ibm-cos-sdk + # ibm-cos-sdk-s3transfer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +ibm-cos-sdk-s3transfer==2.14.3 \ + --hash=sha256:a38ea37ea0613176e315f8fbc9bce29decf154db6eca2a1c64a2a6b13dec1648 + # via ibm-cos-sdk + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +ibm-watsonx-ai==1.5.13 \ + --hash=sha256:80c8169708cfefddbfe8c5144d619a951f89c881830703190d2c20b49cbd3097 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +idna==3.18 \ + --hash=sha256:d2ce2900bd60a91ab146261b69a898e4d092f5613d4904a7cba2c52ea86da115 + # via + # anyio + # httpx + # requests + # yarl + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +immutabledict==4.3.1 \ + --hash=sha256:42a637baa1b3fb78dd872881dc07fea3d9e1a89225711e512678701cfe69819d + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +jinja2==3.1.6 \ + --hash=sha256:b0c0c503251a7340341e4c755506fab20f04f44f48790b7c523992497d145724 + # via + # lm-eval (pyproject.toml) + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +jmespath==1.0.1 \ + --hash=sha256:ee8b5063d52fa843d5e572a960b67ef8606131240820bf1a103f9055ab989378 + # via + # ibm-cos-sdk + # ibm-cos-sdk-core + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +joblib==1.5.3 \ + --hash=sha256:d6cff639c02e96fce8c2ec880fe9501c6063d3e1dfc10d58905f8f466a2487ad + # via + # nltk + # scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +jsonlines==4.0.0 \ + --hash=sha256:744308c17aefbac049da0ea4752db67ed5f4dd4e26c542d638c5369dc7c33da1 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +langdetect==1.0.9 \ + --hash=sha256:1a100435a0a28865b313446d3f021bf5f307f7f7c45a347fb9336312cade5aa1 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +latex2sympy2-extended==1.11.0 \ + --hash=sha256:14690658e434115a14241bfd7c38ef1902ac3def25dde82510af23c98d97ddbf + # via math-verify + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +lomond==0.3.3 \ + --hash=sha256:6e3a310980ac6ae77d5d786edcca52489c2aa4cf5471cba34e49650739318179 + # via ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +lxml==6.1.1 \ + --hash=sha256:8399992e04e65648edc1fe38c0a7ce64b02bb8637a7afa558cb3daae2ebea4aa \ + --hash=sha256:d88546be1a90344c207747b6c5bd29ea20e5767c0e9a230169620458e651e9cf + # via sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +markdown-it-py==4.2.0 \ + --hash=sha256:5193f9c631a23479abcfb99058c6399aaa5ee28babead110db18861a91326874 + # via rich + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +markupsafe==3.0.3 \ + --hash=sha256:0d4d67c995864eea31ebec798c1844c1fcc34022a15bcbca8342c26764ee59b5 \ + --hash=sha256:11bb46757c989c4387e62dedf776821ab4c095ee7bda455e8282c365f3fcf5f1 + # via jinja2 + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +math-verify==0.9.0 \ + --hash=sha256:8b39498104460bd8b35f666e7f64c988b427e29ee720fc2394f7ac92f3e55005 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +mbstrdecoder==1.1.5 \ + --hash=sha256:223f5fb0386da7a019313fa05abf2db62d7a0f3e0bd10cd4f817b5d8d221a1d5 + # via + # dataproperty + # pytablewriter + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +mdurl==0.1.2 \ + --hash=sha256:bcbf69305355e7208777ee2691d367420098e8c93cde4f65bf471901ba7313fb + # via markdown-it-py + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +more-itertools==11.1.0 \ + --hash=sha256:8cb28b8d06f10c842f32f0718e25f5de4ac08b3b216dbd5d07ab3c615db11e47 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +mpmath==1.3.0 \ + --hash=sha256:8b3a20bc7134913a04608062a3333884519582acfd881b463c17c54bec2c6b50 + # via sympy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +multidict==6.7.1 \ + --hash=sha256:1a3cb8d944b54c229ba1a3415b5b9886df44d6402eaeed89832f8aa5c23f9555 \ + --hash=sha256:99ce1d337aac5d9a817a3a62d108929549baf6ede383f0f1cac1bd2a2606e93c + # via + # aiohttp + # yarl + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +multiprocess==0.70.16 \ + --hash=sha256:bfa06ee1af20ea64a172bdaf198f7e01895a6936cb9164991fa773ea91f5964b + # via + # datasets + # evaluate + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +narwhals==2.22.0 \ + --hash=sha256:317baf0bad1a660a4a803ab8093c7174b9a3f2795b7cc46ee500442764bc9c4b + # via scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +networkx==3.6.1 \ + --hash=sha256:4cbabb9afc14e43cca6e96ed2c88e5278fc5f483378e5b0b630aa30d0504088c + # via torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +nltk==3.9.4 \ + --hash=sha256:5e6f6659e2a73f29c8981c25495a04464687ad67365580fd01fd3c37fc42ddfb + # via + # lm-eval (pyproject.toml) + # rouge-score + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +numpy==2.4.6 \ + --hash=sha256:77ef7c29a4c3cbc883a7450e1c41116b42bbf6543f5585dfd125a7219e3662cd \ + --hash=sha256:f34589ad367c86b00219806735031f02dec5f62d00d1ad1125b61654044b7dd0 + # via + # lm-eval (pyproject.toml) + # accelerate + # datasets + # evaluate + # pandas + # peft + # rouge-score + # sacrebleu + # scikit-learn + # scipy + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +packaging==26.2 \ + --hash=sha256:1226ab3bc0ead32b893558bdeaa3c67129577e3c1005d310364c880b1bda8308 + # via + # accelerate + # datasets + # evaluate + # huggingface-hub + # ibm-watsonx-ai + # peft + # transformers + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pandas==2.3.3 \ + --hash=sha256:066f811cfa07d227f0f077bbc553afd9967ca20b78845b4636e807d22d8df8b9 \ + --hash=sha256:8e50fb020191deb5f2d233f5d5a9ff53a8f78f028f3141aca335bfde69da3281 \ + --hash=sha256:9c61e7af2d730bce16463e6f4542631cc7c830ce89138d21d1c919f482ca4d4b \ + --hash=sha256:c47a99a381744053f4227605ce7e16fabfe9cb06418758ad1b2b266a3c97579b + # via + # datasets + # evaluate + # ibm-watsonx-ai + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pathvalidate==3.3.1 \ + --hash=sha256:171591732c592bec21e9b29aa77b2b8783ca3f9931114c0ba97a14adc228f595 + # via pytablewriter + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +peft==0.19.1 \ + --hash=sha256:a23adb8632a6608740f82d125616f76faeb5bb614034cbcb81ef37adb70b45b3 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +portalocker==3.2.0 \ + --hash=sha256:941445898c837202f1e035fb4c46ea46f06fafb9aff16030c8298f67fb4cdc77 + # via sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +propcache==0.4.1 \ + --hash=sha256:91d1e5fa2c350bfaf7b2be21f638ffb7ad4e5f667bfc9df277e61010163144a1 \ + --hash=sha256:d1607580672d8236840c16c0a4cf6d534420a57956336d38dcaf2f387709d752 + # via + # aiohttp + # yarl + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +psutil==7.2.2 \ + --hash=sha256:1abcb78f99c3bb961e5cd8a2a4f8707c69bf92a23ff572dfba8c872109177304 \ + --hash=sha256:ac63699694a892f075e03273b407d3f9a0c0f9a147915402793f2b1359ded3c8 + # via + # accelerate + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pyarrow==24.0.0 \ + --hash=sha256:ace500c6ff168a38d1787ce399293440210618a679eea8e7bc6d388dbf1ef14a \ + --hash=sha256:f9b3d45f1745fcbbb2dc9e018a68f39f4c07e4c14e3e1ab66f055b251cf09ba0 + # via datasets + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pygments==2.20.0 \ + --hash=sha256:f7f88abd20d062c1a003652fa9c02847037f111479ee3f8b75e05ce70bdd0751 + # via rich + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pytablewriter==1.2.1 \ + --hash=sha256:559f650b8f6f0d8e099903385dc301566f1d3e79738153b9f09d601a410dfa8a + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +python-dateutil==2.9.0.post0 \ + --hash=sha256:d09f6729ebcf9514a7865c483b73f5336d3dc089cbdef4e930dcbe2f8f30a734 + # via + # ibm-cos-sdk-core + # pandas + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +python-dotenv==1.2.2 \ + --hash=sha256:9da90524f219d7eb5bd8adffa629ea4fbab82cee375a45a50850c34890166f87 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pytz==2026.2 \ + --hash=sha256:e98864ddb4271ea540c56c142a9383269f6980763c4a1adbd21b5d301025001c + # via + # pandas + # typepy + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +pyyaml==6.0.3 \ + --hash=sha256:2f1c0ba8fca8c1c085baae11dd40c410dc92d2374c997700874a452175cbccae \ + --hash=sha256:d05f817219d72ab71d2ae91d8d8351a0b3a2c59ecc630f131486d677ac3d79c7 + # via + # accelerate + # datasets + # huggingface-hub + # peft + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +regex==2026.5.9 \ + --hash=sha256:2e1663b7ca1fc37fa2b29f4d7c8e2ce7aadb4fad5f1a5774fef1f2365d9dc695 \ + --hash=sha256:fe6fb7384dfe6a3dd3915f0fdf05fc2944ae3ff0d99c2cd339ec838960f22e7d + # via + # nltk + # sacrebleu + # tiktoken + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +requests==2.34.2 \ + --hash=sha256:e177b8b22eef383d83180c39b0f9c512f22ec2210e68360c30217c9b18434fda + # via + # lm-eval (pyproject.toml) + # datasets + # evaluate + # ibm-cos-sdk-core + # ibm-watsonx-ai + # tiktoken + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +rich==15.0.0 \ + --hash=sha256:a935addfe7dd8455ff74bebe47570cca668dbe85b2e8f7a0429beb2bba039caf + # via typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +rouge-score==0.1.2 \ + --hash=sha256:a83eb99d701df327fd024dba0aa4cbcace127c81d945ceae4ec15a64317d1bc0 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +sacrebleu==2.6.0 \ + --hash=sha256:453d11d2e8cced4c04976762e894dd058429febd8e048d83ca23e0c5e82ac623 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +safetensors==0.8.0 \ + --hash=sha256:56de2e513c64327e448603d31097ce1a32e1fd91bd339cc09b392afb1b6352b3 \ + --hash=sha256:f737673bd1c0994fd1d8ebfbb00217cda59a56540c012bc3bdfa9c14ac3879dc + # via + # accelerate + # peft + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +scikit-learn==1.9.0 \ + --hash=sha256:25e816408e1b80c975b67f902834f04f38d5eab1c974aa7f27e494df74890592 \ + --hash=sha256:702ad7c9cfc2847ec4b924f1083c6f37c9afe6825571a9d023a1a4db1b5682ec + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +scipy==1.17.1 \ + --hash=sha256:674089bcc42da4fd563c4dfc7aabcf87694dd2b24ac3a64cd2e192ee42d1a0d1 \ + --hash=sha256:753d67cf39066fb972d23f4a4013b3534a807ecd15154e680594bc1a6b58fe90 + # via scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +setuptools==80.10.2 \ + --hash=sha256:b7fef5ea30158a6fdc60562f05e47eaea21ea449fa19d75ddae892fa21bbc41c + # via + # pytablewriter + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +shellingham==1.5.4 \ + --hash=sha256:efe6398bcf52d281868139a4ba1c8648709ed025afb4617f7fbffc8e64e27488 + # via typer + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +six==1.17.0 \ + --hash=sha256:bbfeb1ad505c74c22bb51560eaa3e671a83fdc633849e148b024fe6f32b525ae + # via + # langdetect + # lomond + # python-dateutil + # rouge-score + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +sqlitedict==2.1.0 \ + --hash=sha256:c27d93a28364f7d4cda7931a7632e74d2035390ce5024fe6f98bcf14962050d3 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +sympy==1.14.0 \ + --hash=sha256:3497887acc64abcff0c1358e98fda5d95d82d9c2b803011d9a5f4c4c338d3a70 + # via + # lm-eval (pyproject.toml) + # latex2sympy2-extended + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tabledata==1.3.5 \ + --hash=sha256:d10b6b073d684dbb6243b8e482562fc60ed1324e9601d35e9c7702c132876a33 + # via pytablewriter + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tabulate==0.10.0 \ + --hash=sha256:ca027573760235e060c56b6fe4497f29a32b2794881a570d6feb7459c2a0ab5e + # via + # ibm-watsonx-ai + # sacrebleu + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tcolorpy==0.1.7 \ + --hash=sha256:cc61eda3066b56e1727fa6eaed8fbaa302d9fcc33a29096921f3fa8d992a58ee + # via pytablewriter + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tenacity==9.1.4 \ + --hash=sha256:c98747c9932d7a79723bf057a42dd23c815f4109551e3e5dbc09ceb710573915 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +threadpoolctl==3.6.0 \ + --hash=sha256:63eaeef3b35e8b409f9cad962720e025f91a6ed75b1269ca48d836171aca446a + # via scikit-learn + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tiktoken==0.13.0 \ + --hash=sha256:01e09c16ba9d7440ba5c9e8973bf1f10f457467a4214bc399c727f17781ba206 \ + --hash=sha256:ff02868798fb8bb36dd42a7d54418b9499917fad6e7ffec179e7efcd50c74f8f + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tokenizers==0.22.2 \ + --hash=sha256:1001c90020fd3afd94d80a34af91edadb55401c0a37cb16d4efeca5f421bc10e \ + --hash=sha256:dcd139a943f77b07f1f717d7278ac0bc5f8d02ab37ba2b199f489a6b09ed7f4e + # via transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +torch==2.11.0 \ + --hash=sha256:2b34316672152dbf617f44837a11a8aded8e854c6f4fe2e0eb9b79d586ef1ad8 \ + --hash=sha256:467d15e5523cf2700d1cfa440b41afec8feffb131a21e83b3abdb1f930567599 \ + --hash=sha256:c4d4eb226291df26b59ac8383e142653f4f097637f806e10173dbd135f865684 \ + --hash=sha256:cac94da4c47daa83e88b86b77b7a19fddaadb7b1b4715029155ea2eb2be2fb3e + # via + # lm-eval (pyproject.toml) + # accelerate + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tqdm==4.67.3 \ + --hash=sha256:5f68b64182b39d12613008933d404d71e753d34260a1ead7f9df9d3693603796 + # via + # lm-eval (pyproject.toml) + # datasets + # evaluate + # huggingface-hub + # nltk + # peft + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +transformers==5.12.1 \ + --hash=sha256:8c3013256a2cf26874fe11b0af35c4ea030b5bc230195a104323413ca1245ec2 + # via + # lm-eval (pyproject.toml) + # peft + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +triton==3.6.0 \ + --hash=sha256:10fd04d46c64cbf1014c90059ab83a184abb37a034f01439b505bfe7275c3a85 \ + --hash=sha256:2af75f236bdcd8f1e0ce50dba05dc38bee2f2d7a0c129943d0a941eeed920b53 + # via torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +typepy==1.3.5 \ + --hash=sha256:8bf9a32347dbcd5b039aae1b712655d04a67b60c80b79e4f9992d5b82ac6cdd7 + # via + # dataproperty + # pytablewriter + # tabledata + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +typer==0.25.1 \ + --hash=sha256:2be603054d954996ba004487f203c4ea9528cde2e41642171ffd7f444cf78245 + # via + # huggingface-hub + # transformers + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +typing-extensions==4.15.0 \ + --hash=sha256:1c4cc3f13285b8881d6d5adae0bcdf9fcd707e27510ebb5a0d104f47a8c2c68a + # via + # lm-eval (pyproject.toml) + # aiohttp + # aiosignal + # anyio + # huggingface-hub + # torch + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +tzdata==2026.2 \ + --hash=sha256:64b3ebc5d0e4b7994a4def8df6be35722b5334aa25b540f62de5da0f925cf6e1 + # via pandas + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +urllib3==2.7.0 \ + --hash=sha256:974a17032d3e851086b5f4049a0ebfdc51de6146b1e2f941ab4dd53ade194ca3 + # via + # ibm-cos-sdk-core + # ibm-watsonx-ai + # requests + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +word2number==1.1 \ + --hash=sha256:46678472b4c9312700f337c21c4e00daa820a5ab69afd2107621fa9f897fc847 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +xxhash==3.7.0 \ + --hash=sha256:375fca5ad491a78757c9216664909a4342557f1fc63732c08d642c0a61155349 \ + --hash=sha256:f4bb44d9eac1410ff0ecfe9c017f052c658c38e7e263ef38ac5f1689e7b46162 + # via + # datasets + # evaluate + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +yarl==1.24.2 \ + --hash=sha256:1cdd198ca93493aceb825323b6cfb86d0881a54da9181cd617d142b3c1b229c7 \ + --hash=sha256:88c7af860ac250a92159d6a68548df7b3dc1c79fcb4f28acec86d5244275dda7 \ + --hash=sha256:9d283787b9a922c6ce3b062e522bb40a2c0fdc97e585dae9822de7995500bdd4 \ + --hash=sha256:b79196d4a52c3274212a8cde31690ce9f3619dc4afac6d4f60edbfbec420b8b0 + # via aiohttp + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ +zstandard==0.25.0 \ + --hash=sha256:181aaccd3ea519128e4251dd9674fb6838b6b4a997ee8eee98a936961298fd6d \ + --hash=sha256:f4d98bb472645175e334ada5bd6f839def46c7a72f0c226791bf9b5aad218379 + # via lm-eval (pyproject.toml) + # from https://packages.redhat.com/api/pypi/public-rhai/rhoai/3.5/cuda12.9-ubi9/simple/ diff --git a/requirements/rpms.in.yaml b/requirements/rpms.in.yaml new file mode 100644 index 00000000000..b9f6d92ecab --- /dev/null +++ b/requirements/rpms.in.yaml @@ -0,0 +1,10 @@ +arches: + - x86_64 + - aarch64 + - ppc64le + - s390x +contentOrigin: + repofiles: + - "./redhat-minimal.repo" +packages: + - skopeo diff --git a/requirements/rpms.lock.yaml b/requirements/rpms.lock.yaml new file mode 100644 index 00000000000..d94ffb9ceb9 --- /dev/null +++ b/requirements/rpms.lock.yaml @@ -0,0 +1,4732 @@ +--- +lockfileVersion: 1 +lockfileVendor: redhat +arches: +- arch: aarch64 + packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/c/containers-common-5.8-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 170106 + checksum: sha256:aa8c02f753696dd2daa5816e5efee49f9247ccb83da6e7cdaa66e72c4bf02cac + name: containers-common + evr: 5:5.8-1.el9 + sourcerpm: containers-common-5.8-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/c/criu-3.19-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 555523 + checksum: sha256:376aca78a8d78a052503fc4406ee84e4d0607c047e8486190b06ed3acd19a6c7 + name: criu + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/c/criu-libs-3.19-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 31064 + checksum: sha256:34b7c037743e730a07117d9627725517d60ed356f945c9f42880573f552b7c4f + name: criu-libs + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/c/crun-1.27-1.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 251772 + checksum: sha256:237be309ac7acd313d8850884d946dab9a265a5ba19ee70c7d4bdd9215d4e892 + name: crun + evr: 1.27-1.el9_8 + sourcerpm: crun-1.27-1.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/f/fuse-overlayfs-1.16-1.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 63393 + checksum: sha256:7e26a4ef20d9e376a3f84b78d36d1ad6c66ce154e7dfef8757b6aec471a86a4c + name: fuse-overlayfs + evr: 1.16-1.el9_7 + sourcerpm: fuse-overlayfs-1.16-1.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/f/fuse3-3.10.2-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 58189 + checksum: sha256:2b911ff36ca332c9a5d0f2b2f088b51e9417d2085ec9c44967102f845825ad0f + name: fuse3 + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/f/fuse3-libs-3.10.2-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 92984 + checksum: sha256:5996291bc8dbb3d32f5d0ac693a4570dba5fe45631d4ca0552696285ff905370 + name: fuse3-libs + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/l/libnet-1.2-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 62963 + checksum: sha256:543b0664c576f91ae8f5563f04c2cb3de65ff514d5ed658ac825aa4d98e860dd + name: libnet + evr: 1.2-7.el9 + sourcerpm: libnet-1.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/l/libslirp-4.4.0-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 70971 + checksum: sha256:12fa772c2e3905244fd6cc9971e2592c12a547ac3e4df66f5f0c6ef1e670067d + name: libslirp + evr: 4.4.0-8.el9 + sourcerpm: libslirp-4.4.0-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/s/skopeo-1.22.2-6.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 7714893 + checksum: sha256:df9ea6b7c57fbcc9eae8fd7279b9d009be2c56a7dd479d7497655bf387b19c38 + name: skopeo + evr: 2:1.22.2-6.el9_8 + sourcerpm: skopeo-1.22.2-6.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/s/slirp4netns-1.3.3-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 48428 + checksum: sha256:7955cb422fe44dc41ea42234fa2543668f39b8f036cde00b1ce0b2ebecf4ddf6 + name: slirp4netns + evr: 1.3.3-1.el9 + sourcerpm: slirp4netns-1.3.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/os/Packages/y/yajl-2.1.0-25.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-appstream-rpms + size: 42219 + checksum: sha256:a6becc709b5431b18ccebd844278598f01f05bfd57dc1abfaa1680d5b8edc8ac + name: yajl + evr: 2.1.0-25.el9 + sourcerpm: yajl-2.1.0-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/alternatives-1.24-2.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 42137 + checksum: sha256:6f7c0667ac015bc0d40836c9f55c73ebf65a209069f69aa8f58e6b4655c820a8 + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bash-5.1.8-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1760045 + checksum: sha256:7dc1febec9c2fb184ed4407f8a188ab267b7e46b3534866f702c6266008ababa + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 47655 + checksum: sha256:8267a866b9289ac4e4a92cb4642adcdeff97c2ed816ddda87ed5d5e9d9431a2f + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 771760 + checksum: sha256:7e4f331fc477f0a8482c825ab1b6bfec7f4007481f4eb53fde7fa0ef2d1f6cde + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/filesystem-3.16-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 5003914 + checksum: sha256:484bc41109c49066cf350344150abe144e63263e0fafa0bf12c5a47f853e6a49 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/findutils-4.8.0-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 564807 + checksum: sha256:158af4d5ecbd8b87f0da762ea1655bd4c86512071a95d8307eda3e0b3991105d + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/f/fuse-common-3.10.2-9.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 8718 + checksum: sha256:ee202d37528745e6367791304c4f04af4a84bc9df2027234900186a8bff858f7 + name: fuse-common + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gawk-5.1.0-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1024204 + checksum: sha256:a4b7202ac90653a7d3e072c2444bde6a9270d6a818eb6f2ffcfcaa50774f1fad + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 60311 + checksum: sha256:74fffe15dd7f5a41c7d1990c2804defa1b45fb845da29465b73a81d5866e8a72 + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glib2-2.68.4-19.el9_8.1.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 2743365 + checksum: sha256:cafb435ae94a522ce70c3d82131ed87128c9dfb1b9f65d71f199e57882c14ec7 + name: glib2 + evr: 2.68.4-19.el9_8.1 + sourcerpm: glib2-2.68.4-19.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1814894 + checksum: sha256:3c53335370d5ac00dfb094f18f1f1a113452ffc88521ba4af1bb70449149453a + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 313725 + checksum: sha256:b908c768c75770132812c89f216af25377cb3efc69b7bafb19d63de41cac526a + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1832221 + checksum: sha256:69d7b550276fd57a3a7b89e734209e4a3c01ca25d757a85ea41278641a2e5cae + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 31813 + checksum: sha256:bc3bc61593f11049120c35d6bb297456577ad31a0db114737305c428c6270932 + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gmp-6.2.0-13.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 275679 + checksum: sha256:df01d909e4613514b1844d6ca26d0bcdff8a659762e507188d04ed046fb0cec4 + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gnupg2-2.3.3-5.el9_7.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 2613215 + checksum: sha256:dd1113b6c4d5a8ccf4b265ac5e3b944c69dfecbc5798286dbf1464eae82ccffb + name: gnupg2 + evr: 2.3.3-5.el9_7 + sourcerpm: gnupg2-2.3.3-5.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gnutls-3.8.10-4.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 1339137 + checksum: sha256:9510c4ee6a5c3ff8292c57c3a4594d798d2933322f7e394f0e048647b92ed4e1 + name: gnutls + evr: 3.8.10-4.el9_8 + sourcerpm: gnutls-3.8.10-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/gpgme-1.15.1-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 209615 + checksum: sha256:3f0883600463daa07012d99df9003a49a6a1bcb9abe14ecf28829c617d2ef658 + name: gpgme + evr: 1.15.1-6.el9 + sourcerpm: gpgme-1.15.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/g/grep-3.6-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 276244 + checksum: sha256:583a247a199901d44dc8a96d46010e15f6211f98f7c61ba089825155b0562520 + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 34341 + checksum: sha256:d747ed6e1916d8ea400c89ad6078a8c298e30d652ec21985c93539e34c587a73 + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/kmod-28-11.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 125869 + checksum: sha256:ed0cf7e6f05e0646f968e862c6b6764c5eac8378f918a33e1b78bcde7a994aa3 + name: kmod + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libacl-2.3.1-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 24374 + checksum: sha256:7c98786eea7783275ff88dc4b524ab4a9cc0c4c8b40206b2cdf7174d3e339918 + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libassuan-2.5.5-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 71019 + checksum: sha256:b8f243fd6e7848b95b324e59c19bde42d7483e34afdae93e8de3531d758895b9 + name: libassuan + evr: 2.5.5-3.el9 + sourcerpm: libassuan-2.5.5-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libattr-2.5.1-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 20696 + checksum: sha256:b6a73c9da522df55690b886c0a9af39338571d34ee6f0d4d9b994c8289df3412 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 78021 + checksum: sha256:1ac3014c33b84d7a492b99d46d47940b096e034a3d5886e16ace7159724be012 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 36033 + checksum: sha256:dc4eae31749196c0043225c6749e7306ff71f081c09cbdb2fc98a561087c4474 + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 26607 + checksum: sha256:b7e5c8fe9d9f15864966f46c124659de6cb9137d01e213b3e8cac00d10aab55a + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 265763 + checksum: sha256:0858687ac9d55a0db78ecc4f669ad21ccba6815744457d135f5a313898dfcab7 + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libffi-3.4.2-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 38554 + checksum: sha256:d33e180b97a603542cb6f1a78b1c3b0ce4af1bc59ee0bb32620c98a629726bc4 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 81211 + checksum: sha256:6923218fdef581189a4b51c7ba158083597f1c6df08cae021a1d90e9d61938a9 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 468890 + checksum: sha256:3d2245f8566422e27f77d0ef4820bafe8d059b12612e74e5672d9c5959ff7ec3 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 222476 + checksum: sha256:aee968114aed0238eb26cff42ec9b0819ad32e2bac99aa8124d55b480806aca5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 107549 + checksum: sha256:657925cd0fc0abc03cc83ff3688e131a452ea673a5dcb815cd0fc168bf962fc7 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libksba-1.5.1-7.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 158319 + checksum: sha256:6e655616bc385ec0233db2475c120c5875d9851065e64ca3001bb0a485ed184d + name: libksba + evr: 1.5.1-7.el9 + sourcerpm: libksba-1.5.1-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libmount-2.37.4-25.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libnl3-3.11.0-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 363241 + checksum: sha256:91c7bf60c756cd2a457652b95e96e725068898f4ce580b70784fc60a099621b5 + name: libnl3 + evr: 3.11.0-1.el9 + sourcerpm: libnl3-3.11.0-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libselinux-3.6-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 89531 + checksum: sha256:3d7249adbf19206e319cd24acc2e01b0da39975aa3e5af73bdb6c6d438108fac + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 120963 + checksum: sha256:233d8270827b9166ad11827599800d2a09284d29e73af09c7a12bae251a9463c + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsepol-3.6-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 326966 + checksum: sha256:496ed9e2d7fac9704afe764eab4c2c43b4a47e8c229c14498dd19786f98f80c0 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 30566 + checksum: sha256:0998ac158161c9d5f3b97c5dc6e35becd84da0ddc5d347a8af581ada529b3b5c + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 37581 + checksum: sha256:85f38e641398438f7f08526d7003f47e47a14369798464fd67c465134258e964 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 503151 + checksum: sha256:f68934935fc209e7c595c5619df75f822cc832803e3ea6de2c92e3b91b4d5008 + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libverto-0.3.2-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 24651 + checksum: sha256:80d6e32c111ab9c0b2c607475b6a6691cdf6abaec19fde27043e8710a94a8f0c + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 127655 + checksum: sha256:f05030123425a5033bcca3f260313cafc199bc7bca57e9fb13c335bd087c35a7 + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 283159 + checksum: sha256:1229ed44dc7a68278682d7697c41d0abd7daedd242d90c6dc58a9aa6e76f9e6f + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 70696 + checksum: sha256:e1dbd2c38a65b135427c7c8fe988ea70dc95f7e26c4c8177b7dcb23925020015 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 324624 + checksum: sha256:b5dd452392d2f97bb050c9f5e5376998652c567dcbd8f035d26659b1b551b5c9 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/n/nettle-3.10.1-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 548438 + checksum: sha256:8f75ffbc6782c543407b53c01f56bb7f1234f7a7b234be74bdc0a116c123e349 + name: nettle + evr: 3.10.1-1.el9 + sourcerpm: nettle-3.10.1-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/n/npth-1.6-8.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 26972 + checksum: sha256:6fb2eb0e66f94ce62b1f14f00704de0800664da8429df1df244ad7d9ee2c0b7b + name: npth + evr: 1.6-8.el9 + sourcerpm: npth-1.6-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openldap-2.6.8-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 291500 + checksum: sha256:fd684316480b2f9a9448d550c2509e37016710ca0724ff3d17d91fa0be2bdc4e + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/o/openssl-libs-3.5.5-4.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 2289161 + checksum: sha256:ba16b5253cfd99797f4582afcf60d58acd16d84bbbba9f5a8b6ccf3f2b7e1ba0 + name: openssl-libs + evr: 1:3.5.5-4.el9_8 + sourcerpm: openssl-3.5.5-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 582494 + checksum: sha256:5c8fe4b19ea7a76bc2213087ee91679143217fbc33162103e60dd60735504f36 + name: p11-kit + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 158801 + checksum: sha256:713b79a7f12829d98bad68dd2d661f3ef30969fdffbbbb5de4dc7aec6cfdd030 + name: p11-kit-trust + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre-8.44-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 187289 + checksum: sha256:099feef7e71b82cf0234e37d824fc81353d51dee55694e05181fa686ab50efae + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre2-10.40-6.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 224938 + checksum: sha256:29285f81cef68f73b4f8ff81ee8fdf4ceaa007933302119ed1615e4aa1091613 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/p/protobuf-c-1.3.3-13.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 38582 + checksum: sha256:d68a518f80e00df5e63ba24d4be5058998d857e24b1af316f37001dfc91d3149 + name: protobuf-c + evr: 1.3.3-13.el9 + sourcerpm: protobuf-c-1.3.3-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/readline-8.1-4.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 219015 + checksum: sha256:2ae424b368c6747124b51b205b9e11d74aeaff56b3de90e8cbd36012e0d17707 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 18336 + checksum: sha256:7d74896ddd0d19cef1533d212b9e44efbcd8eb0d173f4b67261c08028421b881 + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sed-4.8-10.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/shadow-utils-subid-4.9-16.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 85318 + checksum: sha256:74ace5717c8bc87aedf563a93373eb71abc5893d516a9ea61760ba429726236c + name: shadow-utils-subid + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 660260 + checksum: sha256:dda4c59309d47d73d64291c53078cce330b8d5a9d95c903e133d9f37ec0e0a68 + name: sqlite-libs + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.aarch64.rpm + repoid: rhel-9-for-aarch64-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.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tar-1.34-11.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 904777 + checksum: sha256:62f985a87e048caa3ef883966d6176448398abc42df00ebff07e7311ff5f425d + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 94569 + checksum: sha256:06931afb372ed4a6893e51558beaa6b0eab7adda0af93456fd99a081a8b80779 + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/os/Packages/z/zlib-1.2.11-40.el9.aarch64.rpm + repoid: rhel-9-for-aarch64-baseos-rpms + size: 94454 + checksum: sha256:2e7f193e67235130c10f5579c2d2ec92e22e4098b6d12fb2855d93b1540c60f7 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm + source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/c/containers-common-5.8-1.el9.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 180820 + checksum: sha256:1618129f9bd64bc73721761717845ddb071a05f6d6124208fedf013fb3c9bf86 + name: containers-common + evr: 5:5.8-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/c/criu-3.19-3.el9.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 1397598 + checksum: sha256:935cde45890eee106b48c5a17fcce9a359bbc33e5867c7433012a28fdc095e90 + name: criu + evr: 3.19-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/c/crun-1.27-1.el9_8.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 908484 + checksum: sha256:a7a4cc5266e6a032b4e69926eed619018084726eb9758c0e75a6617bc7825521 + name: crun + evr: 1.27-1.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/f/fuse-overlayfs-1.16-1.el9_7.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 127644 + checksum: sha256:8e2ae14c212d0dde5afe0381b609c9bdb9f97bae787ca05a16c3c2c33b54547c + name: fuse-overlayfs + evr: 1.16-1.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/l/libnet-1.2-7.el9.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 611553 + checksum: sha256:bc2724e7061c48e2038f4f47b433bebccedb4ffc227dc351baaf3d5a52f03b08 + name: libnet + evr: 1.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/l/libslirp-4.4.0-8.el9.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 128699 + checksum: sha256:5e740382ebf1511fc7c4fa0c1db0bc72fad624329ff9e359cea75cccbed503e4 + name: libslirp + evr: 4.4.0-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/s/skopeo-1.22.2-6.el9_8.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 10193995 + checksum: sha256:2a36919d2eb3d1a75138b52d343729ce9625b5d2664677630bd8148b7503bca2 + name: skopeo + evr: 2:1.22.2-6.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/s/slirp4netns-1.3.3-1.el9.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 76019 + checksum: sha256:fcf453e6ffb0f7892fb087d8052f9ceebab6dfbc3797ad6b98c8eee9814e009d + name: slirp4netns + evr: 1.3.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/appstream/source/SRPMS/Packages/y/yajl-2.1.0-25.el9.src.rpm + repoid: rhel-9-for-aarch64-appstream-source-rpms + size: 101373 + checksum: sha256:08182ae11608d0ad5d9ef01c558a39489f331fe449f9be6df1a91c5e950163f9 + name: yajl + evr: 2.1.0-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c + name: audit + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc + name: bzip2 + evr: 1.0.8-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/coreutils-8.32-41.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 5696745 + checksum: sha256:9129bd65888eb0b6d802d8fe912609726af5d1f6347df8a18b243c426dcbb4db + name: coreutils + evr: 8.32-41.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/f/fuse3-3.10.2-9.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 799367 + checksum: sha256:ddfcd07bcdcc07bdabe0f05b2c5c3bb1d6582af9c6b127632dd74f8ca78d56c9 + name: fuse3 + evr: 3.10.2-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/glib2-2.68.4-19.el9_8.1.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 5095692 + checksum: sha256:e3cd2fb9f1035e6dd681f3413ae02a8d1c1252f7541ba326cf163f0de04a27c1 + name: glib2 + evr: 2.68.4-19.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gnupg2-2.3.3-5.el9_7.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 7623034 + checksum: sha256:88d0f8bfaf376b52de7a56de608af034ceae7a42ca20e32166bc79199cf2234d + name: gnupg2 + evr: 2.3.3-5.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gnutls-3.8.10-4.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 55044099 + checksum: sha256:ee25c18e286f6a5bff89f29ed2aa3c997415ddb606d0382334679a6c93d2b592 + name: gnutls + evr: 3.8.10-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/gpgme-1.15.1-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1737968 + checksum: sha256:ceeb7d42bc8ddf6f09013439bfed4e591411b81293fe3db5e4edb06cbe1879fb + name: gpgme + evr: 1.15.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/kmod-28-11.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 579198 + checksum: sha256:4f6fefbf0d004b23494fe18ccfff2b9151ea887a276c56a6f25ea597a250991c + name: kmod + evr: 28-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 + name: krb5 + evr: 1.21.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libassuan-2.5.5-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 586136 + checksum: sha256:dcc858194f9497ec86960651fa76413a9c731f94423d67298e8e3c0c7a5e7806 + name: libassuan + evr: 2.5.5-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libksba-1.5.1-7.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 677223 + checksum: sha256:6d334a90bcbc270ee691183624e5664fdbe7dbf2d4a47319e6c75860e16abd43 + name: libksba + evr: 1.5.1-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libnl3-3.11.0-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 5068824 + checksum: sha256:13f6ea90f26fbc96e3754584a576c03ca41221fc939164f5a7b6341a6372fd7a + name: libnl3 + evr: 3.11.0-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libseccomp-2.5.2-2.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 653169 + checksum: sha256:43dd0fa2cd26306e2017704075e628bbe675c8731b17848df82f3b59337f1be8 + name: libseccomp + evr: 2.5.2-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-10.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1899881 + checksum: sha256:be5c3a993282ecde81ad5d00dd4e7b2c293e97e47d28709aa0ea7292b80ba610 + name: libtasn1 + evr: 4.16.0-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 + name: mpfr + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/nettle-3.10.1-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 4331292 + checksum: sha256:1f3587f2d59896bc3f427e4b5b9395095189dfb04237c242daa5cc536c7e02a9 + name: nettle + evr: 3.10.1-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/n/npth-1.6-8.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 314570 + checksum: sha256:3d0685cc559f0af453b6b3ace61944dec9b9cb090695e4de5f5579da7b35b750 + name: npth + evr: 1.6-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-3.5.5-4.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 53362961 + checksum: sha256:7f1e764394ad2e1a4915fef182edbaad643dab6b59cbd52679a0962b26cb5d36 + name: openssl + evr: 1:3.5.5-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 28686020 + checksum: sha256:0b14c251cccb4506df185e78ec55cb49e14e7bcd8de19ad3f3246017b2120693 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c + name: p11-kit + evr: 0.26.2-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/p/protobuf-c-1.3.3-13.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 513224 + checksum: sha256:d4d82978c58a2f9ca8e24b953fd9ac74efee41572ec9649c4f2f183cda98b33f + name: protobuf-c + evr: 1.3.3-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 + name: sed + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff + name: shadow-utils + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a + name: sqlite + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/s/systemd-252-67.el9_8.4.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 45009674 + checksum: sha256:e44181d1de2a135a5507b956d18a9eb11951a35aaa9c15dbc0f144ed8313f732 + name: systemd + evr: 252-67.el9_8.4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 + name: tar + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-25.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 6291867 + checksum: sha256:6c788387cde9c0fde5481382f3f8416e3ecbcf09c908b409b6c63358b90a399f + name: util-linux + evr: 2.37.4-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 1168293 + checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 + name: xz + evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/aarch64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-aarch64-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 + module_metadata: [] +- arch: ppc64le + packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/c/containers-common-5.8-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 170148 + checksum: sha256:eff6e08557b9ea0e97b991801e37a52ba5cdb83a7d8347b5818081bd64cb5981 + name: containers-common + evr: 5:5.8-1.el9 + sourcerpm: containers-common-5.8-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/c/criu-3.19-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 603115 + checksum: sha256:127155d8ccc2e3b1971631e251b6bcf788072302b36d85d0cd9b86e5488327a0 + name: criu + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/c/criu-libs-3.19-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 33613 + checksum: sha256:f004060055d65ee045db9f4a445d9de0ca824a7b41bb48458bb9ac449a558ce0 + name: criu-libs + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/c/crun-1.27-1.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 292788 + checksum: sha256:b83e4600d20b32872410ef003aa8b8942719971805ec2a4e4622f3bc587663a3 + name: crun + evr: 1.27-1.el9_8 + sourcerpm: crun-1.27-1.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/f/fuse-overlayfs-1.16-1.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 69175 + checksum: sha256:9df6b647cd0e1cf6567184647117ffd2e8180b56f19a2cc07815a8b49f387913 + name: fuse-overlayfs + evr: 1.16-1.el9_7 + sourcerpm: fuse-overlayfs-1.16-1.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/f/fuse3-3.10.2-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 60949 + checksum: sha256:2d3079c155a9d6b0184fdf4147f814260008877091cc47127cc6a2b04cc4d77b + name: fuse3 + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/f/fuse3-libs-3.10.2-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 101678 + checksum: sha256:3a8609dbd730ac88e7dfd9fcf1e553a549f38c81e9ddd74d3a5b65e5f1bb4d1b + name: fuse3-libs + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 216324 + checksum: sha256:f44a17730803f53266874678031b8121541b5b1a8047a3205c2576630216f468 + name: gawk-all-langpacks + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/l/libnet-1.2-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 69085 + checksum: sha256:6e3fc7cecfb5f2cf5121876958491c773287c72449e0331493fc3d1fa15740fd + name: libnet + evr: 1.2-7.el9 + sourcerpm: libnet-1.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/l/libslirp-4.4.0-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 76756 + checksum: sha256:d7cde72fc007d27edaf44c1743d37dc0a1d01fb456d9bc83fee5688c906dadf0 + name: libslirp + evr: 4.4.0-8.el9 + sourcerpm: libslirp-4.4.0-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/s/skopeo-1.22.2-6.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 7824519 + checksum: sha256:43764f343635818bed9569d0fe74e68f79662369d9aef80e00729af803803b45 + name: skopeo + evr: 2:1.22.2-6.el9_8 + sourcerpm: skopeo-1.22.2-6.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/s/slirp4netns-1.3.3-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 50838 + checksum: sha256:20fb59722fbe7feece3440e1b0a036ecf2674e2ca24e55e69130afbdc5d76ccb + name: slirp4netns + evr: 1.3.3-1.el9 + sourcerpm: slirp4netns-1.3.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/os/Packages/y/yajl-2.1.0-25.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-appstream-rpms + size: 44667 + checksum: sha256:26fab003ba430cebc0b15182be8f43799af55dbd618bc64fece8aaba7081dcc4 + name: yajl + evr: 2.1.0-25.el9 + sourcerpm: yajl-2.1.0-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/alternatives-1.24-2.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 44269 + checksum: sha256:ff47094c1f94e74225bffd2b93cd3b4690d1e20d098d35ecf2cccecd468f6f62 + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 149393 + checksum: sha256:217118e6574a40a18ce9a3b46ab68ffbb62b65f2cffb3b8ec7da442e800be170 + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bash-5.1.8-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1818376 + checksum: sha256:4ea13d08a909851376ff25b706c942eb3b66b0205e980aa4f9176e28ee1bae37 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 51183 + checksum: sha256:e6238a5785f9158154e4e267f7650b00d80f54c1479ef669ed7c26edee017fc2 + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/coreutils-8.32-41.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1259870 + checksum: sha256:d9fc3be701da7abe502bc5f9d07f93e13088de2e78cf0de8bcf5fb8c0fc7e737 + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2115089 + checksum: sha256:a242aae86238374731d5d52f23962a6af31b5ed51ce5cffaeee62e05046ed2ce + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 876118 + checksum: sha256:b0cfaae4c1a887e1c8cd58f4f4fdce366b2353094747cd21553dcb316b252699 + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/filesystem-3.16-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 5003944 + checksum: sha256:e7d0bd8df20dfb2b499634c34ec966e1bd477a5d15f98373f56089ed0f387aca + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/findutils-4.8.0-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 603076 + checksum: sha256:d4662cea7b9ae75c86e6afa1c69b3047773acf7d4a6cf8b99e63355cde0e8de8 + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/f/fuse-common-3.10.2-9.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 8730 + checksum: sha256:e165849a1cf2650552dae0735f29d5d2cdca20a3bc12afd7978cc8292207dd2c + name: fuse-common + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gawk-5.1.0-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1064251 + checksum: sha256:b0cc389ad0855900c79f2cfa525df8cbc663093056b0b5d29ec3e36a189b325e + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 65838 + checksum: sha256:18bdea48a00d647410ad82fc2cd8da81124611b1b2dd21a5526ba7e433c52be0 + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glib2-2.68.4-19.el9_8.1.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2889316 + checksum: sha256:5eb0b94a22c44f78a57fdd5e7fbebeffbfdf8bc973142c4c9d7e5bc6f1a2fe16 + name: glib2 + evr: 2.68.4-19.el9_8.1 + sourcerpm: glib2-2.68.4-19.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2911722 + checksum: sha256:5c23883112e39d4d3fe62d6d0d6f6c5b9729fe94b62bb551ceaa868a48d880ce + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 340448 + checksum: sha256:e97f806a6d88f05c0556dbe7b079647a85dea5428897ca29ed8d2c962d3e1f0c + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1833932 + checksum: sha256:7f2dd81016e098191741fd68f6a1f48de20a7049d23332887429b8f66dd47b3e + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 31837 + checksum: sha256:af0afca474195ac93e468d61fa316b6dcc5b9d0270a13655fac38298bee320cf + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gmp-6.2.0-13.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 312805 + checksum: sha256:aeaf0f125933153cc8fc9727dac28dade4c6a8ae146812c4445643dadd3a585c + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gnupg2-2.3.3-5.el9_7.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2804099 + checksum: sha256:a9650c2049dd15e6fbd731cbe8b6fa8fa3684758a14f0538ffec8c2b22df0d9a + name: gnupg2 + evr: 2.3.3-5.el9_7 + sourcerpm: gnupg2-2.3.3-5.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gnutls-3.8.10-4.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1386875 + checksum: sha256:32dfcdf7942ddb045cc88abfba807be5610b48e57181e53520f25508b306025c + name: gnutls + evr: 3.8.10-4.el9_8 + sourcerpm: gnutls-3.8.10-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/gpgme-1.15.1-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 235171 + checksum: sha256:e1ddfa7fd6c16df9ccff370e4b303c58ab551848b7b8cca2cbd628db3ff48f81 + name: gpgme + evr: 1.15.1-6.el9 + sourcerpm: gpgme-1.15.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/g/grep-3.6-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 288035 + checksum: sha256:3598703d7995b01b5b10f55ac65ce851e30f41d037e679bec4afa11a41846511 + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 35505 + checksum: sha256:6e45fee51e67239d8550789a53ab7ca562c605513afe0ff890786ae9fff8fac5 + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/kmod-28-11.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 139808 + checksum: sha256:749ef86abd3c52f13b71962421186d0cf5cff1d15fb8aabd72bbc27109d9e544 + name: kmod + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 872744 + checksum: sha256:29c5c7dbdd6ab6b3a72a229dccb60dc2596fb121ac7ddc5f8e37c3bf0b51f528 + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libacl-2.3.1-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 26589 + checksum: sha256:3612c4b0b3abab058e19ff290b96147ccbbd8179317a8d51f9ed78958d982b4a + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libassuan-2.5.5-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 75672 + checksum: sha256:812482db276d6792f126ca46c802e30399b07335d8c847d1f3c518241ffe03c7 + name: libassuan + evr: 2.5.5-3.el9 + sourcerpm: libassuan-2.5.5-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libattr-2.5.1-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 21501 + checksum: sha256:a2398158adad2016fca3d0d2c272e027b8279020992a349664caf6a2299ec50b + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libblkid-2.37.4-25.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 130845 + checksum: sha256:6b5eb99c4eb1a0dc3721c9fd4dc30bd3f7e18eaf2b1231d4af13924fc017dcc5 + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 82771 + checksum: sha256:a623e466f4e510ab474b45e306b85d5864b81a15325bf652c94caa7f171848c4 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 37600 + checksum: sha256:2483f8a4b41d76f84939855b712cfa8a990254ac36fc590daa641b2c19b014eb + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 27218 + checksum: sha256:e42731a8cd63ee553dd01bf989e6cdda8d33fb515119d83039046c987a000f6c + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 287857 + checksum: sha256:bc6eb253e6cf0e06fa7270c029502e14ee70cb22c2ed86b15f2a9952ba2f375f + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libffi-3.4.2-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 40799 + checksum: sha256:c5042688cccb346b2bb0865410564d305a9b86e7618558354428ebc09ff689d8 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgcc-11.5.0-14.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 75967 + checksum: sha256:0b6c9442a91dd807a0bedfbaacca463657b8cafc69b238a3536a1d15e26e8af0 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 612983 + checksum: sha256:917a9fc0eca0405813697b4d830578c92b01c1dba766321bfa880a248b0c4d5e + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libgpg-error-1.42-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 234885 + checksum: sha256:2db222784b8d4183fd2704cffa9df4d7023ebd5dc51806fbdc30e8fa9123c5a5 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libidn2-2.3.0-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 110270 + checksum: sha256:28a3da7752093735a9c0de6232bcb6c3d9910a90956891396712825b354bf7d5 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libksba-1.5.1-7.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 177249 + checksum: sha256:7811870bfcc1665daaae2f088e737bc7d0c49a753c1db1cf5a4d9c2162f29cc9 + name: libksba + evr: 1.5.1-7.el9 + sourcerpm: libksba-1.5.1-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libmount-2.37.4-25.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 159789 + checksum: sha256:8eda0227f78a0838b73bcd725c45f14f0e3423a1fe9bd5d11423032af7715baf + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libnl3-3.11.0-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 393979 + checksum: sha256:3f75460b21f4bd370d1bbb39a0cf54b27279f7d45bcf65420bebd350eb9f100e + name: libnl3 + evr: 3.11.0-1.el9 + sourcerpm: libnl3-3.11.0-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 84378 + checksum: sha256:ef769ff2877361cbce88aac5e35091e9798c7cc23f91f12637b1a4229e056ea6 + name: libseccomp + evr: 2.5.2-2.el9 + sourcerpm: libseccomp-2.5.2-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libselinux-3.6-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 102114 + checksum: sha256:ca29ae2f3e2ed004aafca74bd18a97b5e987688bac061f573a9ad9903d2ce23a + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 136617 + checksum: sha256:fb48b9d444876b4517d441b63955b32ff022b27d99865384900912c55d84f808 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsepol-3.6-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 375249 + checksum: sha256:97e9b7c8e631f7c9e2ee2968f797302d854c0e7b15b5ea46675bdebc19bd5609 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libsigsegv-2.13-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 31522 + checksum: sha256:9e67d1dd24a8ffa2366479c3c15691b530786ccee77e7c93090c192cce1e63b3 + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 87068 + checksum: sha256:cbd7e8b7236d395a591ab0e0c28b8a3d37944d451c008aad4fa4063b9c62e825 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 41941 + checksum: sha256:1aeb1dd5ed52720e71481871150b8feed52d0fed307d38fefb636a2065854107 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libunistring-0.9.10-15.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 519115 + checksum: sha256:8ea5a350f1a29e412100e7b51967f440715f1cf8480a2ccae1a703806953486e + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libuuid-2.37.4-25.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 34812 + checksum: sha256:a642bd23564a8f0fd47617412950767b30a6ecd2afbfed10531383f14c883911 + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libverto-0.3.2-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 25896 + checksum: sha256:54ba79ab0122e9e427efa5b10e9c63dbb28e13c4698711fd5c5bde4e9d794a65 + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 136063 + checksum: sha256:c0bc93eea8ae33a88c33d7f4ac290a7c4fb844e591fb69a55e50dca8df8fbbff + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/libzstd-1.5.5-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 329280 + checksum: sha256:c613b79b53a7d9b00bb33fac7971d412d8f9f9656436cdc8e451e4a805f53ee8 + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 90452 + checksum: sha256:2a7ef3bd2571c62bf75f3bc1a9206f5715ddcb1cb77f561689de458a417e5914 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/m/mpfr-4.1.0-10.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 330392 + checksum: sha256:bf425d261cce15e7c529466472df78fc7fc094dd386c6804a9472e77ff5df3a3 + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 379141 + checksum: sha256:f18294157d19ce7c86c07483b5c1262be4c899dd63b4297e4af15c63b91fd9cf + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/n/nettle-3.10.1-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 592348 + checksum: sha256:c3901a9b78debab9287b1f884124d3f897b461faa385fe37c1e8aafdb54ea4b6 + name: nettle + evr: 3.10.1-1.el9 + sourcerpm: nettle-3.10.1-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/n/npth-1.6-8.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 27410 + checksum: sha256:55296dd542e3e8fb28635157bfe643ae29afa06f5b3a55e48ff5edf6ceedd3c9 + name: npth + evr: 1.6-8.el9 + sourcerpm: npth-1.6-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openldap-2.6.8-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 329998 + checksum: sha256:8476e903e6a0ba08961f26a776bd5ae130771ce83edcbc9c57260a49e654c053 + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 14245 + checksum: sha256:edbc6b74ad3ad2b54a2481da28f468b98b021132391e6691218f7cb0733b790a + 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.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 583707 + checksum: sha256:2961c20585a313054dcb6aaad5f10bdaa3b675839a530d0a79fbe71c942a3c22 + 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.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/o/openssl-libs-3.5.5-4.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 2553841 + checksum: sha256:a4640559ed74203dab11639f1f3906f0f9f54d01fa7eab3210abb7db4209095a + name: openssl-libs + evr: 1:3.5.5-4.el9_8 + sourcerpm: openssl-3.5.5-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 612881 + checksum: sha256:b78c695d8d1e6ff929e298d5b03d55910999c15a2537ac4b03ae5e003a8922f8 + name: p11-kit + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 176360 + checksum: sha256:a44c731c9028bcaff8674aaff78d5f499c7aa5b3e6e8319cb784e5e98dfcd476 + name: p11-kit-trust + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre-8.44-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 208333 + checksum: sha256:a9194f82f80f11599236c3acd4cd6faf0a4fd4aec302f44365847e6222499e65 + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre2-10.40-6.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 243057 + checksum: sha256:fcccf3d6981333ac0ac747ee143dae975381e02025ad2bc53e6aa7e0dc5fafb7 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/p/protobuf-c-1.3.3-13.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 41163 + checksum: sha256:68f122113847f244a3fb8f65c25fcc1cd76ac13f79e35e313c4f46a8f1efd2f0 + name: protobuf-c + evr: 1.3.3-13.el9 + sourcerpm: protobuf-c-1.3.3-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/readline-8.1-4.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 236301 + checksum: sha256:e346c16a0e4b617897f744fe448701cdc90202aecc61d5a40b9ed0986609cb25 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 61713 + checksum: sha256:57066fdf4b83b468f3c729819c10b5380ac897c35967ba1559ba170f43510b6d + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 18353 + checksum: sha256:b4ff8ec5fad8b6960e7cfda7e2a26cfb57e9652ea4173a795540b77d40f1a072 + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sed-4.8-10.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 323929 + checksum: sha256:6a0be5fe8b4968e28c487cf41e824907b48a8af4260fa734bc597982a12cd72d + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-4.9-16.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 1272229 + checksum: sha256:819ad6d1fc2127bc867b0c0bb569b62fc2894bde75e304d90e3145c7b05a810c + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/shadow-utils-subid-4.9-16.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 97312 + checksum: sha256:8371fd2f56f19cf5ea35697cda34fe7adaa2d47fc74daad0432ec42be8859c19 + name: shadow-utils-subid + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 758081 + checksum: sha256:6eac353037fe537e4639455a4ce8595b6b8c345913f84868b2a3288c6b54000a + name: sqlite-libs + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 713252 + checksum: sha256:334c026fbafebded08f9d42b0bdaba9dba60863179c95792c13af4cb1f8b6523 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tar-1.34-11.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 945887 + checksum: sha256:cb2fe4ca6c89e1a9fff648629cc7b9b7f33a7853a8ae74c10baa1d5b731d2447 + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 120233 + checksum: sha256:4e67d1701dc3e5f23191fcbc72e01d48e3287dc32046db9514eb19b902dfc089 + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/os/Packages/z/zlib-1.2.11-40.el9.ppc64le.rpm + repoid: rhel-9-for-ppc64le-baseos-rpms + size: 106130 + checksum: sha256:330a6c1a9e15d4118a4dbff5b5446f054e42a8286fbd85a416b8d30771d6db6f + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm + source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/c/containers-common-5.8-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 180820 + checksum: sha256:1618129f9bd64bc73721761717845ddb071a05f6d6124208fedf013fb3c9bf86 + name: containers-common + evr: 5:5.8-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/c/criu-3.19-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 1397598 + checksum: sha256:935cde45890eee106b48c5a17fcce9a359bbc33e5867c7433012a28fdc095e90 + name: criu + evr: 3.19-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/c/crun-1.27-1.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 908484 + checksum: sha256:a7a4cc5266e6a032b4e69926eed619018084726eb9758c0e75a6617bc7825521 + name: crun + evr: 1.27-1.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/f/fuse-overlayfs-1.16-1.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 127644 + checksum: sha256:8e2ae14c212d0dde5afe0381b609c9bdb9f97bae787ca05a16c3c2c33b54547c + name: fuse-overlayfs + evr: 1.16-1.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/l/libnet-1.2-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 611553 + checksum: sha256:bc2724e7061c48e2038f4f47b433bebccedb4ffc227dc351baaf3d5a52f03b08 + name: libnet + evr: 1.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/l/libslirp-4.4.0-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 128699 + checksum: sha256:5e740382ebf1511fc7c4fa0c1db0bc72fad624329ff9e359cea75cccbed503e4 + name: libslirp + evr: 4.4.0-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/s/skopeo-1.22.2-6.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 10193995 + checksum: sha256:2a36919d2eb3d1a75138b52d343729ce9625b5d2664677630bd8148b7503bca2 + name: skopeo + evr: 2:1.22.2-6.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/s/slirp4netns-1.3.3-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 76019 + checksum: sha256:fcf453e6ffb0f7892fb087d8052f9ceebab6dfbc3797ad6b98c8eee9814e009d + name: slirp4netns + evr: 1.3.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/appstream/source/SRPMS/Packages/y/yajl-2.1.0-25.el9.src.rpm + repoid: rhel-9-for-ppc64le-appstream-source-rpms + size: 101373 + checksum: sha256:08182ae11608d0ad5d9ef01c558a39489f331fe449f9be6df1a91c5e950163f9 + name: yajl + evr: 2.1.0-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c + name: audit + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc + name: bzip2 + evr: 1.0.8-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/coreutils-8.32-41.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 5696745 + checksum: sha256:9129bd65888eb0b6d802d8fe912609726af5d1f6347df8a18b243c426dcbb4db + name: coreutils + evr: 8.32-41.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/f/fuse3-3.10.2-9.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 799367 + checksum: sha256:ddfcd07bcdcc07bdabe0f05b2c5c3bb1d6582af9c6b127632dd74f8ca78d56c9 + name: fuse3 + evr: 3.10.2-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/glib2-2.68.4-19.el9_8.1.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 5095692 + checksum: sha256:e3cd2fb9f1035e6dd681f3413ae02a8d1c1252f7541ba326cf163f0de04a27c1 + name: glib2 + evr: 2.68.4-19.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gnupg2-2.3.3-5.el9_7.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 7623034 + checksum: sha256:88d0f8bfaf376b52de7a56de608af034ceae7a42ca20e32166bc79199cf2234d + name: gnupg2 + evr: 2.3.3-5.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gnutls-3.8.10-4.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 55044099 + checksum: sha256:ee25c18e286f6a5bff89f29ed2aa3c997415ddb606d0382334679a6c93d2b592 + name: gnutls + evr: 3.8.10-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/gpgme-1.15.1-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1737968 + checksum: sha256:ceeb7d42bc8ddf6f09013439bfed4e591411b81293fe3db5e4edb06cbe1879fb + name: gpgme + evr: 1.15.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/kmod-28-11.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 579198 + checksum: sha256:4f6fefbf0d004b23494fe18ccfff2b9151ea887a276c56a6f25ea597a250991c + name: kmod + evr: 28-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 + name: krb5 + evr: 1.21.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libassuan-2.5.5-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 586136 + checksum: sha256:dcc858194f9497ec86960651fa76413a9c731f94423d67298e8e3c0c7a5e7806 + name: libassuan + evr: 2.5.5-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libksba-1.5.1-7.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 677223 + checksum: sha256:6d334a90bcbc270ee691183624e5664fdbe7dbf2d4a47319e6c75860e16abd43 + name: libksba + evr: 1.5.1-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libnl3-3.11.0-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 5068824 + checksum: sha256:13f6ea90f26fbc96e3754584a576c03ca41221fc939164f5a7b6341a6372fd7a + name: libnl3 + evr: 3.11.0-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libseccomp-2.5.2-2.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 653169 + checksum: sha256:43dd0fa2cd26306e2017704075e628bbe675c8731b17848df82f3b59337f1be8 + name: libseccomp + evr: 2.5.2-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-10.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1899881 + checksum: sha256:be5c3a993282ecde81ad5d00dd4e7b2c293e97e47d28709aa0ea7292b80ba610 + name: libtasn1 + evr: 4.16.0-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 + name: mpfr + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/nettle-3.10.1-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 4331292 + checksum: sha256:1f3587f2d59896bc3f427e4b5b9395095189dfb04237c242daa5cc536c7e02a9 + name: nettle + evr: 3.10.1-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/n/npth-1.6-8.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 314570 + checksum: sha256:3d0685cc559f0af453b6b3ace61944dec9b9cb090695e4de5f5579da7b35b750 + name: npth + evr: 1.6-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-3.5.5-4.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 53362961 + checksum: sha256:7f1e764394ad2e1a4915fef182edbaad643dab6b59cbd52679a0962b26cb5d36 + name: openssl + evr: 1:3.5.5-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 28686020 + checksum: sha256:0b14c251cccb4506df185e78ec55cb49e14e7bcd8de19ad3f3246017b2120693 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c + name: p11-kit + evr: 0.26.2-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/p/protobuf-c-1.3.3-13.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 513224 + checksum: sha256:d4d82978c58a2f9ca8e24b953fd9ac74efee41572ec9649c4f2f183cda98b33f + name: protobuf-c + evr: 1.3.3-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 + name: sed + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff + name: shadow-utils + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a + name: sqlite + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/s/systemd-252-67.el9_8.4.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 45009674 + checksum: sha256:e44181d1de2a135a5507b956d18a9eb11951a35aaa9c15dbc0f144ed8313f732 + name: systemd + evr: 252-67.el9_8.4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 + name: tar + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-25.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 6291867 + checksum: sha256:6c788387cde9c0fde5481382f3f8416e3ecbcf09c908b409b6c63358b90a399f + name: util-linux + evr: 2.37.4-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 1168293 + checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 + name: xz + evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/ppc64le/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-ppc64le-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 + module_metadata: [] +- arch: s390x + packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/c/containers-common-5.8-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 170120 + checksum: sha256:68a07c297e84156268ba3950c547acae2789576a1db99f7076edc956f1fe1d2b + name: containers-common + evr: 5:5.8-1.el9 + sourcerpm: containers-common-5.8-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/c/criu-3.19-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 534901 + checksum: sha256:4bda534498f502506bb2eff2fa9fdddefe37e3a20bfdeb70a401f3c662e6d037 + name: criu + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/c/criu-libs-3.19-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 31157 + checksum: sha256:fad9de9210d49010e73da6b23544bb759ee8d314b0200ae095b5b2ba7a96d7bb + name: criu-libs + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/c/crun-1.27-1.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 249046 + checksum: sha256:e39d0fa3168f90739ae335805b3d427207d385ef1d9724defe79a512bbe6feb6 + name: crun + evr: 1.27-1.el9_8 + sourcerpm: crun-1.27-1.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/f/fuse-overlayfs-1.16-1.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 63890 + checksum: sha256:1d084e4bc29c8c7194393b8fcf789fb739c048f9ce50da663c9c625a1ca6c9ca + name: fuse-overlayfs + evr: 1.16-1.el9_7 + sourcerpm: fuse-overlayfs-1.16-1.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/f/fuse3-3.10.2-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 58849 + checksum: sha256:268c49edce99e99b8d4259dc9ef7f77df26112c2f83197bda44d59ccfb9455c0 + name: fuse3 + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/f/fuse3-libs-3.10.2-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 91494 + checksum: sha256:0dabf755fc8193b5d412f96f25693d0d7f782e018c0809ea60aaaa5cfa3bcf3d + name: fuse3-libs + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 216312 + checksum: sha256:fc71db041e9b749a3f8bcbc9f812509625cfaf5d4fa83d37324c4dbdeb00a36e + name: gawk-all-langpacks + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/l/libnet-1.2-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 58422 + checksum: sha256:3e4a676c2278bb717d3ca2136e2af3887169d4f773a3a0fd7da63523dcaa7055 + name: libnet + evr: 1.2-7.el9 + sourcerpm: libnet-1.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/l/libslirp-4.4.0-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 68715 + checksum: sha256:b40578b6b3d8b07bf72e3a6436b2950f5186daf697be465df49bec4258559619 + name: libslirp + evr: 4.4.0-8.el9 + sourcerpm: libslirp-4.4.0-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/s/skopeo-1.22.2-6.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 8169753 + checksum: sha256:794d7b16794cade057d795c5a2021b0def110561c025b17b8ba469299a329f55 + name: skopeo + evr: 2:1.22.2-6.el9_8 + sourcerpm: skopeo-1.22.2-6.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/s/slirp4netns-1.3.3-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 48338 + checksum: sha256:9cc99602e0b6052ff8d2ad145f59d4110bd816c642fc73f2c03b964ce16272cd + name: slirp4netns + evr: 1.3.3-1.el9 + sourcerpm: slirp4netns-1.3.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/os/Packages/y/yajl-2.1.0-25.el9.s390x.rpm + repoid: rhel-9-for-s390x-appstream-rpms + size: 41891 + checksum: sha256:479b9f5c4422e460fa6b3cd8cb076cfec9ee7278e98f2054eeab2eeea546d7e1 + name: yajl + evr: 2.1.0-25.el9 + sourcerpm: yajl-2.1.0-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/alternatives-1.24-2.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 42270 + checksum: sha256:85509a2be050bd9a6e7895fe9c0ab67750a0389d79f62407bbb4bc3ec6262abf + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 128177 + checksum: sha256:83d49abc58cded44c1246d3d6729c9021187334ea46fbbb52792564212702e38 + name: audit-libs + evr: 3.1.5-8.el9 + sourcerpm: audit-3.1.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bash-5.1.8-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1757781 + checksum: sha256:18754c45f7586239508e9c6160ff42999eb326314d3e3adc5d54cc3661912da3 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 47690 + checksum: sha256:5edd9b911134037a29164d87fa9f27b82a1abf79c81c755df93e4ca97537e4fa + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/coreutils-8.32-41.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1206429 + checksum: sha256:ca42d8e48fa5056805089051e473d693c1eeb2b05b0f47ecc00f6a3a4c10496f + name: coreutils + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2112471 + checksum: sha256:3eb7d326a40de65cee2458c471b6b8f8a16218452a6d2194c6b6f2eb1c344bb9 + name: coreutils-common + evr: 8.32-41.el9_8 + sourcerpm: coreutils-8.32-41.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 763345 + checksum: sha256:251bd589f10367ccfe138b453f9fd867fe7c256b3c04a6e5ad34c791e0add57b + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/filesystem-3.16-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 5003897 + checksum: sha256:80e6764c9041b5abfb955f5b86b6c73f0305eb54b92ac7a11537729047470167 + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/findutils-4.8.0-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 562344 + checksum: sha256:58a784cd8f94da5182ab13c9696c7e5410b0452b20c524013040d234517e931e + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/f/fuse-common-3.10.2-9.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 8730 + checksum: sha256:c5f5c7c16721d91391b87ea2aecba0a5c88bab353b4e49fc95b84a931ecd7297 + name: fuse-common + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gawk-5.1.0-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1029188 + checksum: sha256:d34fd3f586240f43f71bc74824ae513cba2e4a6812f0ebbd101122e7e99bafe8 + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 60437 + checksum: sha256:675a6555f4e72fcfcbdd28581b0f285173649bce266c5cb87f84c22c16c0824b + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glib2-2.68.4-19.el9_8.1.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2722519 + checksum: sha256:fbe028e47fa0f737940c0a0287d53916bcb345b9f81f427d8f14da8cd83e859e + name: glib2 + evr: 2.68.4-19.el9_8.1 + sourcerpm: glib2-2.68.4-19.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1792788 + checksum: sha256:05e5212d1e2d60dddd0fb1d9977667ce81efd1720903096222cd2dc00e3d7b1d + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 326626 + checksum: sha256:229c6ee57b67b984aba4885e3cc88eb5f465e2e7771e2c3a09e13dec4498e101 + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1754366 + checksum: sha256:f8a3107461f8ce0fbbdf181e73d4a558d13479cf09814b2b6d0182819bd2d757 + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 31817 + checksum: sha256:88417d0b76b8fa116ccac46a1b9c522056108fec319c659d540dbe5f8fb56b6f + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gmp-6.2.0-13.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 296399 + checksum: sha256:5cb3d34e852eb7d37efcf92fecdcedd1ab9c39540ecaa1ae1e535c1d111abd09 + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gnupg2-2.3.3-5.el9_7.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2581643 + checksum: sha256:4a2635adb8f4462f0ef9396ef3ccde9b700701d23f3cb4a8e6f23a4ea94e7a50 + name: gnupg2 + evr: 2.3.3-5.el9_7 + sourcerpm: gnupg2-2.3.3-5.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gnutls-3.8.10-4.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1255373 + checksum: sha256:09d88fcfa048b41b8d6b5ccb5a8b299e935e1882f9c375db6713fd1ea4e9f970 + name: gnutls + evr: 3.8.10-4.el9_8 + sourcerpm: gnutls-3.8.10-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/gpgme-1.15.1-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 209562 + checksum: sha256:37d1c719e37999a649c07e2d3b90677c902d8ff28b137f6a22cce8bbc702bf22 + name: gpgme + evr: 1.15.1-6.el9 + sourcerpm: gpgme-1.15.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/g/grep-3.6-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 280207 + checksum: sha256:282ef2512b0c14223fa788ecbc863895bc13e191d69f835fb9bba8aa37ce61a5 + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 34136 + checksum: sha256:1bde6151bc8e8f34a36b853301245e153190867909db7f5a3261dfb50a95dac7 + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/kmod-28-11.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 126577 + checksum: sha256:61ec655be0f69f6e52ed6f2d3913b33bdf966f95cbb3c6c752acd9bb40e805d5 + name: kmod + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 772565 + checksum: sha256:cb487b335eeba5bad4d090a56bed7d0d173392fd6aab85a5471792a01eb3c4ef + name: krb5-libs + evr: 1.21.1-10.el9_8 + sourcerpm: krb5-1.21.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libacl-2.3.1-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 24699 + checksum: sha256:f60b315d07f772b787b49e01a0ea12cbcdb635125fbc554eb7b9dc0d7e86f462 + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libassuan-2.5.5-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 70075 + checksum: sha256:197fc6030467fbf104f595f3d73552d07efe4e1549004847dd0868310939a358 + name: libassuan + evr: 2.5.5-3.el9 + sourcerpm: libassuan-2.5.5-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libattr-2.5.1-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 20575 + checksum: sha256:4013df08b49661a8592c2c57428f8040f8e2397379dfc02fa9a125cbf8de44c6 + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libblkid-2.37.4-25.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 111331 + checksum: sha256:ebdf736d194e8a6f099317aaf2210fd2a7e3f74a4a0db69c614283775afc9abd + name: libblkid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 77818 + checksum: sha256:81145d3e7f8b833994c16e56a3693dac4f0f11505fc85129964c3cfd20a36d45 + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 36348 + checksum: sha256:b41f491e2bf52e3f453219fd79e3ab33378b9c1e608b082e6d453b3ec7dc8d6b + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 26687 + checksum: sha256:8d3c7141a1fc45e35d781dacf595c1ddf98335d5e7c06862e288597fd51e6ca3 + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 264391 + checksum: sha256:0abf1b13779d3aea3820b2ab76ce687f1f9675e531fb13bfff89ff97a288ba6c + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libffi-3.4.2-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 37310 + checksum: sha256:e307e5bbdd2dcc9976ee39433c7d23d5063fbac159b2e49e98e34de9f5497cc6 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgcc-11.5.0-14.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 69161 + checksum: sha256:c6dc3253a262d7cc09489fd6b2c2c00af5af0a545efdd45d55a8ebcf6c4d5e36 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 469635 + checksum: sha256:ad73b3b1163668089b5768b0887561960dd3eae21b6d05f3a09fe1dca42920a3 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libgpg-error-1.42-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 224395 + checksum: sha256:edee8e59f5786ffa5dd0397b512277cd5caa3ee221a9728e6f972fc531b6709e + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libidn2-2.3.0-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 107023 + checksum: sha256:7d534eadb4f019135e9e52ca8c96d2c7584b89cb691814421a0cfbc87356e2c4 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libksba-1.5.1-7.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 155899 + checksum: sha256:9d109a95612354d20cc635350180a8edebd1288ebcb433be7b5466c1769ec130 + name: libksba + evr: 1.5.1-7.el9 + sourcerpm: libksba-1.5.1-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libmount-2.37.4-25.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 139693 + checksum: sha256:e884a9ddbaabb049ac1f642b71f4f16ac2b040c0780b021a301ca08be6395fe8 + name: libmount + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libnl3-3.11.0-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 361754 + checksum: sha256:70386e84521e5d56acdbc69f598b42de07b5a2b62756f3be1a7a90e82bf23502 + name: libnl3 + evr: 3.11.0-1.el9 + sourcerpm: libnl3-3.11.0-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 75719 + checksum: sha256:0573152ee45cdea6c247821427e5211bd5b221889e99a3343e798df5e9b11f60 + name: libseccomp + evr: 2.5.2-2.el9 + sourcerpm: libseccomp-2.5.2-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libselinux-3.6-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 89763 + checksum: sha256:7c69021bdd032f8b86ea6428b7c92350b2e0e20b4be4953784d986b2f269be21 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 120733 + checksum: sha256:1b7217f14c6ffbd10a10e00a84563002b9d38d02138cb23f21b168bbeea197e9 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsepol-3.6-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 319973 + checksum: sha256:e07481ed626cb2c83c24c9cbf10299e1a2e23e07c198c509cb98a03609b3b745 + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libsigsegv-2.13-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 30531 + checksum: sha256:b6dffdaa197220f401417c607cdd659fdffaf1a5a07451e96eb6727f067539ee + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 81089 + checksum: sha256:af302cefa6d25b679f160d87f363b7fdf70756465e7ee8b8744fcef23a7d9da5 + name: libtasn1 + evr: 4.16.0-10.el9_8 + sourcerpm: libtasn1-4.16.0-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 38223 + checksum: sha256:eb4af423c05fa567c3886feb8598da24a0c31de2010aa92ea21b871fbb9f8e31 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libunistring-0.9.10-15.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 504493 + checksum: sha256:66cbdef59dc780f9d93d9c32bb4aeab799fbe0cd477b9052cd5e6543b6668f19 + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libuuid-2.37.4-25.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 32770 + checksum: sha256:52ea83c0d75808211e81faef2081a3b86b910a352689eb629401edea7ef84f88 + name: libuuid + evr: 2.37.4-25.el9 + sourcerpm: util-linux-2.37.4-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libverto-0.3.2-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 24610 + checksum: sha256:57e49939ac0d2c34764d60a7ea12391644da135dfb8d23231a75eff334bde1f2 + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 125532 + checksum: sha256:c5b89459884f858b3527c879cda2b0576fa27b7e1e5005a98f2cab573291f979 + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/libzstd-1.5.5-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 283786 + checksum: sha256:168d08a885a564418b39c075756bbe77fd2f06ad501d7a61b7ac72cc33152e93 + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 71491 + checksum: sha256:c03955837786dadb6b988a7554f30e03e9a536f322921934a1f590db8a142c1d + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/m/mpfr-4.1.0-10.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 262427 + checksum: sha256:9c3a1a78261c65e7f9fb629464a9a7637cde27ff0015d622510f2754f5ef5f0d + name: mpfr + evr: 4.1.0-10.el9 + sourcerpm: mpfr-4.1.0-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 328527 + checksum: sha256:605ca8c9bd97831468dc77e14a6256e04284ec3df0cd7c1da114bfa8336a5e03 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/n/nettle-3.10.1-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 556359 + checksum: sha256:861d2681428562976a2845010fc86a23ccc68d7183b9ce02588573d68d005eab + name: nettle + evr: 3.10.1-1.el9 + sourcerpm: nettle-3.10.1-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/n/npth-1.6-8.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 27064 + checksum: sha256:70eca966993d2d26eb53c21a7c3298b4fb48cf4cd19cbbf3c06c5be3bcbcd8ec + name: npth + evr: 1.6-8.el9 + sourcerpm: npth-1.6-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openldap-2.6.8-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 291034 + checksum: sha256:feb41164b97dac914b237d69095f2bf4f120b4518c0909e66d7d3e41a0e229dc + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 14236 + checksum: sha256:54be1c06222de4835a90b6c56cdf8310891726a8a362c5d027772d91770df142 + 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.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 319647 + checksum: sha256:3a865d8d32325c3ad20c65b5e821e0847d100780dd7e6447f9c204be5a36ef9f + 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.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/o/openssl-libs-3.5.5-4.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 2027857 + checksum: sha256:6adfcc39fca00497f5623ce672308dfc33d938f909f866b68c86710055d6f47b + name: openssl-libs + evr: 1:3.5.5-4.el9_8 + sourcerpm: openssl-3.5.5-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 621949 + checksum: sha256:a1834007eda45150d6d3e49efdd5ace430a148005365ae00affe4e6a09b8bef4 + name: p11-kit + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 156700 + checksum: sha256:de6e5b8084f32d5ee4256cc510e64306e1c8a55dd8d245625723740c61f66149 + name: p11-kit-trust + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre-8.44-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 121477 + checksum: sha256:f2c83dfe2db77d9cb084f7a19140ea772d61c1dcb60d84f6928541deb811ffb6 + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre2-10.40-6.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 224385 + checksum: sha256:b7166437e0179c46304403ddb126fd8a3d6c15d29b33a395b951e54b67697559 + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/p/protobuf-c-1.3.3-13.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 38450 + checksum: sha256:0ba1d0bcbc80c2dc53fdac3eecf2606aab133ca22ba7cf857d720c78cb120782 + name: protobuf-c + evr: 1.3.3-13.el9 + sourcerpm: protobuf-c-1.3.3-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/readline-8.1-4.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 219915 + checksum: sha256:82eb7921f4285a5e73e8ffb73d399637784d3059e8cda6c8b92c2522e81f6a0d + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 61670 + checksum: sha256:7d77e822b296f6c46773b121e209971765f3c42199bc1cb0bf7d7986e9deb8eb + name: redhat-release + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 18345 + checksum: sha256:eae1fdd2373b8d8dc45a1a69e03392bc01726d257ad9d0e4be24905705b1b0eb + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sed-4.8-10.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 317430 + checksum: sha256:f878122e6b29fdc633e1d2c068ff0e481bb252f227a29068254ec111427ca242 + name: sed + evr: 4.8-10.el9 + sourcerpm: sed-4.8-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-4.9-16.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 1242705 + checksum: sha256:9e7bed9b9581ee639d57f0eb48644aed6834c70120ffc0c5e7308ebd0c1c93e1 + name: shadow-utils + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/shadow-utils-subid-4.9-16.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 85359 + checksum: sha256:20a302a8f9afc6501d4c745aaa6d0ca01d31e06758d5f076c358b89a75279f11 + name: shadow-utils-subid + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 652115 + checksum: sha256:d773b3c1eac55a53efd669c87906804b31cf065a8f9885e6370b739c8f213f9d + name: sqlite-libs + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 641241 + checksum: sha256:d2bf594df308844dcf204aba2c4341249cdc24d13654169755364946d8ec52f0 + name: systemd-libs + evr: 252-67.el9_8.4 + sourcerpm: systemd-252-67.el9_8.4.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tar-1.34-11.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 907745 + checksum: sha256:2eee88e1c470b033bd44432f4ed5b1a41ffc7132ebe51f8ce12fa9268314e841 + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 96039 + checksum: sha256:e2418fcfafbaa9f6dc6db42ebd4da74a6b91bddf59e1e2a1e1c74cf5d04f14be + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/os/Packages/z/zlib-1.2.11-40.el9.s390x.rpm + repoid: rhel-9-for-s390x-baseos-rpms + size: 100230 + checksum: sha256:451ee05b1bb32a5d5da936d9c4da4b26e99ba8787e8e9f22e2c9a9ceca931507 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm + source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/c/containers-common-5.8-1.el9.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 180820 + checksum: sha256:1618129f9bd64bc73721761717845ddb071a05f6d6124208fedf013fb3c9bf86 + name: containers-common + evr: 5:5.8-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/c/criu-3.19-3.el9.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 1397598 + checksum: sha256:935cde45890eee106b48c5a17fcce9a359bbc33e5867c7433012a28fdc095e90 + name: criu + evr: 3.19-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/c/crun-1.27-1.el9_8.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 908484 + checksum: sha256:a7a4cc5266e6a032b4e69926eed619018084726eb9758c0e75a6617bc7825521 + name: crun + evr: 1.27-1.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/f/fuse-overlayfs-1.16-1.el9_7.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 127644 + checksum: sha256:8e2ae14c212d0dde5afe0381b609c9bdb9f97bae787ca05a16c3c2c33b54547c + name: fuse-overlayfs + evr: 1.16-1.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/l/libnet-1.2-7.el9.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 611553 + checksum: sha256:bc2724e7061c48e2038f4f47b433bebccedb4ffc227dc351baaf3d5a52f03b08 + name: libnet + evr: 1.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/l/libslirp-4.4.0-8.el9.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 128699 + checksum: sha256:5e740382ebf1511fc7c4fa0c1db0bc72fad624329ff9e359cea75cccbed503e4 + name: libslirp + evr: 4.4.0-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/s/skopeo-1.22.2-6.el9_8.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 10193995 + checksum: sha256:2a36919d2eb3d1a75138b52d343729ce9625b5d2664677630bd8148b7503bca2 + name: skopeo + evr: 2:1.22.2-6.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/s/slirp4netns-1.3.3-1.el9.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 76019 + checksum: sha256:fcf453e6ffb0f7892fb087d8052f9ceebab6dfbc3797ad6b98c8eee9814e009d + name: slirp4netns + evr: 1.3.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/appstream/source/SRPMS/Packages/y/yajl-2.1.0-25.el9.src.rpm + repoid: rhel-9-for-s390x-appstream-source-rpms + size: 101373 + checksum: sha256:08182ae11608d0ad5d9ef01c558a39489f331fe449f9be6df1a91c5e950163f9 + name: yajl + evr: 2.1.0-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c + name: audit + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc + name: bzip2 + evr: 1.0.8-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/coreutils-8.32-41.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 5696745 + checksum: sha256:9129bd65888eb0b6d802d8fe912609726af5d1f6347df8a18b243c426dcbb4db + name: coreutils + evr: 8.32-41.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/f/fuse3-3.10.2-9.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 799367 + checksum: sha256:ddfcd07bcdcc07bdabe0f05b2c5c3bb1d6582af9c6b127632dd74f8ca78d56c9 + name: fuse3 + evr: 3.10.2-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/glib2-2.68.4-19.el9_8.1.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 5095692 + checksum: sha256:e3cd2fb9f1035e6dd681f3413ae02a8d1c1252f7541ba326cf163f0de04a27c1 + name: glib2 + evr: 2.68.4-19.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gnupg2-2.3.3-5.el9_7.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 7623034 + checksum: sha256:88d0f8bfaf376b52de7a56de608af034ceae7a42ca20e32166bc79199cf2234d + name: gnupg2 + evr: 2.3.3-5.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gnutls-3.8.10-4.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 55044099 + checksum: sha256:ee25c18e286f6a5bff89f29ed2aa3c997415ddb606d0382334679a6c93d2b592 + name: gnutls + evr: 3.8.10-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/gpgme-1.15.1-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1737968 + checksum: sha256:ceeb7d42bc8ddf6f09013439bfed4e591411b81293fe3db5e4edb06cbe1879fb + name: gpgme + evr: 1.15.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/kmod-28-11.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 579198 + checksum: sha256:4f6fefbf0d004b23494fe18ccfff2b9151ea887a276c56a6f25ea597a250991c + name: kmod + evr: 28-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 + name: krb5 + evr: 1.21.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libassuan-2.5.5-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 586136 + checksum: sha256:dcc858194f9497ec86960651fa76413a9c731f94423d67298e8e3c0c7a5e7806 + name: libassuan + evr: 2.5.5-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libksba-1.5.1-7.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 677223 + checksum: sha256:6d334a90bcbc270ee691183624e5664fdbe7dbf2d4a47319e6c75860e16abd43 + name: libksba + evr: 1.5.1-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libnl3-3.11.0-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 5068824 + checksum: sha256:13f6ea90f26fbc96e3754584a576c03ca41221fc939164f5a7b6341a6372fd7a + name: libnl3 + evr: 3.11.0-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libseccomp-2.5.2-2.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 653169 + checksum: sha256:43dd0fa2cd26306e2017704075e628bbe675c8731b17848df82f3b59337f1be8 + name: libseccomp + evr: 2.5.2-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-10.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1899881 + checksum: sha256:be5c3a993282ecde81ad5d00dd4e7b2c293e97e47d28709aa0ea7292b80ba610 + name: libtasn1 + evr: 4.16.0-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 + name: mpfr + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/nettle-3.10.1-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 4331292 + checksum: sha256:1f3587f2d59896bc3f427e4b5b9395095189dfb04237c242daa5cc536c7e02a9 + name: nettle + evr: 3.10.1-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/n/npth-1.6-8.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 314570 + checksum: sha256:3d0685cc559f0af453b6b3ace61944dec9b9cb090695e4de5f5579da7b35b750 + name: npth + evr: 1.6-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-3.5.5-4.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 53362961 + checksum: sha256:7f1e764394ad2e1a4915fef182edbaad643dab6b59cbd52679a0962b26cb5d36 + name: openssl + evr: 1:3.5.5-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 28686020 + checksum: sha256:0b14c251cccb4506df185e78ec55cb49e14e7bcd8de19ad3f3246017b2120693 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c + name: p11-kit + evr: 0.26.2-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/p/protobuf-c-1.3.3-13.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 513224 + checksum: sha256:d4d82978c58a2f9ca8e24b953fd9ac74efee41572ec9649c4f2f183cda98b33f + name: protobuf-c + evr: 1.3.3-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 + name: sed + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff + name: shadow-utils + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a + name: sqlite + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/s/systemd-252-67.el9_8.4.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 45009674 + checksum: sha256:e44181d1de2a135a5507b956d18a9eb11951a35aaa9c15dbc0f144ed8313f732 + name: systemd + evr: 252-67.el9_8.4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 + name: tar + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-25.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 6291867 + checksum: sha256:6c788387cde9c0fde5481382f3f8416e3ecbcf09c908b409b6c63358b90a399f + name: util-linux + evr: 2.37.4-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 1168293 + checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 + name: xz + evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/s390x/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-s390x-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 + module_metadata: [] +- arch: x86_64 + packages: + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/c/containers-common-5.8-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 170139 + checksum: sha256:6db3b80aff7a892ea57ce84c95d0cd62bd70f43b1824009bc9a2ba47bca629d2 + name: containers-common + evr: 5:5.8-1.el9 + sourcerpm: containers-common-5.8-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/c/criu-3.19-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 569988 + checksum: sha256:991367e0ca6f3b1672f98ffccc32d43c2b959bf8b82562b79e9f9ff5be23642b + name: criu + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/c/criu-libs-3.19-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 31913 + checksum: sha256:37144e6c13da6a622fb1f15d0ff3a36fc359477db916a157fefb5d1934881614 + name: criu-libs + evr: 3.19-3.el9 + sourcerpm: criu-3.19-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/c/crun-1.27-1.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 268116 + checksum: sha256:0fc29837716c71995f2e7ffe6d11d937260c0eea9fa07beae3d2671cb7363ebd + name: crun + evr: 1.27-1.el9_8 + sourcerpm: crun-1.27-1.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/f/fuse-overlayfs-1.16-1.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 67299 + checksum: sha256:e5069c6983d99bbd995748e9cd50712b8daaef07750d270c65246278b71fc37a + name: fuse-overlayfs + evr: 1.16-1.el9_7 + sourcerpm: fuse-overlayfs-1.16-1.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/f/fuse3-3.10.2-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 58706 + checksum: sha256:4674b4ee6150c8f8be01a028a471c209a6be7c0cf78e9450cf28fb01eaed9ea2 + name: fuse3 + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/f/fuse3-libs-3.10.2-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 95573 + checksum: sha256:945e1d95edbce9c7dba52e9317d4564381efa5a1ba48d4bd49a58c85e47cd717 + name: fuse3-libs + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/g/gawk-all-langpacks-5.1.0-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/l/libnet-1.2-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 61278 + checksum: sha256:738b9a7ab78c149487e349d90c384b59031d5763ba687a6b58a4f853671af86b + name: libnet + evr: 1.2-7.el9 + sourcerpm: libnet-1.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/l/libslirp-4.4.0-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 71992 + checksum: sha256:9bd269ec50504f997683e963481f870bb937c3cfdb54a057e9acca67bf2b7631 + name: libslirp + evr: 4.4.0-8.el9 + sourcerpm: libslirp-4.4.0-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/s/skopeo-1.22.2-6.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 8615114 + checksum: sha256:954c605d231d1ba23425745b6533f7558fe5b737a50bce95a162eddf5da34008 + name: skopeo + evr: 2:1.22.2-6.el9_8 + sourcerpm: skopeo-1.22.2-6.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/s/slirp4netns-1.3.3-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 48562 + checksum: sha256:ba91e6e0d70be19e5f9a44e0a8f6791c49b685b42a1ad2dc64ec50e4800c7d1a + name: slirp4netns + evr: 1.3.3-1.el9 + sourcerpm: slirp4netns-1.3.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/os/Packages/y/yajl-2.1.0-25.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-appstream-rpms + size: 42487 + checksum: sha256:f7503f34d5095303db5c57c70c5edb890dab7d0bba5920f3dcc44d7835449555 + name: yajl + evr: 2.1.0-25.el9 + sourcerpm: yajl-2.1.0-25.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/alternatives-1.24-2.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 42874 + checksum: sha256:1c520b9bf7b592d936bb347a5107702e51678e160b88ecfbba6a30e35e47d24e + name: alternatives + evr: 1.24-2.el9 + sourcerpm: chkconfig-1.24-2.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/a/audit-libs-3.1.5-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/basesystem-11-13.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 8229 + checksum: sha256:f498b0813fa1a825d550e8e3a9e42255eabfa18e6fc96adfc6cc8fa7e16dd513 + name: basesystem + evr: 11-13.el9 + sourcerpm: basesystem-11-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bash-5.1.8-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1769540 + checksum: sha256:d3adf8b09aa0bf935c67aa12444e0ee02f70a82c2682bfb2b02bda0a989bb806 + name: bash + evr: 5.1.8-9.el9 + sourcerpm: bash-5.1.8-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/b/bzip2-libs-1.0.8-11.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 46333 + checksum: sha256:948f763ed17672b8dd83356541e27a53ce97c6df38339c4416a188d452ca4d1e + name: bzip2-libs + evr: 1.0.8-11.el9 + sourcerpm: bzip2-1.0.8-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1072208 + checksum: sha256:0554bf65d573950e7d550a07bf7d0b3def85ca3b45a7fbde4cce7cadd9a476a7 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + sourcerpm: ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/coreutils-8.32-41.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/coreutils-common-8.32-41.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 98707 + checksum: sha256:a9ad86b8df75a7c9c29c6f6dd4b8f78cfa1f42b492eff0d11b82c457d37a7f9f + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + sourcerpm: crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/c/cyrus-sasl-lib-2.1.27-22.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 786202 + checksum: sha256:a85ebdee7a9a49990f87e4709c368212e6a54ecf18c88a3dd54d823a82443898 + name: cyrus-sasl-lib + evr: 2.1.27-22.el9 + sourcerpm: cyrus-sasl-2.1.27-22.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/filesystem-3.16-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 5003807 + checksum: sha256:9567592e6e32a9ebd45584cc4feb5d00812f143fcb2d8cd8b1d95108f4f66a2d + name: filesystem + evr: 3.16-5.el9 + sourcerpm: filesystem-3.16-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/findutils-4.8.0-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 563531 + checksum: sha256:a6328afea0a11647b7fb5c48436f0af6c795407bac0650676d3196dd47070de6 + name: findutils + evr: 1:4.8.0-7.el9 + sourcerpm: findutils-4.8.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/f/fuse-common-3.10.2-9.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 8750 + checksum: sha256:548265cbee787fa659bc79c07e15a12007f39eb70e905bf660ec488f0bb8820f + name: fuse-common + evr: 3.10.2-9.el9 + sourcerpm: fuse3-3.10.2-9.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gawk-5.1.0-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1045534 + checksum: sha256:99fda6725a2c668bae29fbab74d1b347e074f4e8c8ed18d656cb928fb6fc92b7 + name: gawk + evr: 5.1.0-6.el9 + sourcerpm: gawk-5.1.0-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gdbm-libs-1.23-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 60152 + checksum: sha256:c8b8346a98d921206666ce740a3647a52ad7a87c2d01d73166165b3e9a789a6c + name: gdbm-libs + evr: 1:1.23-1.el9 + sourcerpm: gdbm-1.23-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glib2-2.68.4-19.el9_8.1.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2774353 + checksum: sha256:ea4316aa24842db4d87d8947b745f42f4d0713afc0fe78de3712b8149fb98073 + name: glib2 + evr: 2.68.4-19.el9_8.1 + sourcerpm: glib2-2.68.4-19.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2084453 + checksum: sha256:39e15c1eb3181970e467e4baeaf31673120890b7bb9dd97b311f1c1128b76d16 + name: glibc + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-common-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 322519 + checksum: sha256:f63ee066c0942641ea683e499087a0e9b4fa80645387871ebef264bd51640567 + name: glibc-common + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-gconv-extra-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1765629 + checksum: sha256:8efaf43e7d522733399caa5df7cdaca13a3549c56ea918053b11fb3d898c0bab + name: glibc-gconv-extra + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/glibc-minimal-langpack-2.34-270.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 31845 + checksum: sha256:1ea08534d2eafe91a9d549277ab1682913f0407c1c4e3e0d89626975aca35fc8 + name: glibc-minimal-langpack + evr: 2.34-270.el9_8 + sourcerpm: glibc-2.34-270.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gmp-6.2.0-13.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 326840 + checksum: sha256:d4529445e30b7eb9a8225b0539f70d26d585d7fe306296f948ea73114d1c171f + name: gmp + evr: 1:6.2.0-13.el9 + sourcerpm: gmp-6.2.0-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gnupg2-2.3.3-5.el9_7.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2643700 + checksum: sha256:03ff58d6f0fd39f3575c830610488d1efd9405ddf8410f78deffdd89f932ecb4 + name: gnupg2 + evr: 2.3.3-5.el9_7 + sourcerpm: gnupg2-2.3.3-5.el9_7.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gnutls-3.8.10-4.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 1453051 + checksum: sha256:fa0bee169195f1aa26c58bd62649787dccbdcd255f8c6a90473b0ab3be4a531e + name: gnutls + evr: 3.8.10-4.el9_8 + sourcerpm: gnutls-3.8.10-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/gpgme-1.15.1-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 215857 + checksum: sha256:44b4ebb0b3cc5a733d477b684082c23d8b4230953f192113353a6aa664e83624 + name: gpgme + evr: 1.15.1-6.el9 + sourcerpm: gpgme-1.15.1-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/g/grep-3.6-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 279174 + checksum: sha256:5556895ff1817066ca71b50785615e944b0fcc7e1c94c983087c7c691819623d + name: grep + evr: 3.6-5.el9 + sourcerpm: grep-3.6-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/keyutils-libs-1.6.3-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 34363 + checksum: sha256:96d75824948387a884d206865db534cd3d46f32422efcb020c20060b59edb27c + name: keyutils-libs + evr: 1.6.3-1.el9 + sourcerpm: keyutils-1.6.3-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/kmod-28-11.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 127775 + checksum: sha256:f85ac587f3c6abab55c30986b5f4af790c3fa2f2a413057db8e9250c79825b5d + name: kmod + evr: 28-11.el9 + sourcerpm: kmod-28-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/k/krb5-libs-1.21.1-10.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libacl-2.3.1-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 24627 + checksum: sha256:dc50fd67447efd6367395b3e1517bfc1fa958652a75ce7619358812a8f6c80aa + name: libacl + evr: 2.3.1-4.el9 + sourcerpm: acl-2.3.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libassuan-2.5.5-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 72450 + checksum: sha256:9ba40981a8ea3d51a689a41c2d404bc8d127c6788bc3ae84cefcd5bd3e49cf66 + name: libassuan + evr: 2.5.5-3.el9 + sourcerpm: libassuan-2.5.5-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libattr-2.5.1-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 20786 + checksum: sha256:6519f028915fbd7ee0474f0bf4e98e35f04b5d0cf7be9f66c0cb9eafac0b8c5a + name: libattr + evr: 2.5.1-3.el9 + sourcerpm: attr-2.5.1-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libblkid-2.37.4-25.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-2.48-10.el9_8.1.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 78928 + checksum: sha256:d4805439b10fa551b7535cf30ca28d4d5862132c9c429b2b31221bea7f43263a + name: libcap + evr: 2.48-10.el9_8.1 + sourcerpm: libcap-2.48-10.el9_8.1.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcap-ng-0.8.2-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 36752 + checksum: sha256:ebddfc188d1ddbb0d6a238583cbc02dcb9fc0bd063a850b22d48980899976628 + name: libcap-ng + evr: 0.8.2-7.el9 + sourcerpm: libcap-ng-0.8.2-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libcom_err-1.46.5-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 26980 + checksum: sha256:b7593ee2d841c69573d8ed553b7416ef727b2c77c0473416a5dadf4b567bf547 + name: libcom_err + evr: 1.46.5-8.el9 + sourcerpm: e2fsprogs-1.46.5-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libevent-2.1.12-8.el9_4.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 272588 + checksum: sha256:072426910a254b797bbe977b3397ab90513911d020580a0135179f700a48df44 + name: libevent + evr: 2.1.12-8.el9_4 + sourcerpm: libevent-2.1.12-8.el9_4.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libffi-3.4.2-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 40619 + checksum: sha256:dde0012a94c6f3825e605b095b15767d89c2b87a5da097348310d7e87721c645 + name: libffi + evr: 3.4.2-8.el9 + sourcerpm: libffi-3.4.2-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgcc-11.5.0-14.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 87280 + checksum: sha256:77c66827ffc14df2f43612b26128b1fd58d5c9597d4d4e564aa239b161272872 + name: libgcc + evr: 11.5.0-14.el9 + sourcerpm: gcc-11.5.0-14.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgcrypt-1.10.0-11.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 522581 + checksum: sha256:9d5a5a4292a5a345143b632c2764ad8e7b095413f78f5693d29c2ea5e7d37119 + name: libgcrypt + evr: 1.10.0-11.el9 + sourcerpm: libgcrypt-1.10.0-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libgpg-error-1.42-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 225603 + checksum: sha256:8248e20d7a253aa9c0dc7dc3d56b42e1def4fd5753ce8e8b9e980aa664fc9068 + name: libgpg-error + evr: 1.42-5.el9 + sourcerpm: libgpg-error-1.42-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libidn2-2.3.0-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 107099 + checksum: sha256:055f4ce6b721be7138dc2e45a6586412c65508acea3fe385a2655c129fe264f9 + name: libidn2 + evr: 2.3.0-7.el9 + sourcerpm: libidn2-2.3.0-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libksba-1.5.1-7.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 160847 + checksum: sha256:0a6410250b9cbb346a33a5dec3a5ae83ebb7a32bf953b036c2d244e6d40d75a0 + name: libksba + evr: 1.5.1-7.el9 + sourcerpm: libksba-1.5.1-7.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libmount-2.37.4-25.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libnl3-3.11.0-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 376137 + checksum: sha256:89728a253a5bf1c8e01c40573f1283d40188e003bdbd4ac565f8b0f05bced55c + name: libnl3 + evr: 3.11.0-1.el9 + sourcerpm: libnl3-3.11.0-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libseccomp-2.5.2-2.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libselinux-3.6-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 89722 + checksum: sha256:ce1cc63a7212c39f5f2a35f719ee38d6418cf081ea78c9317f388d9f41e4a627 + name: libselinux + evr: 3.6-3.el9 + sourcerpm: libselinux-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsemanage-3.6-5.el9_6.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 123449 + checksum: sha256:7ac29f46714cd762f18a52e9807fd1766b0cf9e0388aa3d9befaabf8785a01e3 + name: libsemanage + evr: 3.6-5.el9_6 + sourcerpm: libsemanage-3.6-5.el9_6.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsepol-3.6-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 338766 + checksum: sha256:b98984b2bf42203964cc979ac157df090c63b89a0f5c6560ede01965531c8ffd + name: libsepol + evr: 3.6-3.el9 + sourcerpm: libsepol-3.6-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libsigsegv-2.13-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 30681 + checksum: sha256:24005c62017797b612d047a2af83a218633b32302a787fabd22e52230db6adc1 + name: libsigsegv + evr: 2.13-4.el9 + sourcerpm: libsigsegv-2.13-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtasn1-4.16.0-10.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libtool-ltdl-2.4.6-46.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 38043 + checksum: sha256:44f7303229bdb4c2975f9829e3dd13dc7984e2cb53ef0f85baf894b39f605c38 + name: libtool-ltdl + evr: 2.4.6-46.el9 + sourcerpm: libtool-2.4.6-46.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libunistring-0.9.10-15.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 510558 + checksum: sha256:6477fb3c3285158f676360e228057e13dc6e983f453c7c74ed4ab140357f9a0d + name: libunistring + evr: 0.9.10-15.el9 + sourcerpm: libunistring-0.9.10-15.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libuuid-2.37.4-25.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libverto-0.3.2-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 25042 + checksum: sha256:7008029afd91af33ca17a22e6eb4ba792fd9b32bee8fb613c79c1527fa6f589a + name: libverto + evr: 0.3.2-3.el9 + sourcerpm: libverto-0.3.2-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libxcrypt-4.4.18-3.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 122599 + checksum: sha256:a50bb26a28ee7e6379c86b5b91285299b71569fa87ea968d800a56090b7a179d + name: libxcrypt + evr: 4.4.18-3.el9 + sourcerpm: libxcrypt-4.4.18-3.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/libzstd-1.5.5-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 304135 + checksum: sha256:d8a149f0d8f217126642cc4b40199d631b940f7d227191cc2179f3158fd47f9e + name: libzstd + evr: 1.5.5-1.el9 + sourcerpm: zstd-1.5.5-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/l/lz4-libs-1.9.3-5.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 70922 + checksum: sha256:9658da838021711f687cf283368664984bfb1c8b9176897d7d477a724a11a731 + name: lz4-libs + evr: 1.9.3-5.el9 + sourcerpm: lz4-1.9.3-5.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/m/mpfr-4.1.0-10.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/n/ncurses-base-6.2-12.20210508.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 97840 + checksum: sha256:d62dfd41f9688efa2cf1ceedb96084c63e297fbdcfd1e72bc6757c730092b60c + name: ncurses-base + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/n/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 336270 + checksum: sha256:f3e1f8e59c7116278aa19b6705a1443f6307d4d6fbdde75a23d2f5d60636cb16 + name: ncurses-libs + evr: 6.2-12.20210508.el9 + sourcerpm: ncurses-6.2-12.20210508.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/n/nettle-3.10.1-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 581160 + checksum: sha256:96c048fba3e8dd11493aaf317349ad040f607740facd11cc7b04fbca507a46ce + name: nettle + evr: 3.10.1-1.el9 + sourcerpm: nettle-3.10.1-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/n/npth-1.6-8.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 27653 + checksum: sha256:3e044d8534970034063e6445a142780bbe9d37f5e75b98f8788ade5470a32ab6 + name: npth + evr: 1.6-8.el9 + sourcerpm: npth-1.6-8.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openldap-2.6.8-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 296805 + checksum: sha256:68df8cf8fb4d54c2f1681fa9a030f7af3b179e6dd4fd10ffd7532824121ea74c + name: openldap + evr: 2.6.8-4.el9 + sourcerpm: openldap-2.6.8-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-fips-provider-so-3.0.7-11.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/o/openssl-libs-3.5.5-4.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 2426674 + checksum: sha256:126c17e907e1f6cbbd3989a478e933a74d5508e70b8983b0f6a94e7fd2a903e6 + name: openssl-libs + evr: 1:3.5.5-4.el9_8 + sourcerpm: openssl-3.5.5-4.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-0.26.2-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 624045 + checksum: sha256:3bc31959dd99d0c3103866296664c02c219c0a7c8b906c96ecc5ec3dda57c864 + name: p11-kit + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/p11-kit-trust-0.26.2-1.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 165124 + checksum: sha256:715fd8181525f3d6869d5086f36a15ea47a0e96297ccf5920c37d3a0cb36c409 + name: p11-kit-trust + evr: 0.26.2-1.el9 + sourcerpm: p11-kit-0.26.2-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre-8.44-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 205261 + checksum: sha256:e9ddc7d57d4f6e7400b66bcc78b9bafc1f05630e3e0d2a14000bc907f429ddc4 + name: pcre + evr: 8.44-4.el9 + sourcerpm: pcre-8.44-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre2-10.40-6.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 241900 + checksum: sha256:75db1e5a50e7b1794d7ba18212d95cd2684559da9e7c52eee46490302c7f24dd + name: pcre2 + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/pcre2-syntax-10.40-6.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 147926 + checksum: sha256:d386b5e9b3a4b077b2ba143882e605750855dd3354f13c55fa12ed26908cb442 + name: pcre2-syntax + evr: 10.40-6.el9 + sourcerpm: pcre2-10.40-6.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/p/protobuf-c-1.3.3-13.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 38224 + checksum: sha256:9669f5bed1c9532ede399cd1ea6f8937ae7d18cfb56d59f2939a4b456390035f + name: protobuf-c + evr: 1.3.3-13.el9 + sourcerpm: protobuf-c-1.3.3-13.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/readline-8.1-4.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 220174 + checksum: sha256:01bf315b3bc44c28515c4d33d49173b23d7979d2a09b7b15f749d434b60851e6 + name: readline + evr: 8.1-4.el9 + sourcerpm: readline-8.1-4.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/redhat-release-9.8-1.0.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/r/redhat-release-eula-9.8-1.0.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 18368 + checksum: sha256:bc40b4d1f550b7c55711bf86a8ff3f5629f6b52af5f71307efd3bf3888b80351 + name: redhat-release-eula + evr: 9.8-1.0.el9 + sourcerpm: redhat-release-9.8-1.0.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sed-4.8-10.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/setup-2.13.7-10.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 153791 + checksum: sha256:0891d395ce067121c28932534237ad1ce231f2bfa987411ad62e73a12d11eb6a + name: setup + evr: 2.13.7-10.el9 + sourcerpm: setup-2.13.7-10.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-4.9-16.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/shadow-utils-subid-4.9-16.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 86705 + checksum: sha256:7ec945faa9fb963f46c863e8f32dd9192e60b548e126296b832b3ecd75f47b47 + name: shadow-utils-subid + evr: 2:4.9-16.el9 + sourcerpm: shadow-utils-4.9-16.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/sqlite-libs-3.34.1-10.el9_8.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 664960 + checksum: sha256:7dc2202e08184890c851dcb2218a9abce14da150f12dfb8663ca306416e1d8d4 + name: sqlite-libs + evr: 3.34.1-10.el9_8 + sourcerpm: sqlite-3.34.1-10.el9_8.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/s/systemd-libs-252-67.el9_8.4.x86_64.rpm + repoid: rhel-9-for-x86_64-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.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tar-1.34-11.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 913256 + checksum: sha256:58b622ab7bc225731a2473e677f16c9eb51b1ed218a86a7aa039a6fed665f245 + name: tar + evr: 2:1.34-11.el9 + sourcerpm: tar-1.34-11.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/t/tzdata-2026b-1.el9.noarch.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 933841 + checksum: sha256:09908fa480ac8a56488cde728503cd47a01ed0b717ee00b4233d386784f62793 + name: tzdata + evr: 2026b-1.el9 + sourcerpm: tzdata-2026b-1.el9.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/x/xz-libs-5.2.5-8.el9_0.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 96649 + checksum: sha256:de263f880a4394f04b5e84254ba0a88d781b5bd63665c9e028bc10351490c982 + name: xz-libs + evr: 5.2.5-8.el9_0 + sourcerpm: xz-5.2.5-8.el9_0.src.rpm + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/os/Packages/z/zlib-1.2.11-40.el9.x86_64.rpm + repoid: rhel-9-for-x86_64-baseos-rpms + size: 95708 + checksum: sha256:baf95ffbf40ee014135f16fe33e343faf7ff1ca06509fd97cd988e6afeabf670 + name: zlib + evr: 1.2.11-40.el9 + sourcerpm: zlib-1.2.11-40.el9.src.rpm + source: + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/c/containers-common-5.8-1.el9.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 180820 + checksum: sha256:1618129f9bd64bc73721761717845ddb071a05f6d6124208fedf013fb3c9bf86 + name: containers-common + evr: 5:5.8-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/c/criu-3.19-3.el9.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 1397598 + checksum: sha256:935cde45890eee106b48c5a17fcce9a359bbc33e5867c7433012a28fdc095e90 + name: criu + evr: 3.19-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/c/crun-1.27-1.el9_8.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 908484 + checksum: sha256:a7a4cc5266e6a032b4e69926eed619018084726eb9758c0e75a6617bc7825521 + name: crun + evr: 1.27-1.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/f/fuse-overlayfs-1.16-1.el9_7.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 127644 + checksum: sha256:8e2ae14c212d0dde5afe0381b609c9bdb9f97bae787ca05a16c3c2c33b54547c + name: fuse-overlayfs + evr: 1.16-1.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/l/libnet-1.2-7.el9.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 611553 + checksum: sha256:bc2724e7061c48e2038f4f47b433bebccedb4ffc227dc351baaf3d5a52f03b08 + name: libnet + evr: 1.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/l/libslirp-4.4.0-8.el9.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 128699 + checksum: sha256:5e740382ebf1511fc7c4fa0c1db0bc72fad624329ff9e359cea75cccbed503e4 + name: libslirp + evr: 4.4.0-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/s/skopeo-1.22.2-6.el9_8.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 10193995 + checksum: sha256:2a36919d2eb3d1a75138b52d343729ce9625b5d2664677630bd8148b7503bca2 + name: skopeo + evr: 2:1.22.2-6.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/s/slirp4netns-1.3.3-1.el9.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 76019 + checksum: sha256:fcf453e6ffb0f7892fb087d8052f9ceebab6dfbc3797ad6b98c8eee9814e009d + name: slirp4netns + evr: 1.3.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/appstream/source/SRPMS/Packages/y/yajl-2.1.0-25.el9.src.rpm + repoid: rhel-9-for-x86_64-appstream-source-rpms + size: 101373 + checksum: sha256:08182ae11608d0ad5d9ef01c558a39489f331fe449f9be6df1a91c5e950163f9 + name: yajl + evr: 2.1.0-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/acl-2.3.1-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 535332 + checksum: sha256:cb449bc6c85e0b50fa0bb98c969ff8481fee40517d8ebec5e28b72e5360fbe1e + name: acl + evr: 2.3.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/attr-2.5.1-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 482234 + checksum: sha256:5171534e7de11df197f3c5e08658544983198288e04624c739b5c3d9db07b59c + name: attr + evr: 2.5.1-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1275064 + checksum: sha256:e0a3e72c863512032e0ba95337db076fa5af9368d9a80529a9624afc8877401c + name: audit + evr: 3.1.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/basesystem-11-13.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 9884 + checksum: sha256:5a4ed0779fc06f08115d6e06aa95486f1e1e251f8f9ddb6c7e14e811bb2e24ef + name: basesystem + evr: 11-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bash-5.1.8-9.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 10512850 + checksum: sha256:5d7bbbf2538361be1a11846602862c3a56809b3ea43b69b86bcf407538e9e260 + name: bash + evr: 5.1.8-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/b/bzip2-1.0.8-11.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 828199 + checksum: sha256:ba58283fc4ef85911f20a8e45ffa00497775858102d48f2a32ebf1010a1abefc + name: bzip2 + evr: 1.0.8-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/ca-certificates-2025.2.80_v9.0.305-91.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 711648 + checksum: sha256:d3193e155ddd297042a944729fe54c1b90c17bdbd1876fc68e4f66d7857f9e81 + name: ca-certificates + evr: 2025.2.80_v9.0.305-91.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/chkconfig-1.24-2.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 214658 + checksum: sha256:b2618b278f5c8d6dacfae790c8c73b1fc1578b8f64011f325ced5a4a2e3b58bc + name: chkconfig + evr: 1.24-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/coreutils-8.32-41.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 5696745 + checksum: sha256:9129bd65888eb0b6d802d8fe912609726af5d1f6347df8a18b243c426dcbb4db + name: coreutils + evr: 8.32-41.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/crypto-policies-20260224-1.gitea0f072.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 112905 + checksum: sha256:775d926429179caeade6af8dc7dea15a0bea49102c2592d5b712f996a329ec38 + name: crypto-policies + evr: 20260224-1.gitea0f072.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/c/cyrus-sasl-2.1.27-22.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 4025677 + checksum: sha256:f4b3d139bfb74a2d628592c5696a003bc8c4896711386b1bbc3dffdf8a33883e + name: cyrus-sasl + evr: 2.1.27-22.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/e/e2fsprogs-1.46.5-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 7416727 + checksum: sha256:5c613445f928889a52a0a82f4ed866502e82c99b0c983024ab97421391abd061 + name: e2fsprogs + evr: 1.46.5-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/filesystem-3.16-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 20486 + checksum: sha256:c795690df30c46e521372e2f649c995a2abc159b76c8ef6cd5da8a713ea17937 + name: filesystem + evr: 3.16-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/findutils-4.8.0-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2010585 + checksum: sha256:48bd4d4dd081120bcc6ab772b930a150f30b2fc89a4a14a24220383d24a30b3f + name: findutils + evr: 1:4.8.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/f/fuse3-3.10.2-9.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 799367 + checksum: sha256:ddfcd07bcdcc07bdabe0f05b2c5c3bb1d6582af9c6b127632dd74f8ca78d56c9 + name: fuse3 + evr: 3.10.2-9.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gawk-5.1.0-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3190934 + checksum: sha256:37571947707e835d36ceb5641b187aba13ef8f5f605a6762ce72aeea3e745b8d + name: gawk + evr: 5.1.0-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gcc-11.5.0-14.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 81978017 + checksum: sha256:19dec462f2880508570ca42a82c2f76fbd95fcad8d3e3ff812e9ca50cdeb2d8f + name: gcc + evr: 11.5.0-14.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gdbm-1.23-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1130147 + checksum: sha256:ad42264274c2a792220395a4dbe736a1de6100c4e14611707ec1dd447583271f + name: gdbm + evr: 1:1.23-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/glib2-2.68.4-19.el9_8.1.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 5095692 + checksum: sha256:e3cd2fb9f1035e6dd681f3413ae02a8d1c1252f7541ba326cf163f0de04a27c1 + name: glib2 + evr: 2.68.4-19.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/glibc-2.34-270.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 20414318 + checksum: sha256:ac1dbcb022ceae7c6c59f7ea64f7f5e696f193158d10123ad7a9bf9344a7fa9b + name: glibc + evr: 2.34-270.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gmp-6.2.0-13.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2503825 + checksum: sha256:d0d8a795eea9ae555da63fbcfc3575425e86bb7e96d117b9ae2785b4f5e82f7c + name: gmp + evr: 1:6.2.0-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gnupg2-2.3.3-5.el9_7.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 7623034 + checksum: sha256:88d0f8bfaf376b52de7a56de608af034ceae7a42ca20e32166bc79199cf2234d + name: gnupg2 + evr: 2.3.3-5.el9_7 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gnutls-3.8.10-4.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 55044099 + checksum: sha256:ee25c18e286f6a5bff89f29ed2aa3c997415ddb606d0382334679a6c93d2b592 + name: gnutls + evr: 3.8.10-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/gpgme-1.15.1-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1737968 + checksum: sha256:ceeb7d42bc8ddf6f09013439bfed4e591411b81293fe3db5e4edb06cbe1879fb + name: gpgme + evr: 1.15.1-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/g/grep-3.6-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1620891 + checksum: sha256:81b14432ebe1645b74b57592f1dcde8fab15ec13632f483f72ff2407ed16c33e + name: grep + evr: 3.6-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/keyutils-1.6.3-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 150790 + checksum: sha256:6afa567438acd0d3a6a66bc6a3c68ec2f4ae5ed9c7230c3f0478d2281a092688 + name: keyutils + evr: 1.6.3-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/kmod-28-11.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 579198 + checksum: sha256:4f6fefbf0d004b23494fe18ccfff2b9151ea887a276c56a6f25ea597a250991c + name: kmod + evr: 28-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/k/krb5-1.21.1-10.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 8964976 + checksum: sha256:b22a66515c98c14a4969a403d5419b9f9bab50015553863de866d3f45fd6d922 + name: krb5 + evr: 1.21.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libassuan-2.5.5-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 586136 + checksum: sha256:dcc858194f9497ec86960651fa76413a9c731f94423d67298e8e3c0c7a5e7806 + name: libassuan + evr: 2.5.5-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-2.48-10.el9_8.1.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 208035 + checksum: sha256:7f96d98c99f190b840985b3589183a3f1dc444e0932f256491b24d28c5031de3 + name: libcap + evr: 2.48-10.el9_8.1 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libcap-ng-0.8.2-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 470599 + checksum: sha256:48bb098662e2f3e1dbb94e27e4e612bc6794fbb62708e1f1a431cc2480fcdb00 + name: libcap-ng + evr: 0.8.2-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libevent-2.1.12-8.el9_4.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1123179 + checksum: sha256:8c00dc837b8685fc660cc0bcdfd4f533888facaa8c83655c26d2fb068cb7b135 + name: libevent + evr: 2.1.12-8.el9_4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libffi-3.4.2-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1367398 + checksum: sha256:2b384204cc70c8f23d3a86e5cc9f736306a7a91a72e282044e3b23f3fd831647 + name: libffi + evr: 3.4.2-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libgcrypt-1.10.0-11.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3981814 + checksum: sha256:3ac5b6ac1a4be5513e76fa2f33346014b8b3c5c47bbe71524ce326782b163d2e + name: libgcrypt + evr: 1.10.0-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libgpg-error-1.42-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 994101 + checksum: sha256:9586046fd9622e5e898f92a08821948bf0754a74ab343cc093ca21caae0352a6 + name: libgpg-error + evr: 1.42-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libidn2-2.3.0-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2214169 + checksum: sha256:c27f21437a76f07b0ee9f4f7e61d621cbb9c483c14563b31e55e320d19df99a6 + name: libidn2 + evr: 2.3.0-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libksba-1.5.1-7.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 677223 + checksum: sha256:6d334a90bcbc270ee691183624e5664fdbe7dbf2d4a47319e6c75860e16abd43 + name: libksba + evr: 1.5.1-7.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libnl3-3.11.0-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 5068824 + checksum: sha256:13f6ea90f26fbc96e3754584a576c03ca41221fc939164f5a7b6341a6372fd7a + name: libnl3 + evr: 3.11.0-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libseccomp-2.5.2-2.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 653169 + checksum: sha256:43dd0fa2cd26306e2017704075e628bbe675c8731b17848df82f3b59337f1be8 + name: libseccomp + evr: 2.5.2-2.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libselinux-3.6-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 271153 + checksum: sha256:a08a84389665ef614eb6d9b06a53128eab89b650c799c0558f3ae04df97c4b13 + name: libselinux + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-5.el9_6.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 223978 + checksum: sha256:33e4ad8374bdaa1dd4b4a46b2b379d025590d80e5d666801aea4f437a9a6ccd9 + name: libsemanage + evr: 3.6-5.el9_6 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsepol-3.6-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 543960 + checksum: sha256:2dacf2f1c1f61562ccc5ad082939158745e5a4a572d135d4f8ff00f75e1e94df + name: libsepol + evr: 3.6-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libsigsegv-2.13-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 473267 + checksum: sha256:734651070d0113de033da80114b416931c4c0be21ce51f6b1c1641b1185c34f3 + name: libsigsegv + evr: 2.13-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libtasn1-4.16.0-10.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1899881 + checksum: sha256:be5c3a993282ecde81ad5d00dd4e7b2c293e97e47d28709aa0ea7292b80ba610 + name: libtasn1 + evr: 4.16.0-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libtool-2.4.6-46.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1002417 + checksum: sha256:1130b15333736ad40a18b5924959a8b0c6c151305bc252c0cbd5276432e10002 + name: libtool + evr: 2.4.6-46.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libunistring-0.9.10-15.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2065802 + checksum: sha256:f6c329a60743d0d4955e070c5104407e47795b1ef617e7e59d052298961aec2b + name: libunistring + evr: 0.9.10-15.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libverto-0.3.2-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 396005 + checksum: sha256:a648c6c90c2cfcd6836681bff947499285656e60a5b2243a53b7d6590a8b73ee + name: libverto + evr: 0.3.2-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/libxcrypt-4.4.18-3.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 543970 + checksum: sha256:d18f72eb41ecd0370e2e47f1dc5774be54e9ff3b4dd333578017666c7c488f40 + name: libxcrypt + evr: 4.4.18-3.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/l/lz4-1.9.3-5.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 333421 + checksum: sha256:44e9e079f0f30476a0d8d9849ef1cd940fcc37abee11f481d6043b184bd0cf14 + name: lz4 + evr: 1.9.3-5.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/m/mpfr-4.1.0-10.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1560595 + checksum: sha256:c812e3c35d5bd5c3e33c65cdcf39d434acfd538aaa68ac04e3a5a9cc60556d50 + name: mpfr + evr: 4.1.0-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/ncurses-6.2-12.20210508.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3586993 + checksum: sha256:cdb59ed3771a3a4f00e2ffca853f2de4aa887e3d5c3655317f2e2c03f461103f + name: ncurses + evr: 6.2-12.20210508.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/nettle-3.10.1-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 4331292 + checksum: sha256:1f3587f2d59896bc3f427e4b5b9395095189dfb04237c242daa5cc536c7e02a9 + name: nettle + evr: 3.10.1-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/n/npth-1.6-8.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 314570 + checksum: sha256:3d0685cc559f0af453b6b3ace61944dec9b9cb090695e4de5f5579da7b35b750 + name: npth + evr: 1.6-8.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openldap-2.6.8-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 6548889 + checksum: sha256:0d21c12c55d40d1fc2f006c8ec187b5fcc799b794cfd31ed2d98434189c62800 + name: openldap + evr: 2.6.8-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-3.5.5-4.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 53362961 + checksum: sha256:7f1e764394ad2e1a4915fef182edbaad643dab6b59cbd52679a0962b26cb5d36 + name: openssl + evr: 1:3.5.5-4.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/o/openssl-fips-provider-3.0.7-11.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 28686020 + checksum: sha256:0b14c251cccb4506df185e78ec55cb49e14e7bcd8de19ad3f3246017b2120693 + name: openssl-fips-provider + evr: 3.0.7-11.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/p11-kit-0.26.2-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1108578 + checksum: sha256:b33c02489d0d7b599498f04f09da5a3f6c0b6962c462bcc0ad8accbb4d41ea6c + name: p11-kit + evr: 0.26.2-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pcre-8.44-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1624356 + checksum: sha256:7edbd87b866a3f6e3df1426d660b902e063193d6186027bf99f6d77626a43817 + name: pcre + evr: 8.44-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/pcre2-10.40-6.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1789790 + checksum: sha256:a570f7192be555222aa3704882b9199fb013a84ad4d7dcf40a93d8de2ecf6e0a + name: pcre2 + evr: 10.40-6.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/p/protobuf-c-1.3.3-13.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 513224 + checksum: sha256:d4d82978c58a2f9ca8e24b953fd9ac74efee41572ec9649c4f2f183cda98b33f + name: protobuf-c + evr: 1.3.3-13.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/readline-8.1-4.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 3009702 + checksum: sha256:bc7a168b7275d1f9bd0f16b47029dd857ddce83fa80c3cb32eac63cb55f591f3 + name: readline + evr: 8.1-4.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/r/redhat-release-9.8-1.0.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 85364 + checksum: sha256:6c3f4a1287fb76e05e49217a15a33b9c228a56fc06e96376afb37201bfbe32da + name: redhat-release + evr: 9.8-1.0.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sed-4.8-10.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1428416 + checksum: sha256:981073f2c251395b5ae42b7ff929f743260eea9738187fbb207042f11eae7ea7 + name: sed + evr: 4.8-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/setup-2.13.7-10.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 195940 + checksum: sha256:3acdbbd63bd77dd8b18210b9d597bd59ddf455ff728067638c54194ac3a8a32b + name: setup + evr: 2.13.7-10.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/shadow-utils-4.9-16.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1713058 + checksum: sha256:771a5ed07cdb690c75cd428a8113e2ee471270044e6cb8025d92c54e32c180ff + name: shadow-utils + evr: 2:4.9-16.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/sqlite-3.34.1-10.el9_8.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 25116090 + checksum: sha256:4387ae8d5a5a0b972b7a8612dca277499a43e7991163c7519e8a0ced2e57c90a + name: sqlite + evr: 3.34.1-10.el9_8 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/s/systemd-252-67.el9_8.4.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 45009674 + checksum: sha256:e44181d1de2a135a5507b956d18a9eb11951a35aaa9c15dbc0f144ed8313f732 + name: systemd + evr: 252-67.el9_8.4 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tar-1.34-11.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2294162 + checksum: sha256:13204f7499944b3fe773cbdf0b9bb2de31eaa9a4c69f31830fb9e54506bcb9b6 + name: tar + evr: 2:1.34-11.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/t/tzdata-2026b-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 929993 + checksum: sha256:d549fc081c8cb2eec6c8273acfdd1b24023897c09fff24117fe2c2532d4bf085 + name: tzdata + evr: 2026b-1.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/u/util-linux-2.37.4-25.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 6291867 + checksum: sha256:6c788387cde9c0fde5481382f3f8416e3ecbcf09c908b409b6c63358b90a399f + name: util-linux + evr: 2.37.4-25.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/x/xz-5.2.5-8.el9_0.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 1168293 + checksum: sha256:bce98f3a307e75a8ac28f909e29b41d64b15461fa9ddf0bf4ef3c2f6de946b46 + name: xz + evr: 5.2.5-8.el9_0 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zlib-1.2.11-40.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 561153 + checksum: sha256:e47b884c132983fd0cc40c761de72e1a34ada9ee395cfe50997f9fb9257669d8 + name: zlib + evr: 1.2.11-40.el9 + - url: https://cdn.redhat.com/content/dist/rhel9/9/x86_64/baseos/source/SRPMS/Packages/z/zstd-1.5.5-1.el9.src.rpm + repoid: rhel-9-for-x86_64-baseos-source-rpms + size: 2378112 + checksum: sha256:922957570bae59b0a45bd9d96ce804c65c6c3260f50198f40804d95ffb0db65e + name: zstd + evr: 1.5.5-1.el9 + module_metadata: []