From 0e5ee75ba0e01100fa4ffe8322a9b30be3366fed Mon Sep 17 00:00:00 2001 From: Tommy Hughes Date: Tue, 6 May 2025 10:07:08 -0500 Subject: [PATCH] offline install: use generic fetcher for milvus-lite wheel Signed-off-by: Tommy Hughes --- .../multicloud/offline/Dockerfile.builder.yum | 4 - .../multicloud/offline/Dockerfile.sdist | 23 +- .../offline/Dockerfile.sdist.release | 23 +- .../multicloud/offline/artifacts.lock.yaml | 6 + .../offline/hermeto-generic-artifacts.sh | 8 + .../offline/offline-binary-build.sh | 2 +- .../offline/offline-binary-release-build.sh | 2 +- .../multicloud/offline/offline-build.sh | 15 +- .../offline/offline-release-build.sh | 15 +- .../multicloud/offline/rpms.lock.yaml | 461 ++++++++++++++++++ 10 files changed, 527 insertions(+), 32 deletions(-) create mode 100644 sdk/python/feast/infra/feature_servers/multicloud/offline/rpms.lock.yaml diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum b/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum index 75a082b8210..0a19017f1d4 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum @@ -2,16 +2,12 @@ FROM registry.access.redhat.com/ubi9/python-311:1 ARG RELEASE ENV IBIS_VERSION="9.5.0" -ENV MILVUS_LITE_VERSION="2.4.12" USER 0 RUN yum install -y ninja-build llvm-devel cmake llvm-toolset ncurses-devel rust cargo RUN if [[ -z "$RELEASE" ]] ; then npm install -g yarn yalc && rm -rf .npm ; fi USER 1001 -# milvus dep -RUN pip install milvus-lite==${MILVUS_LITE_VERSION} - # ibis-framework must build from a clone of its git repo... versioning requirement ## RuntimeError: Unable to detect version control system. Checked: Git. Not installed: Mercurial, Darcs, Subversion, Bazaar, Fossil, Pijul. RUN git clone -b ${IBIS_VERSION} --single-branch https://github.com/ibis-project/ibis ${APP_ROOT}/src/ibis diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist b/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist index a96c365b164..3c2c344dbf6 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist @@ -1,12 +1,25 @@ -FROM yum-builder:dev +FROM yarn-builder:latest ENV APACHE_ARROW_VERSION="17.0.0" +ENV MILVUS_LITE_VERSION="2.4.12" +ENV IBIS_VERSION="9.5.0" ENV ARROW_HOME=${APP_ROOT}/arrow-dist ENV LD_LIBRARY_PATH=${ARROW_HOME}/lib:$LD_LIBRARY_PATH ENV CMAKE_PREFIX_PATH=${ARROW_HOME}:$CMAKE_PREFIX_PATH ENV THIRD_PARTY_PATH=/tmp/hermeto-generic-output/deps/generic +###### +# unecessary for konflux build +ENV RPM_PATH=/tmp/hermeto-rpm-output/deps/rpm/x86_64 +USER 0 +RUN useradd mockbuild +RUN groupadd mock +RUN usermod -G mock mockbuild +RUN rpm -Uvh ${RPM_PATH}/*/*.rpm +USER 1001 +###### + # configured for Arrow version 17.0.0 RUN mkdir ${APP_ROOT}/src/arrow ${ARROW_HOME} ${APP_ROOT}/src/arrow-build && \ tar xfz ${THIRD_PARTY_PATH}/apache-arrow-${APACHE_ARROW_VERSION}.tar.gz -C ${APP_ROOT}/src/arrow --strip-components=1 && \ @@ -97,6 +110,8 @@ RUN mkdir ${APP_ROOT}/src/arrow ${ARROW_HOME} ${APP_ROOT}/src/arrow-build && \ cd ${APP_ROOT}/src/arrow/python && \ PYARROW_PARALLEL=4 python setup.py build_ext --bundle-arrow-cpp bdist_wheel && \ pip install dist/pyarrow-*.whl && \ + pip install ${THIRD_PARTY_PATH}/milvus_lite-${MILVUS_LITE_VERSION}-py3-none-manylinux2014_x86_64.whl && \ + pip install ${THIRD_PARTY_PATH}/ibis_framework-${IBIS_VERSION}-py3-none-any.whl[duckdb] && \ \ cd ${APP_ROOT}/src && \ rm -rf ${APP_ROOT}/src/arrow-build ${APP_ROOT}/src/arrow ${ARROW_HOME} @@ -113,12 +128,6 @@ RUN python -c "import pyarrow.substrait as substrait; print(substrait.__name__)" RUN source /tmp/hermeto.env && \ pip install "numpy>=1.16.6,<2" -RUN cd ${APP_ROOT}/src/ibis && \ - source /tmp/hermeto.env && \ - pip install .[duckdb] && \ - cd ${APP_ROOT}/src && \ - rm -rf ${APP_ROOT}/src/ibis - # This section only necessary when building from local feast source ... e.g. ".[minimal]" ######################## COPY --chown=default .git ${APP_ROOT}/src/.git diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist.release b/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist.release index dd5b07b58d7..946b6407626 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist.release +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist.release @@ -1,12 +1,25 @@ -FROM yum-builder:release +FROM registry.access.redhat.com/ubi9/python-311:1 ENV APACHE_ARROW_VERSION="17.0.0" +ENV MILVUS_LITE_VERSION="2.4.12" +ENV IBIS_VERSION="9.5.0" ENV ARROW_HOME=${APP_ROOT}/arrow-dist ENV LD_LIBRARY_PATH=${ARROW_HOME}/lib:$LD_LIBRARY_PATH ENV CMAKE_PREFIX_PATH=${ARROW_HOME}:$CMAKE_PREFIX_PATH ENV THIRD_PARTY_PATH=/tmp/hermeto-generic-output/deps/generic +###### +# unecessary for konflux build +ENV RPM_PATH=/tmp/hermeto-rpm-output/deps/rpm/x86_64 +USER 0 +RUN useradd mockbuild +RUN groupadd mock +RUN usermod -G mock mockbuild +RUN rpm -Uvh ${RPM_PATH}/*/*.rpm +USER 1001 +###### + # configured for Arrow version 17.0.0 RUN mkdir ${APP_ROOT}/src/arrow ${ARROW_HOME} ${APP_ROOT}/src/arrow-build && \ tar xfz ${THIRD_PARTY_PATH}/apache-arrow-${APACHE_ARROW_VERSION}.tar.gz -C ${APP_ROOT}/src/arrow --strip-components=1 && \ @@ -97,6 +110,8 @@ RUN mkdir ${APP_ROOT}/src/arrow ${ARROW_HOME} ${APP_ROOT}/src/arrow-build && \ cd ${APP_ROOT}/src/arrow/python && \ PYARROW_PARALLEL=4 python setup.py build_ext --bundle-arrow-cpp bdist_wheel && \ pip install dist/pyarrow-*.whl && \ + pip install ${THIRD_PARTY_PATH}/milvus_lite-${MILVUS_LITE_VERSION}-py3-none-manylinux2014_x86_64.whl && \ + pip install ${THIRD_PARTY_PATH}/ibis_framework-${IBIS_VERSION}-py3-none-any.whl[duckdb] && \ \ cd ${APP_ROOT}/src && \ rm -rf ${APP_ROOT}/src/arrow-build ${APP_ROOT}/src/arrow ${ARROW_HOME} @@ -113,12 +128,6 @@ RUN python -c "import pyarrow.substrait as substrait; print(substrait.__name__)" RUN source /tmp/hermeto.env && \ pip install "numpy>=1.16.6,<2" -RUN cd ${APP_ROOT}/src/ibis && \ - source /tmp/hermeto.env && \ - pip install .[duckdb] && \ - cd ${APP_ROOT}/src && \ - rm -rf ${APP_ROOT}/src/ibis - COPY requirements.txt requirements.txt RUN source /tmp/hermeto.env && \ pip install -r requirements.txt diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/artifacts.lock.yaml b/sdk/python/feast/infra/feature_servers/multicloud/offline/artifacts.lock.yaml index 978cbbf31dd..bb4ca8b773e 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/artifacts.lock.yaml +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/artifacts.lock.yaml @@ -2,6 +2,12 @@ metadata: version: "1.0" artifacts: + - download_url: "https://files.pythonhosted.org/packages/44/43/b3f6e9defd1f3927b972beac7abe3d5b4a3bdb287e3bad69618e2e76cf0a/milvus_lite-2.4.12-py3-none-manylinux2014_x86_64.whl" + checksum: "sha256:334037ebbab60243b5d8b43d54ca2f835d81d48c3cda0c6a462605e588deb05d" + filename: "milvus_lite-2.4.12-py3-none-manylinux2014_x86_64.whl" + - download_url: "https://files.pythonhosted.org/packages/dd/a9/899888a3b49ee07856a0bab673652a82ea89999451a51fba4d99e65868f7/ibis_framework-9.5.0-py3-none-any.whl" + checksum: "sha256:145fe30d94f111cff332580c275ce77725c5ff7086eede93af0b371649d009c0" + filename: "ibis_framework-9.5.0-py3-none-any.whl" - download_url: "https://github.com/apache/arrow/archive/apache-arrow-17.0.0.tar.gz" checksum: "sha256:8379554d89f19f2c8db63620721cabade62541f47a4e706dfb0a401f05a713ef" filename: "apache-arrow-17.0.0.tar.gz" diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/hermeto-generic-artifacts.sh b/sdk/python/feast/infra/feature_servers/multicloud/offline/hermeto-generic-artifacts.sh index bebe446ffb7..5996f44ff1b 100755 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/hermeto-generic-artifacts.sh +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/hermeto-generic-artifacts.sh @@ -11,6 +11,12 @@ APACHE_ARCHIVE_SHA256_CHECKSUM="8379554d89f19f2c8db63620721cabade62541f47a4e706d SUBSTRAIT_VERSION="0.44.0" SUBSTRAIT_ARCHIVE_SHA256_CHECKSUM="f989a862f694e7dbb695925ddb7c4ce06aa6c51aca945105c075139aed7e55a2" +MILVUS_LITE_VERSION="2.4.12" +MILVUS_LITE_ARCHIVE_SHA256_CHECKSUM="334037ebbab60243b5d8b43d54ca2f835d81d48c3cda0c6a462605e588deb05d" + +IBIS_VERSION="9.5.0" +IBIS_ARCHIVE_SHA256_CHECKSUM="145fe30d94f111cff332580c275ce77725c5ff7086eede93af0b371649d009c0" + PROJECT_ROOT_DIR=$(git rev-parse --show-toplevel) DESTDIR=${PROJECT_ROOT_DIR}/sdk/python/feast/infra/feature_servers/multicloud/offline artifacts_file=${DESTDIR}/artifacts.lock.yaml @@ -45,6 +51,8 @@ metadata: version: "1.0" artifacts:' > ${artifacts_file} + set_dependency "https://files.pythonhosted.org/packages/44/43/b3f6e9defd1f3927b972beac7abe3d5b4a3bdb287e3bad69618e2e76cf0a/milvus_lite-${MILVUS_LITE_VERSION}-py3-none-manylinux2014_x86_64.whl" "${MILVUS_LITE_ARCHIVE_SHA256_CHECKSUM}" "milvus_lite-${MILVUS_LITE_VERSION}-py3-none-manylinux2014_x86_64.whl" + set_dependency "https://files.pythonhosted.org/packages/dd/a9/899888a3b49ee07856a0bab673652a82ea89999451a51fba4d99e65868f7/ibis_framework-${IBIS_VERSION}-py3-none-any.whl" "${IBIS_ARCHIVE_SHA256_CHECKSUM}" "ibis_framework-${IBIS_VERSION}-py3-none-any.whl" set_dependency "https://github.com/apache/arrow/archive/${ARROW_ARCHIVE}" "${APACHE_ARCHIVE_SHA256_CHECKSUM}" "${ARROW_ARCHIVE}" source ${versions_file} diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-build.sh b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-build.sh index 34c24202bce..8d8ca4ba5f1 100755 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-build.sh +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-build.sh @@ -9,7 +9,7 @@ cd ${PROJECT_ROOT_DIR} rm -rf ./offline_build mkdir offline_build -alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.24.0' +alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.25.0' # not needed for downstream build from release ############################### # yarn builder diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-release-build.sh b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-release-build.sh index 5ff58ad4a53..8462cef705b 100755 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-release-build.sh +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-binary-release-build.sh @@ -9,7 +9,7 @@ cd ${PROJECT_ROOT_DIR} rm -rf ./offline_build mkdir offline_build -alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.24.0' +alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.25.0' hermeto fetch-deps \ --output ${OFFLINE_BUILD_DIR}/hermeto-output \ '{ diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-build.sh b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-build.sh index 5950287f9ae..c84774f497c 100755 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-build.sh +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-build.sh @@ -9,13 +9,19 @@ cd ${PROJECT_ROOT_DIR} rm -rf ./offline_build mkdir offline_build -# yum builder +# yarn builder docker build \ - --tag yum-builder:dev \ - -f sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum \ + --tag yarn-builder \ + -f sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yarn \ sdk/python/feast/infra/feature_servers/multicloud/offline -alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.24.0' +alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.25.0' +hermeto fetch-deps \ + --source sdk/python/feast/infra/feature_servers/multicloud/offline \ + --output ${OFFLINE_BUILD_DIR}/hermeto-rpm-output \ + --dev-package-managers \ + rpm + hermeto fetch-deps \ --source sdk/python/feast/infra/feature_servers/multicloud/offline \ --output ${OFFLINE_BUILD_DIR}/hermeto-generic-output \ @@ -67,6 +73,7 @@ docker build \ --volume ${OFFLINE_BUILD_DIR}/hermeto-output:/tmp/hermeto-output:Z \ --volume ${OFFLINE_BUILD_DIR}/hermeto.env:/tmp/hermeto.env:Z \ --volume ${OFFLINE_BUILD_DIR}/hermeto-generic-output:/tmp/hermeto-generic-output:Z \ + --volume ${OFFLINE_BUILD_DIR}/hermeto-rpm-output:/tmp/hermeto-rpm-output:Z \ --tag feature-server:sdist-build \ -f sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist \ ${PROJECT_ROOT_DIR} diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-release-build.sh b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-release-build.sh index bfea7ed41c6..49df0eae600 100755 --- a/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-release-build.sh +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/offline-release-build.sh @@ -9,20 +9,18 @@ cd ${PROJECT_ROOT_DIR} rm -rf ./offline_build mkdir offline_build -# yum builder -docker build \ - --build-arg RELEASE=true \ - --tag yum-builder:release \ - -f sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum \ - sdk/python/feast/infra/feature_servers/multicloud/offline +alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.25.0' +hermeto fetch-deps \ + --source sdk/python/feast/infra/feature_servers/multicloud/offline \ + --output ${OFFLINE_BUILD_DIR}/hermeto-rpm-output \ + --dev-package-managers \ + rpm -alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.24.0' hermeto fetch-deps \ --source sdk/python/feast/infra/feature_servers/multicloud/offline \ --output ${OFFLINE_BUILD_DIR}/hermeto-generic-output \ generic -alias hermeto='docker run --rm -ti -v "$PWD:$PWD:Z" -w "$PWD" quay.io/konflux-ci/hermeto:0.24.0' hermeto fetch-deps \ --output ${OFFLINE_BUILD_DIR}/hermeto-output \ '{ @@ -46,6 +44,7 @@ docker build \ --volume ${OFFLINE_BUILD_DIR}/hermeto-output:/tmp/hermeto-output:Z \ --volume ${OFFLINE_BUILD_DIR}/hermeto.env:/tmp/hermeto.env:Z \ --volume ${OFFLINE_BUILD_DIR}/hermeto-generic-output:/tmp/hermeto-generic-output:Z \ + --volume ${OFFLINE_BUILD_DIR}/hermeto-rpm-output:/tmp/hermeto-rpm-output:Z \ --tag feature-server:sdist-release-build \ -f sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.sdist.release \ sdk/python/feast/infra/feature_servers/multicloud diff --git a/sdk/python/feast/infra/feature_servers/multicloud/offline/rpms.lock.yaml b/sdk/python/feast/infra/feature_servers/multicloud/offline/rpms.lock.yaml new file mode 100644 index 00000000000..c4190009ac3 --- /dev/null +++ b/sdk/python/feast/infra/feature_servers/multicloud/offline/rpms.lock.yaml @@ -0,0 +1,461 @@ +# generated from https://github.com/red-hat-data-services/rpm-lockfile-runner/tree/feast +--- +lockfileVersion: 1 +lockfileVendor: redhat +arches: + - arch: x86_64 + packages: + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cargo-1.79.0-3.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 7677114 + checksum: sha256:646e36cade15b22938c0721232aa100a228969430c593c10adba9a80e3fe7cff + name: cargo + evr: 1.79.0-3.el9_5 + sourcerpm: rust-1.79.0-3.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/checkpolicy-3.6-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 365931 + checksum: sha256:3d12bc7e21276434108c97561f75d1854283afb73d4fface3b836acee09f8d98 + name: checkpolicy + evr: 3.6-1.el9 + sourcerpm: checkpolicy-3.6-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 78155 + checksum: sha256:d3cba7ddce413485d4ee36e1d6dc50d92d730abf6f5a16e50b5dcf9ec61a2865 + name: clang + evr: 18.1.8-3.el9 + sourcerpm: clang-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-libs-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 25146015 + checksum: sha256:cb792320144efd41a70fa0c0a061f9d86e146aac5bbccfdb8703466d6958deee + name: clang-libs + evr: 18.1.8-3.el9 + sourcerpm: clang-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/clang-resource-filesystem-18.1.8-3.el9.noarch.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 12197 + checksum: sha256:f26859c1f8397b23f457427b79f1c18c70a0d0426ebb85c3473f2e174cefe88e + name: clang-resource-filesystem + evr: 18.1.8-3.el9 + sourcerpm: clang-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-3.26.5-2.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 9159462 + checksum: sha256:f553370cb02b87e7388697468256556e765b102c2fcb56be6bc250cb2351e8ad + name: cmake + evr: 3.26.5-2.el9 + sourcerpm: cmake-3.26.5-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-data-3.26.5-2.el9.noarch.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 2488227 + checksum: sha256:84da65a7b8921f031d15903d91c5967022620f9e96b7493c8ab8024014755ee7 + name: cmake-data + evr: 3.26.5-2.el9 + sourcerpm: cmake-3.26.5-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/cmake-rpm-macros-3.26.5-2.el9.noarch.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 12250 + checksum: sha256:1c74969c8a4f21851f5b89f25ac55c689b75bed1318d0435fc3a14a49c39d0e3 + name: cmake-rpm-macros + evr: 3.26.5-2.el9 + sourcerpm: cmake-3.26.5-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/c/compiler-rt-18.1.8-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 2478654 + checksum: sha256:e5a1b9617fd01d3b88e028506fc721c1af812120c028b83c77514f48ae421cf5 + name: compiler-rt + evr: 18.1.8-1.el9 + sourcerpm: compiler-rt-18.1.8-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-13-binutils-2.40-21.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 6035750 + checksum: sha256:b808432cf1d7c564280fda2e1c8382d5901af838f8d6ab8d91e5d1a37c2f4a9c + name: gcc-toolset-13-binutils + evr: 2.40-21.el9 + sourcerpm: gcc-toolset-13-binutils-2.40-21.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-13-binutils-gold-2.40-21.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 850981 + checksum: sha256:c5fe9671a394bd445be2ae42837e228eedb1ee327365bf04a4d94404b24b7801 + name: gcc-toolset-13-binutils-gold + evr: 2.40-21.el9 + sourcerpm: gcc-toolset-13-binutils-2.40-21.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-13-gcc-13.3.1-2.2.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 45344779 + checksum: sha256:6a726329c7d786a6eb9955512a5ad78fc9086a09c92991563d83123b60c282dd + name: gcc-toolset-13-gcc + evr: 13.3.1-2.2.el9_5 + sourcerpm: gcc-toolset-13-gcc-13.3.1-2.2.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-13-gcc-c++-13.3.1-2.2.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 14214789 + checksum: sha256:f660ccd8a005598017d572a625e76c5132062ee43365dfee7cf2ee632845df16 + name: gcc-toolset-13-gcc-c++ + evr: 13.3.1-2.2.el9_5 + sourcerpm: gcc-toolset-13-gcc-13.3.1-2.2.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-13-libstdc++-devel-13.3.1-2.2.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 3689972 + checksum: sha256:3eb1f9956ff301f76cd4851fa33c5e3adc3a46b32f1ff24780f7fd3399d5b1c3 + name: gcc-toolset-13-libstdc++-devel + evr: 13.3.1-2.2.el9_5 + sourcerpm: gcc-toolset-13-gcc-13.3.1-2.2.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/g/gcc-toolset-13-runtime-13.0-2.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 63636 + checksum: sha256:0061a02187dbbdfd6da659c98749693bce4da02be8d4d9827a8d1fa867610e9d + name: gcc-toolset-13-runtime + evr: 13.0-2.el9 + sourcerpm: gcc-toolset-13-13.0-2.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libedit-devel-3.1-38.20210216cvs.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 52053 + checksum: sha256:738df42b190c2404ead040c92778b79e02ec536491c540b179654aa876f31248 + name: libedit-devel + evr: 3.1-38.20210216cvs.el9 + sourcerpm: libedit-3.1-38.20210216cvs.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libomp-18.1.8-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 687666 + checksum: sha256:a2973cda446e20e6b9cefed695d0a3173a248d8294863a97119f9591bec5f67b + name: libomp + evr: 18.1.8-1.el9 + sourcerpm: libomp-18.1.8-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libomp-devel-18.1.8-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 497254 + checksum: sha256:8a6566f0acab7da71459ddab00551120c6e755ceb8b841f8e30a5efb8282f07a + name: libomp-devel + evr: 18.1.8-1.el9 + sourcerpm: libomp-18.1.8-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/libuv-1.42.0-2.el9_4.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 154427 + checksum: sha256:e1fab39251239ccaad2fb4dbe6c55ec1ae60f76d4ae81582b06e6a58e30879b2 + name: libuv + evr: 1:1.42.0-2.el9_4 + sourcerpm: libuv-1.42.0-2.el9_4.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/lld-18.1.8-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 38455 + checksum: sha256:a5a823f0293aa8c436410217eb5460394b8faa60e7ac2c2d8c4faab1a59e2ba3 + name: lld + evr: 18.1.8-1.el9 + sourcerpm: lld-18.1.8-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/lld-libs-18.1.8-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 1602444 + checksum: sha256:16901b60b8fb7dfbb566bf4fb91948db70d13e9271b684b1ef7627cecf1544a1 + name: lld-libs + evr: 18.1.8-1.el9 + sourcerpm: lld-18.1.8-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 25016719 + checksum: sha256:4d1d39986fa59f88021761336a45050172d1214263623fc76e6d1a53f76a44fe + name: llvm + evr: 18.1.8-3.el9 + sourcerpm: llvm-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-devel-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 4409831 + checksum: sha256:2c9da57f3d1d8694d6f4b1c7943b891a54f315f09a0ce5a7a50c9d8ea6954dc6 + name: llvm-devel + evr: 18.1.8-3.el9 + sourcerpm: llvm-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-googletest-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 400225 + checksum: sha256:c147d388c3a2c16d6f4872c04abe4bda6bbe4174fde1798a5b2ca56f0b458fea + name: llvm-googletest + evr: 18.1.8-3.el9 + sourcerpm: llvm-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-static-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 34571980 + checksum: sha256:4e62c40b9c1c42ff1e947db5be0a566f9add70a7d64b9b42db8bc9679021ef74 + name: llvm-static + evr: 18.1.8-3.el9 + sourcerpm: llvm-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-test-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 653267 + checksum: sha256:ba2a06e9cb9ec0cf18c753224a0f27d1f81ca4f627850a6fd5cc068f7279548e + name: llvm-test + evr: 18.1.8-3.el9 + sourcerpm: llvm-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/l/llvm-toolset-18.1.8-3.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 16122 + checksum: sha256:ebec0aa6340305ae1ab93667a7646a0e343a3441467b09b36403f585f0f6d1d2 + name: llvm-toolset + evr: 18.1.8-3.el9 + sourcerpm: llvm-18.1.8-3.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-c++-libs-6.2-10.20210508.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 39580 + checksum: sha256:e2c326339a07fe192a0d03eba170fdd3493f4c1422fe70a6b1bfe56d4414509a + name: ncurses-c++-libs + evr: 6.2-10.20210508.el9 + sourcerpm: ncurses-6.2-10.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/n/ncurses-devel-6.2-10.20210508.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 749413 + checksum: sha256:c95e835c859892cced393aaf7875829c2ba6d4f9628ada4ddf441b55f9c21333 + name: ncurses-devel + evr: 6.2-10.20210508.el9 + sourcerpm: ncurses-6.2-10.20210508.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/policycoreutils-python-utils-3.6-2.1.el9.noarch.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 82931 + checksum: sha256:fcbe07b75cd10b0a2752d558a8b7750cb13b59473439701d8c568195f05c3805 + name: policycoreutils-python-utils + evr: 3.6-2.1.el9 + sourcerpm: policycoreutils-3.6-2.1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-audit-3.1.5-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 87632 + checksum: sha256:93dd7a77ab7c2bbc0b1ef7ec9714ea83018fbf0ce019bd65c2650c4abfbaad34 + name: python3-audit + evr: 3.1.5-1.el9 + sourcerpm: audit-3.1.5-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-distro-1.5.0-7.el9.noarch.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 41452 + checksum: sha256:5cf4276217a72649895226707d4c0e3edd6ea64b66702793fab3907177c73069 + name: python3-distro + evr: 1.5.0-7.el9 + sourcerpm: python-distro-1.5.0-7.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libselinux-3.6-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 197070 + checksum: sha256:84aff2ff0c48ca4f5d77223db53a26a16c273b03a9674a2608e1db5d8cd32710 + name: python3-libselinux + evr: 3.6-1.el9 + sourcerpm: libselinux-3.6-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-libsemanage-3.6-2.1.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 82828 + checksum: sha256:b7f5d62cbb163b3c13f0db87e326dc3937d206b9c22732dc75de3b7fae32248e + name: python3-libsemanage + evr: 3.6-2.1.el9_5 + sourcerpm: libsemanage-3.6-2.1.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/p/python3-policycoreutils-3.6-2.1.el9.noarch.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 2216589 + checksum: sha256:7dbe7be855cc83e372add890e9e0c5256ef57132d9731b5db204c425bf21b194 + name: python3-policycoreutils + evr: 3.6-2.1.el9 + sourcerpm: policycoreutils-3.6-2.1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-1.79.0-3.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 26522569 + checksum: sha256:fae006c4035d70e650fa1249d06aa9d7b0bb0f6bb2f173be852ca48eccf86f50 + name: rust + evr: 1.79.0-3.el9_5 + sourcerpm: rust-1.79.0-3.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/os/Packages/r/rust-std-static-1.79.0-3.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-appstream-rpms + size: 35671907 + checksum: sha256:e6b3ea8b1c965e78cc883ed7a8311235366baf40e746e99526cf9c093c6f4865 + name: rust-std-static + evr: 1.79.0-3.el9_5 + sourcerpm: rust-1.79.0-3.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/d/diffutils-3.7-12.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-baseos-rpms + size: 411559 + checksum: sha256:2d4c4fdfc10215af3c957c24995b79a26e27e6d76de4ed1f5198d25bf7ef9671 + name: diffutils + evr: 3.7-12.el9 + sourcerpm: diffutils-3.7-12.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/j/jansson-2.14-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-baseos-rpms + size: 49137 + checksum: sha256:4e9aec51ee46d7265d6edd1245b5d5ab5e8336dc2a4ca17f2cace2ce8bae3761 + name: jansson + evr: 2.14-1.el9 + sourcerpm: jansson-2.14-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libatomic-11.5.0-5.el9_5.x86_64.rpm + repoid: ubi-9-for-x86_64-baseos-rpms + size: 28095 + checksum: sha256:f319f76d1b4f3c82cc2cf8eee5b3c170a1d6f5c1c72d7790141307159572578a + name: libatomic + evr: 11.5.0-5.el9_5 + sourcerpm: gcc-11.5.0-5.el9_5.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/l/libselinux-utils-3.6-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-baseos-rpms + size: 198772 + checksum: sha256:479229e7c3d8cb005dafd637b2973fbee0bb507cfed8e72f7076318513200abd + name: libselinux-utils + evr: 3.6-1.el9 + sourcerpm: libselinux-3.6-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/policycoreutils-3.6-2.1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-baseos-rpms + size: 251967 + checksum: sha256:8dcd39960d3103f7a4ad2b9f7a0e15469ebf4da98f6c215cddfffdb830dc12b5 + name: policycoreutils + evr: 3.6-2.1.el9 + sourcerpm: policycoreutils-3.6-2.1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/os/Packages/p/python3-setools-4.4.4-1.el9.x86_64.rpm + repoid: ubi-9-for-x86_64-baseos-rpms + size: 623460 + checksum: sha256:91946d729d2b03b4abe1c43962f22d110468db0163241cda7b1d549c615d0261 + name: python3-setools + evr: 4.4.4-1.el9 + sourcerpm: setools-4.4.4-1.el9.src.rpm + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/codeready-builder/os/Packages/n/ninja-build-1.10.2-6.el9.x86_64.rpm + repoid: codeready-builder-for-ubi-9-x86_64-rpms + size: 153299 + checksum: sha256:1140bec45c316942f870c28fdede79c185a2e09adc48bada42a5610783d56400 + name: ninja-build + evr: 1.10.2-6.el9 + sourcerpm: ninja-build-1.10.2-6.el9.src.rpm + source: + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/c/checkpolicy-3.6-1.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 94887 + checksum: sha256:37868cfff2b89ed3fa75621cd498861e37c8a450e4db066395acfee392b12f8a + name: checkpolicy + evr: 3.6-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/c/clang-18.1.8-3.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 25546074 + checksum: sha256:a7896c37a60bdadd9685335298bae7267b92d224738dd6aba150a4e1d492da79 + name: clang + evr: 18.1.8-3.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/c/cmake-3.26.5-2.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 10671338 + checksum: sha256:2f86bb96562eaf679969c2716738fbdfcc8a3966ecc3bb6317596fe2e214ea2b + name: cmake + evr: 3.26.5-2.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/c/compiler-rt-18.1.8-1.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 2492472 + checksum: sha256:c9fcc7e11bebba1036121bfab895a03b542141221a737f6842638fbcdd93cdb9 + name: compiler-rt + evr: 18.1.8-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/g/gcc-toolset-13-13.0-2.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 15279 + checksum: sha256:3ac57b9dea39963c87f658f978e95df19511767bdcff6517d84403d7ff003412 + name: gcc-toolset-13 + evr: 13.0-2.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/g/gcc-toolset-13-binutils-2.40-21.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 25343605 + checksum: sha256:19745c00cdca6ca3f73858e2479be4261b358109c071972e28ef6301a9e52280 + name: gcc-toolset-13-binutils + evr: 2.40-21.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/g/gcc-toolset-13-gcc-13.3.1-2.2.el9_5.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 89348206 + checksum: sha256:bdc4fb8cd1519c496adbeb4dc0451343101a6d43dfe56302a2dbe6e2e32cc17a + name: gcc-toolset-13-gcc + evr: 13.3.1-2.2.el9_5 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/l/libomp-18.1.8-1.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 1341005 + checksum: sha256:f86d430e33c6eb64765484461a5788fdc10a9cfcb0b52ef64631e54e3a7ea8fe + name: libomp + evr: 18.1.8-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/l/libuv-1.42.0-2.el9_4.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 1300269 + checksum: sha256:f9dfa0dc965675730184604570c6a2aa95ddc2dfa6a7cb209514b1e744a4e3d7 + name: libuv + evr: 1:1.42.0-2.el9_4 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/l/lld-18.1.8-1.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 1591696 + checksum: sha256:01e64fc77d3725017a60614d44df890fb7f042e03f8e67de4645a1d2a65b2daf + name: lld + evr: 18.1.8-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/l/llvm-18.1.8-3.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 62458040 + checksum: sha256:1d34abbe3771fe634129faa11d52c7a62ecb66c028bf2c4a1d497a2476bb8d23 + name: llvm + evr: 18.1.8-3.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/p/python-distro-1.5.0-7.el9.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 66472 + checksum: sha256:cb263958210ce5470439a4123f81f79765eda41f07709d840c13f72875db9c4b + name: python-distro + evr: 1.5.0-7.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/appstream/source/SRPMS/Packages/r/rust-1.79.0-3.el9_5.src.rpm + repoid: ubi-9-for-x86_64-appstream-source-rpms + size: 163853739 + checksum: sha256:f38e9b64e08dda92fc8fcfc63bd309c956c6d837c60c8090e158e0e12dca079b + name: rust + evr: 1.79.0-3.el9_5 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/a/audit-3.1.5-1.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 1252866 + checksum: sha256:05d66fdb25dbad2e629c90f0c90cc64d446f2fe1811d73d270190922621cbf3e + name: audit + evr: 3.1.5-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/d/diffutils-3.7-12.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 1477522 + checksum: sha256:7a10e2d961f8d755f8ccf51a1fb7f68687671b82d9486e4b8d648561af1a185e + name: diffutils + evr: 3.7-12.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/g/gcc-11.5.0-5.el9_5.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 81877102 + checksum: sha256:ed35dd39cd89aec444199a916667169638150fd12199dbb3c3d2638e43121565 + name: gcc + evr: 11.5.0-5.el9_5 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/j/jansson-2.14-1.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 447607 + checksum: sha256:f15174491e4b92ca0c70b85b57cc8eac4373c424fc1c78e6bf492f99f28cb77b + name: jansson + evr: 2.14-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/l/libedit-3.1-38.20210216cvs.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 531597 + checksum: sha256:067e19c3ad8c9254119e7918ef7d2af3c3d33d364d34016f4b65fb71eb1676b3 + name: libedit + evr: 3.1-38.20210216cvs.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/l/libselinux-3.6-1.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 268594 + checksum: sha256:cc4ad1925bfe7cbdf29ec71bf7fd743017f05a92ae1fa94d9b0814fe3cf557a6 + name: libselinux + evr: 3.6-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/l/libsemanage-3.6-2.1.el9_5.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 217965 + checksum: sha256:e59edae9373828841f89176c798609b5c5867eeaecba2672c0c1e3b7406d9c80 + name: libsemanage + evr: 3.6-2.1.el9_5 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/n/ncurses-6.2-10.20210508.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 3587693 + checksum: sha256:0aa2d8068439cb17c73b678a8c9290e3e9aef0011b7aaa9fa5b24739297b22e4 + name: ncurses + evr: 6.2-10.20210508.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/p/policycoreutils-3.6-2.1.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 7982064 + checksum: sha256:3ee0c11e4cb602eb81993a8492688246c3d750bc0f592ba895dbce0aa734580a + name: policycoreutils + evr: 3.6-2.1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/baseos/source/SRPMS/Packages/s/setools-4.4.4-1.el9.src.rpm + repoid: ubi-9-for-x86_64-baseos-source-rpms + size: 416171 + checksum: sha256:6e57d0e6a49d784f9ac26173e7dc42ccdb7cf82f174c5c7b0a04e19551058fc6 + name: setools + evr: 4.4.4-1.el9 + - url: https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi9/9/x86_64/codeready-builder/source/SRPMS/Packages/n/ninja-build-1.10.2-6.el9.src.rpm + repoid: codeready-builder-for-ubi-9-x86_64-source-rpms + size: 227908 + checksum: sha256:0461eebf9c0def0b11f42b9f7e7a455a945da6cbd4796ff015eb2a1dcbae175b + name: ninja-build + evr: 1.10.2-6.el9 + module_metadata: []