diff --git a/.github/workflows/qemu-kubevirt.yaml b/.github/workflows/qemu-kubevirt.yaml index 9704c3b..11aaa40 100644 --- a/.github/workflows/qemu-kubevirt.yaml +++ b/.github/workflows/qemu-kubevirt.yaml @@ -383,11 +383,15 @@ jobs: git clone https://github.com/kubevirt/kubevirt.git cd kubevirt - git checkout v1.5.0 + KV_VER=v1.8.2 - git apply $EDV_HOME/kubevirt-patch/0001-Bump-dependency-versions-for-kubevirt-v1.5.0.patch + git checkout $KV_VER - git apply $EDV_HOME/kubevirt-patch/0001-Patching-Kubevirt-with-GTK-libraries_v1.patch + cp $EDV_HOME/kubevirt-patch/$KV_VER/WORKSPACE ./WORKSPACE + + cp $EDV_HOME/kubevirt-patch/$KV_VER/rpm-BUILD.bazel ./rpm/BUILD.bazel + + cp $EDV_HOME/kubevirt-patch/$KV_VER/cmd-virtlauncher-BUILD.bazel ./cmd/virt-launcher/BUILD.bazel mkdir build cp $EDV_HOME/qemu-artifact/qemu-system-x86_64 build/qemu-system-x86_64 @@ -398,8 +402,8 @@ jobs: export DOCKER_PREFIX=localhost:5000 export DOCKER_TAG=$EDV_VERSION + export BUILD_ARCH=amd64 - make rpm-deps make all make bazel-build-images diff --git a/kubevirt-patch/README.md b/kubevirt-patch/README.md index a4bf55c..2c993b8 100644 --- a/kubevirt-patch/README.md +++ b/kubevirt-patch/README.md @@ -17,7 +17,7 @@ The following will be captured in this document: - Build and Deploy Kubevirt > [!Note] -> This has been verified on `Kubevirt Version v1.5.0` +> This has been verified on `Kubevirt Version v1.5.0`, `v1.7.0`, `v1.8.1 CentOS-9-Stream`. > OS and QEMU version provided in default Kubevirt virt-launcher image is ```shell @@ -184,43 +184,41 @@ The original idea to build within the Centos container comes from this [link](ht cd kubevirt ``` -1. Check out the specific kubevirt version you want to build with. - ``` - git checkout v1.5.0 - ``` +1. Check out the specific kubevirt version you want to build with. $KV_VER should be set to either `v1.5.0`, `v1.7.0` or `v1.8.1`. -1. Apply a patch to kubevirt to update dependencies which resolve potential security issues since the original v1.5.0 kubevirt was released. $EDV_HOME should be set to the path to the top level of this repository (e.g. edge-desktop-virtualization). - ```sh - git apply $EDV_HOME/kubevirt-patch/0001-Bump-dependency-versions-for-kubevirt-v1.5.0.patch + ``` + KV_VER=v1.8.1 + git checkout $KV_VER ``` -1. [OPTIONAL] Update kubevirt dependency images using the `make bump-images` command. Note that you may also have to update `go_version` in `WORKSPACE` if applicable. +2. Apply a patched to kubevirt files to update dependencies. $EDV_HOME should be set to the path to the top level of this repository (e.g. edge-desktop-virtualization). -1. Apply the kubevirt patch from this repo to expand kubevirt virt-launcher image with additional dependencies to support GTK - ```sh - git apply $EDV_HOME/kubevirt-patch/0001-Patching-Kubevirt-with-GTK-libraries_v1.patch + ``` + cp $EDV_HOME/kubevirt-patch/$KV_VER/WORKSPACE ./WORKSPACE + cp $EDV_HOME/kubevirt-patch/$KV_VER/rpm-BUILD.bazel ./rpm/BUILD.bazel + cp $EDV_HOME/kubevirt-patch/$KV_VER/cmd-virtlauncher-BUILD.bazel ./cmd/virt-launcher/BUILD.bazel ``` -1. Create a directory to place the custom QEMU binary and copy it from the QEMU build +3. Create a directory to place the custom QEMU binary and copy it from the QEMU build ```sh mkdir build cp ../qemu-9.1.0/build/qemu-system-x86_64 build/qemu-system-x86_64 ``` -1. Obtain the `SHA` hash number of the QEMU binary +4. Obtain the `SHA` hash number of the QEMU binary ```sh QEMU_SHA256="$(sha256sum ./build/qemu-system-x86_64 | cut -d ' ' -f 1)" echo "QEMU_SHA256=$QEMU_SHA256" ``` -1. Patch the top level `WORKSPACE` file in top level `kubevirt` directory. Replace `` with your sha256sum from the previous step +5. Patch the top level `WORKSPACE` file in top level `kubevirt` directory. Replace `` with your sha256sum from the previous step ```sh perl -p -i -e "s||$QEMU_SHA256|g" WORKSPACE ``` -1. Export the location of the docker registry and build tag (local docker registry in this case) +6. Export the location of the docker registry and build tag (local docker registry in this case) ```sh export DOCKER_PREFIX=localhost:5000 @@ -233,14 +231,13 @@ The original idea to build within the Centos container comes from this [link](ht export HTTP_PROXY="http://proxy-dmz.intel.com:912" ``` -1. Build Kubevirt & dependencies. +7. Build Kubevirt & dependencies. ```sh - make rpm-deps make all make bazel-build-images ``` -1. Push the images to the local Docker registry +8. Push the images to the local Docker registry ```sh make push @@ -249,19 +246,19 @@ The original idea to build within the Centos container comes from this [link](ht BUILD_ARCH= DOCKER_PREFIX=localhost:5000 DOCKER_TAG=mybuild hack/push-container-manifest.sh ``` -1. Build manifests referencing the image locations +9. Build manifests referencing the image locations ```sh make manifests ``` -1. To install Kubevirt +10. To install Kubevirt ```sh kubectl apply -f _out/manifests/release/kubevirt-operator.yaml kubectl apply -f _out/manifests/release/kubevirt-cr.yaml ``` -1. Verify Deployment +11. Verify Deployment ```sh kubectl get all -n kubevirt diff --git a/kubevirt-patch/0001-Bump-dependency-versions-for-kubevirt-v1.5.0.patch b/kubevirt-patch/v1.5.0/0001-Bump-dependency-versions-for-kubevirt-v1.5.0.patch similarity index 100% rename from kubevirt-patch/0001-Bump-dependency-versions-for-kubevirt-v1.5.0.patch rename to kubevirt-patch/v1.5.0/0001-Bump-dependency-versions-for-kubevirt-v1.5.0.patch diff --git a/kubevirt-patch/0001-Patching-Kubevirt-with-GTK-libraries_v1.patch b/kubevirt-patch/v1.5.0/0001-Patching-Kubevirt-with-GTK-libraries_v1.patch similarity index 100% rename from kubevirt-patch/0001-Patching-Kubevirt-with-GTK-libraries_v1.patch rename to kubevirt-patch/v1.5.0/0001-Patching-Kubevirt-with-GTK-libraries_v1.patch diff --git a/kubevirt-patch/v1.5.0/WORKSPACE b/kubevirt-patch/v1.5.0/WORKSPACE new file mode 100644 index 0000000..e2e0649 --- /dev/null +++ b/kubevirt-patch/v1.5.0/WORKSPACE @@ -0,0 +1,8787 @@ +workspace(name = "kubevirt") + +# register crosscompiler toolchains +load("//bazel/toolchain:toolchain.bzl", "register_all_toolchains") + +register_all_toolchains() + +load( + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_archive", + "http_file", +) +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") + +http_archive( + name = "rules_python", + sha256 = "934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + urls = [ + "https://github.com/bazelbuild/rules_python/releases/download/0.3.0/rules_python-0.3.0.tar.gz", + "https://storage.googleapis.com/builddeps/934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + ], +) + +# Bazel buildtools prebuilt binaries +http_archive( + name = "buildifier_prebuilt", + sha256 = "8ada9d88e51ebf5a1fdff37d75ed41d51f5e677cdbeafb0a22dda54747d6e07e", + strip_prefix = "buildifier-prebuilt-6.4.0", + urls = [ + "http://github.com/keith/buildifier-prebuilt/archive/6.4.0.tar.gz", + "https://storage.googleapis.com/builddeps/8ada9d88e51ebf5a1fdff37d75ed41d51f5e677cdbeafb0a22dda54747d6e07e", + ], +) + +load("@buildifier_prebuilt//:deps.bzl", "buildifier_prebuilt_deps") + +buildifier_prebuilt_deps() + +# Additional bazel rules +http_archive( + name = "rules_proto", + sha256 = "bc12122a5ae4b517fa423ea03a8d82ea6352d5127ea48cb54bc324e8ab78493c", + strip_prefix = "rules_proto-af6481970a34554c6942d993e194a9aed7987780", + urls = [ + "https://github.com/bazelbuild/rules_proto/archive/af6481970a34554c6942d993e194a9aed7987780.tar.gz", + "https://storage.googleapis.com/builddeps/bc12122a5ae4b517fa423ea03a8d82ea6352d5127ea48cb54bc324e8ab78493c", + ], +) + +load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains") + +rules_proto_dependencies() + +rules_proto_toolchains() + +http_archive( + name = "io_bazel_rules_go", + sha256 = "80a98277ad1311dacd837f9b16db62887702e9f1d1c4c9f796d0121a46c8e184", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip", + "https://github.com/bazelbuild/rules_go/releases/download/v0.46.0/rules_go-v0.46.0.zip", + "https://storage.googleapis.com/builddeps/80a98277ad1311dacd837f9b16db62887702e9f1d1c4c9f796d0121a46c8e184", + ], +) + +load("@buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains") + +buildifier_prebuilt_register_toolchains() + +http_archive( + name = "bazel_gazelle", + sha256 = "d3fa66a39028e97d76f9e2db8f1b0c11c099e8e01bf363a923074784e451f809", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.33.0/bazel-gazelle-v0.33.0.tar.gz", + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.33.0/bazel-gazelle-v0.33.0.tar.gz", + "https://storage.googleapis.com/builddeps/d3fa66a39028e97d76f9e2db8f1b0c11c099e8e01bf363a923074784e451f809", + ], +) + +http_archive( + name = "io_bazel_rules_docker", + sha256 = "95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + strip_prefix = "rules_docker-0.16.0", + urls = [ + "https://github.com/bazelbuild/rules_docker/releases/download/v0.16.0/rules_docker-v0.16.0.tar.gz", + "https://storage.googleapis.com/builddeps/95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + ], +) + +http_archive( + name = "com_github_ash2k_bazel_tools", + sha256 = "46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + strip_prefix = "bazel-tools-19b174803c0db1a01e77f10fa2079c35f54eed6e", + urls = [ + "https://github.com/ash2k/bazel-tools/archive/19b174803c0db1a01e77f10fa2079c35f54eed6e.zip", + "https://storage.googleapis.com/builddeps/46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + ], +) + +# Disk images +http_file( + name = "alpine_image", + sha256 = "f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/x86_64/alpine-virt-3.20.1-x86_64.iso", + "https://storage.googleapis.com/builddeps/f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + ], +) + +http_file( + name = "alpine_image_aarch64", + sha256 = "ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/aarch64/alpine-virt-3.20.1-aarch64.iso", + "https://storage.googleapis.com/builddeps/ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + ], +) + +http_file( + name = "alpine_image_s390x", + sha256 = "4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/s390x/alpine-standard-3.18.8-s390x.iso", + "https://storage.googleapis.com/builddeps/4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + ], +) + +http_file( + name = "cirros_image", + sha256 = "932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-x86_64-disk.img", + "https://storage.googleapis.com/builddeps/932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + ], +) + +http_file( + name = "cirros_image_aarch64", + sha256 = "889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-aarch64-disk.img", + "https://storage.googleapis.com/builddeps/889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + ], +) + +http_file( + name = "virtio_win_image", + sha256 = "57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + urls = [ + "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.266-1/virtio-win-0.1.266.iso", + "https://storage.googleapis.com/builddeps/57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + ], +) + +http_archive( + name = "bazeldnf", + sha256 = "fb24d80ad9edad0f7bd3000e8cffcfbba89cc07e495c47a7d3b1f803bd527a40", + urls = [ + "https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9.tar.gz", + "https://storage.googleapis.com/builddeps/fb24d80ad9edad0f7bd3000e8cffcfbba89cc07e495c47a7d3b1f803bd527a40", + ], +) + +load( + "@io_bazel_rules_go//go:deps.bzl", + "go_register_toolchains", + "go_rules_dependencies", +) +load("@bazeldnf//:deps.bzl", "bazeldnf_dependencies", "rpm") + +go_rules_dependencies() + +go_register_toolchains( + go_version = "1.23.4", + nogo = "@//:nogo_vet", +) + +load("@com_github_ash2k_bazel_tools//goimports:deps.bzl", "goimports_dependencies") + +goimports_dependencies() + +load( + "@bazel_gazelle//:deps.bzl", + "gazelle_dependencies", + "go_repository", +) + +go_repository( + name = "org_golang_google_grpc", + build_file_proto_mode = "disable", + importpath = "google.golang.org/grpc", + sum = "h1:BjnpXut1btbtgN/6sp+brB2Kbm2LjNXnidYujAVbSoQ=", + version = "v1.58.3", +) + +go_repository( + name = "org_golang_google_genproto_googleapis_rpc", + build_file_proto_mode = "disable_global", + importpath = "google.golang.org/genproto/googleapis/rpc", + sum = "h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4=", + version = "v0.0.0-20230822172742-b8732ec3820d", +) + +gazelle_dependencies() + +bazeldnf_dependencies() + +load( + "@bazel_tools//tools/build_defs/repo:git.bzl", + "git_repository", +) + +# Winrmcli dependencies +go_repository( + name = "com_github_masterzen_winrmcli", + commit = "c85a68ee8b6e3ac95af2a5fd62d2f41c9e9c5f32", + importpath = "github.com/masterzen/winrm-cli", +) + +# Winrmcp deps +go_repository( + name = "com_github_packer_community_winrmcp", + commit = "c76d91c1e7db27b0868c5d09e292bb540616c9a2", + importpath = "github.com/packer-community/winrmcp", +) + +go_repository( + name = "com_github_masterzen_winrm_cli", + commit = "6f0c57dee4569c04f64c44c335752b415e5d73a7", + importpath = "github.com/masterzen/winrm-cli", +) + +go_repository( + name = "com_github_masterzen_winrm", + commit = "1d17eaf15943ca3554cdebb3b1b10aaa543a0b7e", + importpath = "github.com/masterzen/winrm", +) + +go_repository( + name = "com_github_nu7hatch_gouuid", + commit = "179d4d0c4d8d407a32af483c2354df1d2c91e6c3", + importpath = "github.com/nu7hatch/gouuid", +) + +go_repository( + name = "com_github_dylanmei_iso8601", + commit = "2075bf119b58e5576c6ed9f867b8f3d17f2e54d4", + importpath = "github.com/dylanmei/iso8601", +) + +go_repository( + name = "com_github_gofrs_uuid", + commit = "abfe1881e60ef34074c1b8d8c63b42565c356ed6", + importpath = "github.com/gofrs/uuid", +) + +go_repository( + name = "com_github_christrenkamp_goxpath", + commit = "c5096ec8773dd9f554971472081ddfbb0782334e", + importpath = "github.com/ChrisTrenkamp/goxpath", +) + +go_repository( + name = "com_github_azure_go_ntlmssp", + commit = "4a21cbd618b459155f8b8ee7f4491cd54f5efa77", + importpath = "github.com/Azure/go-ntlmssp", +) + +go_repository( + name = "com_github_masterzen_simplexml", + commit = "31eea30827864c9ab643aa5a0d5b2d4988ec8409", + importpath = "github.com/masterzen/simplexml", +) + +go_repository( + name = "org_golang_x_crypto", + commit = "4def268fd1a49955bfb3dda92fe3db4f924f2285", + importpath = "golang.org/x/crypto", +) + +# override rules_docker issue with this dependency +# rules_docker 0.16 uses 0.1.4, let's grab by commit +go_repository( + name = "com_github_google_go_containerregistry", + commit = "8a2841911ffee4f6892ca0083e89752fb46c48dd", # v0.1.4 + importpath = "github.com/google/go-containerregistry", +) + +# bazel docker rules +load( + "@io_bazel_rules_docker//container:container.bzl", + "container_image", + "container_pull", +) +load( + "@io_bazel_rules_docker//repositories:repositories.bzl", + container_repositories = "repositories", +) + +container_repositories() + +load("@io_bazel_rules_docker//repositories:deps.bzl", container_deps = "deps") + +container_deps() + +# Pull go_image_base +container_pull( + name = "go_image_base", + digest = "sha256:a7af3ef5d69f6534ba0492cc7d6b8fbcffddcb02511b45becc2fac752f907584", + registry = "gcr.io", + repository = "distroless/base-debian12", +) + +container_pull( + name = "go_image_base_aarch64", + digest = "sha256:198302a46cd40ab2e24ee54d39ba0919a431e59289fd7b87f798b62e2076c62a", + registry = "gcr.io", + repository = "distroless/base-debian12", +) + +container_pull( + name = "go_image_base_s390x", + digest = "sha256:642791d0afe3d071e365923e65203074f30bad4ca621309d2eab52bf2d32077e", + registry = "gcr.io", + repository = "distroless/base-debian12", +) + +# Pull fedora container-disk preconfigured with ci tooling +# like stress and qemu guest agent pre-configured +# TODO build fedora_with_test_tooling for multi-arch +container_pull( + name = "fedora_with_test_tooling", + digest = "sha256:ffcfed26f1784535ec5a2fed49ed80ccfd774aa09c665f95835c3d3bf3ec37aa", + registry = "quay.io", + repository = "kubevirtci/fedora-with-test-tooling", +) + +container_pull( + name = "alpine_with_test_tooling", + digest = "sha256:4a6c258a75cff2190d768ab06e57dbf375bedb260ce4ba79dd249f077e769dc5", + registry = "quay.io", + repository = "kubevirtci/alpine-with-test-tooling-container-disk", + tag = "2404181910-1c58677", +) + +container_pull( + name = "fedora_with_test_tooling_aarch64", + digest = "sha256:bae2ed95318223e6bd367efbd2839952c698b938f855684dc48eff29a2bbc9af", + registry = "quay.io", + repository = "kubevirtci/fedora-with-test-tooling", +) + +container_pull( + name = "fedora_with_test_tooling_s390x", + digest = "sha256:43eb8c7942c98e5380a7ec816a2072617184a1d3ec2bcf225539db412d56ea3e", + registry = "quay.io", + repository = "kubevirtci/fedora-with-test-tooling", +) + +container_pull( + name = "alpine-ext-kernel-boot-demo-container-base", + digest = "sha256:a2ddb2f568bf3814e594a14bc793d5a655a61d5983f3561d60d02afa7bbc56b4", + registry = "quay.io", + repository = "kubevirt/alpine-ext-kernel-boot-demo", +) + +# TODO build fedora_realtime for multi-arch +container_pull( + name = "fedora_realtime", + digest = "sha256:437f4e02986daf0058239f4a282d32304dcac629d5d1b4c75a74025f1ce22811", + registry = "quay.io", + repository = "kubevirt/fedora-realtime-container-disk", +) + +load( + "@io_bazel_rules_docker//go:image.bzl", + _go_image_repos = "repositories", +) + +_go_image_repos() + +http_archive( + name = "io_bazel_rules_container_rpm", + sha256 = "151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + strip_prefix = "rules_container_rpm-0.0.5", + urls = [ + "https://github.com/rmohr/rules_container_rpm/archive/v0.0.5.tar.gz", + "https://storage.googleapis.com/builddeps/151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + ], +) + +http_archive( + name = "libguestfs-appliance", + sha256 = "124d6325a799e958843be4818ef2c32661755be1c56e519665779948861b04f6", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.48.4-qcow2-linux-5.14.0-183-centos9.tar.xz", + ], +) + +# Get container-disk-v1alpha RPM's +http_file( + name = "qemu-img", + sha256 = "669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea", + urls = ["https://storage.googleapis.com/builddeps/669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea"], +) + +# some repos which are not part of go_rules anymore +go_repository( + name = "com_github_golang_glog", + importpath = "github.com/golang/glog", + sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=", + version = "v0.0.0-20160126235308-23def4e6c14b", +) + +go_repository( + name = "org_golang_x_net", + importpath = "golang.org/x/net", + sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=", + version = "v0.0.0-20190311183353-d8887717615a", +) + +go_repository( + name = "org_golang_x_text", + importpath = "golang.org/x/text", + sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=", + version = "v0.3.0", +) + +register_toolchains("//:py_toolchain") + +go_repository( + name = "org_golang_x_mod", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/mod", + sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", + version = "v0.3.0", +) + +go_repository( + name = "org_golang_x_xerrors", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/xerrors", + sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=", + version = "v0.0.0-20200804184101-5ec99f83aff1", +) + +rpm( + name = "acl-0__2.3.1-4.el9.aarch64", + sha256 = "a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/acl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.s390x", + sha256 = "5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/acl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.x86_64", + sha256 = "dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/acl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "alternatives-0__1.24-1.el9.aarch64", + sha256 = "a9bba5fd3731426733609e996881cddb0775e979091fab91a3878178a63c7656", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/alternatives-1.24-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a9bba5fd3731426733609e996881cddb0775e979091fab91a3878178a63c7656", + ], +) + +rpm( + name = "alternatives-0__1.24-1.el9.s390x", + sha256 = "009eeff2a85e9682beb3d576e2a2359c83efa71371464e6021e9b4e92f32af36", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/alternatives-1.24-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/009eeff2a85e9682beb3d576e2a2359c83efa71371464e6021e9b4e92f32af36", + ], +) + +rpm( + name = "alternatives-0__1.24-1.el9.x86_64", + sha256 = "b58e7ea30c27ecb321d9a279b95b62aef59d92173714fce859bfb359ee231ff3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/alternatives-1.24-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b58e7ea30c27ecb321d9a279b95b62aef59d92173714fce859bfb359ee231ff3", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-2.el9.aarch64", + sha256 = "884af5b0bb2e8284f46c9e42eaae47f19d04384a4026d1648efb03bc0b70528f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/audit-libs-3.1.5-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/884af5b0bb2e8284f46c9e42eaae47f19d04384a4026d1648efb03bc0b70528f", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-2.el9.s390x", + sha256 = "70c209db3a1e6962a46d7ee2dccb685b44e1d13a6daa8351b094f67d97849db2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/audit-libs-3.1.5-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/70c209db3a1e6962a46d7ee2dccb685b44e1d13a6daa8351b094f67d97849db2", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-2.el9.x86_64", + sha256 = "b229e64b3c335e9a1de2587c639d8f05c7664d1effd0defb2ea2a7b91863d973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b229e64b3c335e9a1de2587c639d8f05c7664d1effd0defb2ea2a7b91863d973", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-2.el9.x86_64", + sha256 = "f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.aarch64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.s390x", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.x86_64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.aarch64", + sha256 = "acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bash-5.1.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.s390x", + sha256 = "7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bash-5.1.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.x86_64", + sha256 = "823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bash-5.1.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + ], +) + +rpm( + name = "binutils-0__2.35.2-60.el9.aarch64", + sha256 = "7a616e06890a1881b5706123076a41871ad9c4ce48007492eb1d7f7c51c63470", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-2.35.2-60.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7a616e06890a1881b5706123076a41871ad9c4ce48007492eb1d7f7c51c63470", + ], +) + +rpm( + name = "binutils-0__2.35.2-60.el9.s390x", + sha256 = "1a486011c22b6d5dc0eef2694b4f4bddffe7be07ecb36880b0ace9ce61b41e2b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-2.35.2-60.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a486011c22b6d5dc0eef2694b4f4bddffe7be07ecb36880b0ace9ce61b41e2b", + ], +) + +rpm( + name = "binutils-0__2.35.2-60.el9.x86_64", + sha256 = "4ee6e13f84fcb44ebeea861296314f8bacff84cfdaa977f1c838b9ffbbf83239", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-2.35.2-60.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4ee6e13f84fcb44ebeea861296314f8bacff84cfdaa977f1c838b9ffbbf83239", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-60.el9.aarch64", + sha256 = "aeb93beb571d9f28349a51c9eb8a8f9942d3fcd8218bfdaaa7fadd197ae97d7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-gold-2.35.2-60.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/aeb93beb571d9f28349a51c9eb8a8f9942d3fcd8218bfdaaa7fadd197ae97d7e", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-60.el9.s390x", + sha256 = "2378eff96468b1f91d553eb9ed2c85693a7cef8d9b0679c89658d16c1acfa7d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-gold-2.35.2-60.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2378eff96468b1f91d553eb9ed2c85693a7cef8d9b0679c89658d16c1acfa7d0", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-60.el9.x86_64", + sha256 = "3af2c8f247995c8d59064e45fdd7fb7871bd35ae69736ec7db5f93d96ce49a6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-gold-2.35.2-60.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3af2c8f247995c8d59064e45fdd7fb7871bd35ae69736ec7db5f93d96ce49a6e", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.aarch64", + sha256 = "79f097e912369d002db05995f4ba7b47f83a4fd2c9b5d6b6640066e1961f0f83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-1.0.8-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/79f097e912369d002db05995f4ba7b47f83a4fd2c9b5d6b6640066e1961f0f83", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.s390x", + sha256 = "affd546407a3872a8db4fb0bc98c6c7aa46f59277be6f6bc8097f1709f8ec3d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-1.0.8-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/affd546407a3872a8db4fb0bc98c6c7aa46f59277be6f6bc8097f1709f8ec3d0", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.x86_64", + sha256 = "930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.aarch64", + sha256 = "065787a932991bd8e7a705d8a977658cafab06f78cf2e405b68978a02718998e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/065787a932991bd8e7a705d8a977658cafab06f78cf2e405b68978a02718998e", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.s390x", + sha256 = "26d36d213959fba230d4c8550410d66e04b279ac8ccee7b8600680a87dde2d73", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/26d36d213959fba230d4c8550410d66e04b279ac8ccee7b8600680a87dde2d73", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.x86_64", + sha256 = "84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.aarch64", + sha256 = "fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/capstone-4.0.2-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.s390x", + sha256 = "1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/capstone-4.0.2-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.x86_64", + sha256 = "f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/capstone-4.0.2-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-26.el9.aarch64", + sha256 = "8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-26.el9.s390x", + sha256 = "8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-26.el9.x86_64", + sha256 = "8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-26.el9.aarch64", + sha256 = "3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-release-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-26.el9.s390x", + sha256 = "3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-release-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-26.el9.x86_64", + sha256 = "3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-release-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-26.el9.aarch64", + sha256 = "eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-26.el9.s390x", + sha256 = "eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-repos-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-26.el9.x86_64", + sha256 = "eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.aarch64", + sha256 = "ff8039cbb4fc624462abb4f556535fff128c99685834f6137db564d1b5a24c95", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/coreutils-single-8.32-39.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ff8039cbb4fc624462abb4f556535fff128c99685834f6137db564d1b5a24c95", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.s390x", + sha256 = "33f20a9d1a8dcbe9b6e587bda728a91b5b014cd0b0c979c7908135c5fed23115", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/coreutils-single-8.32-39.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/33f20a9d1a8dcbe9b6e587bda728a91b5b014cd0b0c979c7908135c5fed23115", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.x86_64", + sha256 = "09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + ], +) + +rpm( + name = "cpp-0__11.5.0-4.el9.aarch64", + sha256 = "19577d2c9b3d51e2b908f1bc63aea2bbeb8d6a2162f7d39553a79e3bce170744", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/cpp-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19577d2c9b3d51e2b908f1bc63aea2bbeb8d6a2162f7d39553a79e3bce170744", + ], +) + +rpm( + name = "cpp-0__11.5.0-4.el9.s390x", + sha256 = "a784fc822734bfee45c573cf29c0b51245d559119827f3c99f77e98b731a56c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/cpp-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a784fc822734bfee45c573cf29c0b51245d559119827f3c99f77e98b731a56c3", + ], +) + +rpm( + name = "cpp-0__11.5.0-4.el9.x86_64", + sha256 = "1f60e22ef7f53e4819c524d44a73d0dbe54d8a3dc2f985c3294bc18c9f9111fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cpp-11.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f60e22ef7f53e4819c524d44a73d0dbe54d8a3dc2f985c3294bc18c9f9111fd", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.aarch64", + sha256 = "d92900088b558cd3c96c63db24b048a0f3ea575a0f8bfe66c26df4acfcb2f811", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-2.9.6-27.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d92900088b558cd3c96c63db24b048a0f3ea575a0f8bfe66c26df4acfcb2f811", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.s390x", + sha256 = "f090c83e4fa8e5d170aaf13fe5c7795213d9d2ac0af16f92c60d6425a7b23253", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-2.9.6-27.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f090c83e4fa8e5d170aaf13fe5c7795213d9d2ac0af16f92c60d6425a7b23253", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.x86_64", + sha256 = "be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.aarch64", + sha256 = "bfd16ac0aebb165d43d3139448ab8eac66d4d67c9eac506c3f3bef799f1352c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.6-27.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bfd16ac0aebb165d43d3139448ab8eac66d4d67c9eac506c3f3bef799f1352c2", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.s390x", + sha256 = "bac458a7a96be0b856d6c3294c5675fa159694d111fae63819f0a70dc3c6ccf0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-dicts-2.9.6-27.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bac458a7a96be0b856d6c3294c5675fa159694d111fae63819f0a70dc3c6ccf0", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.x86_64", + sha256 = "01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + ], +) + +rpm( + name = "crypto-policies-0__20240828-2.git626aa59.el9.aarch64", + sha256 = "3479b2aedc8b1bc5d5a0567f7117cf90702012b88fe7956775a4df58a4bcf65c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-20240828-2.git626aa59.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3479b2aedc8b1bc5d5a0567f7117cf90702012b88fe7956775a4df58a4bcf65c", + ], +) + +rpm( + name = "crypto-policies-0__20240828-2.git626aa59.el9.s390x", + sha256 = "3479b2aedc8b1bc5d5a0567f7117cf90702012b88fe7956775a4df58a4bcf65c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-20240828-2.git626aa59.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3479b2aedc8b1bc5d5a0567f7117cf90702012b88fe7956775a4df58a4bcf65c", + ], +) + +rpm( + name = "crypto-policies-0__20240828-2.git626aa59.el9.x86_64", + sha256 = "3479b2aedc8b1bc5d5a0567f7117cf90702012b88fe7956775a4df58a4bcf65c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-20240828-2.git626aa59.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3479b2aedc8b1bc5d5a0567f7117cf90702012b88fe7956775a4df58a4bcf65c", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-31.el9.aarch64", + sha256 = "7cbda5bca46c13e80bd28391e998b8695e93fb450c40c99ffb52e3b3a74a2ac2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-minimal-7.76.1-31.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7cbda5bca46c13e80bd28391e998b8695e93fb450c40c99ffb52e3b3a74a2ac2", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-31.el9.s390x", + sha256 = "1f43a0fc561b1055e1302964f64e042f27e5fa8cfc56f368736cf76c39a3ee6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-minimal-7.76.1-31.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1f43a0fc561b1055e1302964f64e042f27e5fa8cfc56f368736cf76c39a3ee6b", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64", + sha256 = "12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x", + sha256 = "0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64", + sha256 = "c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.aarch64", + sha256 = "898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.s390x", + sha256 = "e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.x86_64", + sha256 = "fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + ], +) + +rpm( + name = "daxctl-libs-0__78-2.el9.x86_64", + sha256 = "1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/daxctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.aarch64", + sha256 = "29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.s390x", + sha256 = "a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.x86_64", + sha256 = "d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.aarch64", + sha256 = "28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-broker-28-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.s390x", + sha256 = "d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-broker-28-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.x86_64", + sha256 = "dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-broker-28-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.aarch64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.s390x", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.x86_64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.aarch64", + sha256 = "4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-libs-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.s390x", + sha256 = "03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-libs-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.x86_64", + sha256 = "2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-libs-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + ], +) + +rpm( + name = "device-mapper-9__1.02.202-5.el9.aarch64", + sha256 = "9f9ae24ab60c52fd36b006c12cc5142122909eb20ed75289f2534e284c2b6ef1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-1.02.202-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9f9ae24ab60c52fd36b006c12cc5142122909eb20ed75289f2534e284c2b6ef1", + ], +) + +rpm( + name = "device-mapper-9__1.02.202-5.el9.s390x", + sha256 = "00c39a6da51bda146b417e551161bd56b7046f473105b27f66d50baa731eb275", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-1.02.202-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/00c39a6da51bda146b417e551161bd56b7046f473105b27f66d50baa731eb275", + ], +) + +rpm( + name = "device-mapper-9__1.02.202-5.el9.x86_64", + sha256 = "c1f1107a563b229dd79f603a77d17f5d1ffe783b512f483b39d2f255988f32f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.202-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c1f1107a563b229dd79f603a77d17f5d1ffe783b512f483b39d2f255988f32f0", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.202-5.el9.aarch64", + sha256 = "01a3bb41866b6f9a4b26d64d4c96536c6b54fd5257d733ed6eb031a5ca45933b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.202-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01a3bb41866b6f9a4b26d64d4c96536c6b54fd5257d733ed6eb031a5ca45933b", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.202-5.el9.s390x", + sha256 = "5c9c08d0f459b906b53277c118f32747503f733474b3906a7d9934267c2d3ca9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-libs-1.02.202-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c9c08d0f459b906b53277c118f32747503f733474b3906a7d9934267c2d3ca9", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.202-5.el9.x86_64", + sha256 = "a2125d52a599d8c7eeeb2eb33174b93d319bdcd8ed2b5fbb2fa02cafc55e7a72", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.202-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2125d52a599d8c7eeeb2eb33174b93d319bdcd8ed2b5fbb2fa02cafc55e7a72", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-35.el9.aarch64", + sha256 = "00522ac2ae727d6a368b5168a7c9397a0d636fc22507551af1ed31a1eb1b48b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-multipath-libs-0.8.7-35.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/00522ac2ae727d6a368b5168a7c9397a0d636fc22507551af1ed31a1eb1b48b3", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-35.el9.x86_64", + sha256 = "c0474240bb6028ed913e9c602f395dfa95daa9aea23d9c28132bc6bf522144f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-multipath-libs-0.8.7-35.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c0474240bb6028ed913e9c602f395dfa95daa9aea23d9c28132bc6bf522144f0", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.aarch64", + sha256 = "4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/diffutils-3.7-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.s390x", + sha256 = "e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/diffutils-3.7-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.x86_64", + sha256 = "fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/diffutils-3.7-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + ], +) + +rpm( + name = "dmidecode-1__3.6-1.el9.aarch64", + sha256 = "6cacf42907aaa5bbad69c2ff24eff8b09a1d007a1e630f4b670edb97bbc29bf0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dmidecode-3.6-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6cacf42907aaa5bbad69c2ff24eff8b09a1d007a1e630f4b670edb97bbc29bf0", + ], +) + +rpm( + name = "dmidecode-1__3.6-1.el9.x86_64", + sha256 = "e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-6.el9.aarch64", + sha256 = "918d3065ae8fdba01937d77a763fe4f7a53c1c5adaab20740bb84dec84832e85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-1.46.5-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/918d3065ae8fdba01937d77a763fe4f7a53c1c5adaab20740bb84dec84832e85", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-6.el9.s390x", + sha256 = "5c46d513d284aff03299c746a0a900288ecf5a4bd10965f29ca359c45f8a8b7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-1.46.5-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c46d513d284aff03299c746a0a900288ecf5a4bd10965f29ca359c45f8a8b7c", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-6.el9.x86_64", + sha256 = "bae33f95a25f1e3a7d8149b8df5ebf540708718fde2ccb06196a83300e913d2e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-1.46.5-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bae33f95a25f1e3a7d8149b8df5ebf540708718fde2ccb06196a83300e913d2e", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-6.el9.aarch64", + sha256 = "9db522d64d5576fefbf4c3d3afd26617bd6bc34d17344eaff4221c953f41c51a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.46.5-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9db522d64d5576fefbf4c3d3afd26617bd6bc34d17344eaff4221c953f41c51a", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-6.el9.s390x", + sha256 = "d38248f5fa6b12bb3e761d983ea09549be8a92901b4a873baea9b1b9da13838e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-libs-1.46.5-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d38248f5fa6b12bb3e761d983ea09549be8a92901b4a873baea9b1b9da13838e", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-6.el9.x86_64", + sha256 = "9a0678a22633f677433e96f3e5707f569f54dee31f648e5f1c48a16fd02ba6f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.46.5-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9a0678a22633f677433e96f3e5707f569f54dee31f648e5f1c48a16fd02ba6f0", + ], +) + +rpm( + name = "edk2-aarch64-0__20241117-2.el9.aarch64", + sha256 = "678e5bd57749f27d5a2b23e8f2f9127583a8233ddb9d4c060254e81e2a3c9eb1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/edk2-aarch64-20241117-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/678e5bd57749f27d5a2b23e8f2f9127583a8233ddb9d4c060254e81e2a3c9eb1", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-2.el9.x86_64", + sha256 = "a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20241117-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.192-5.el9.aarch64", + sha256 = "9abef21c9d0625d049a9504f9a9e31b8b32e8527be1b7bc2df458e3291bde7ec", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.192-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9abef21c9d0625d049a9504f9a9e31b8b32e8527be1b7bc2df458e3291bde7ec", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.192-5.el9.s390x", + sha256 = "e7a68415c0a9edb702c5bc62b94dec31728b62b8a18721cf8aacf92820fc55fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-debuginfod-client-0.192-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e7a68415c0a9edb702c5bc62b94dec31728b62b8a18721cf8aacf92820fc55fc", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.192-5.el9.x86_64", + sha256 = "1d9f39d7d7dc70dc990c437d0ce2bf5d05a2a6e54733d9eba5e6d896a50fca8f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.192-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1d9f39d7d7dc70dc990c437d0ce2bf5d05a2a6e54733d9eba5e6d896a50fca8f", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.192-5.el9.aarch64", + sha256 = "a6c90abc6d18862a3384c7f6122b95a159de8276579466682aaaa098dca09161", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.192-5.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a6c90abc6d18862a3384c7f6122b95a159de8276579466682aaaa098dca09161", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.192-5.el9.s390x", + sha256 = "a6c90abc6d18862a3384c7f6122b95a159de8276579466682aaaa098dca09161", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-default-yama-scope-0.192-5.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a6c90abc6d18862a3384c7f6122b95a159de8276579466682aaaa098dca09161", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.192-5.el9.x86_64", + sha256 = "a6c90abc6d18862a3384c7f6122b95a159de8276579466682aaaa098dca09161", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.192-5.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a6c90abc6d18862a3384c7f6122b95a159de8276579466682aaaa098dca09161", + ], +) + +rpm( + name = "elfutils-libelf-0__0.192-5.el9.aarch64", + sha256 = "087ce52eff3fbd1827c2ea207d5875e1eb7d514db3fb629d3f4e0d1a3c40b10f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libelf-0.192-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/087ce52eff3fbd1827c2ea207d5875e1eb7d514db3fb629d3f4e0d1a3c40b10f", + ], +) + +rpm( + name = "elfutils-libelf-0__0.192-5.el9.s390x", + sha256 = "7b2e5bfb8618200316ed16a82403880f01863ce88c06847d76a72dd836f67c53", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libelf-0.192-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7b2e5bfb8618200316ed16a82403880f01863ce88c06847d76a72dd836f67c53", + ], +) + +rpm( + name = "elfutils-libelf-0__0.192-5.el9.x86_64", + sha256 = "be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.192-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + ], +) + +rpm( + name = "elfutils-libs-0__0.192-5.el9.aarch64", + sha256 = "42ff35b0c2d9c9086d77ef95af57b71eaa4d6ef0dd882dea2699c71995150cbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libs-0.192-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/42ff35b0c2d9c9086d77ef95af57b71eaa4d6ef0dd882dea2699c71995150cbe", + ], +) + +rpm( + name = "elfutils-libs-0__0.192-5.el9.s390x", + sha256 = "c7fcefdcf37543e848de090f16856fe9e92b5035f30577b1521e25441b9ace92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libs-0.192-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c7fcefdcf37543e848de090f16856fe9e92b5035f30577b1521e25441b9ace92", + ], +) + +rpm( + name = "elfutils-libs-0__0.192-5.el9.x86_64", + sha256 = "426053ba41da7ca203edfe860f8b2979cca6210778eb967d0f167cbf3a7966b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libs-0.192-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/426053ba41da7ca203edfe860f8b2979cca6210778eb967d0f167cbf3a7966b5", + ], +) + +rpm( + name = "ethtool-2__6.11-1.el9.aarch64", + sha256 = "25086c6105c5502599a99d3be128aee8cacd181298b342d29d1cdc204de009ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ethtool-6.11-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/25086c6105c5502599a99d3be128aee8cacd181298b342d29d1cdc204de009ce", + ], +) + +rpm( + name = "ethtool-2__6.11-1.el9.s390x", + sha256 = "ea7fab5579e130e6a1dd6b486f594e2120ac60df5a0f194e92e859c0cf79e5ab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ethtool-6.11-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ea7fab5579e130e6a1dd6b486f594e2120ac60df5a0f194e92e859c0cf79e5ab", + ], +) + +rpm( + name = "ethtool-2__6.11-1.el9.x86_64", + sha256 = "41bfba2ca8a62d6b4bc4dd17bda915af208030c86f4ecc295d88e06d54b0c4ab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ethtool-6.11-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/41bfba2ca8a62d6b4bc4dd17bda915af208030c86f4ecc295d88e06d54b0c4ab", + ], +) + +rpm( + name = "expat-0__2.5.0-4.el9.aarch64", + sha256 = "e071ad9e4ac5e4b21adc19304c62b32ac61f0b4dfd17092939eb3eb393f912f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/expat-2.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e071ad9e4ac5e4b21adc19304c62b32ac61f0b4dfd17092939eb3eb393f912f2", + ], +) + +rpm( + name = "expat-0__2.5.0-4.el9.s390x", + sha256 = "4a074438af9dcba19b3a7918d5877a6463a12a42ab0d885c120269b219723ee8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/expat-2.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4a074438af9dcba19b3a7918d5877a6463a12a42ab0d885c120269b219723ee8", + ], +) + +rpm( + name = "expat-0__2.5.0-4.el9.x86_64", + sha256 = "360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.aarch64", + sha256 = "c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/filesystem-3.16-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.s390x", + sha256 = "67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/filesystem-3.16-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.x86_64", + sha256 = "da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/filesystem-3.16-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.aarch64", + sha256 = "de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/findutils-4.8.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.s390x", + sha256 = "627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/findutils-4.8.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.x86_64", + sha256 = "393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/findutils-4.8.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.x86_64", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.x86_64", + sha256 = "8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.x86_64", + sha256 = "ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-common-3.10.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.aarch64", + sha256 = "5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/fuse-libs-2.9.9-17.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.s390x", + sha256 = "89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-libs-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.x86_64", + sha256 = "a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-libs-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.aarch64", + sha256 = "656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gawk-5.1.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.s390x", + sha256 = "acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gawk-5.1.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.x86_64", + sha256 = "6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gawk-5.1.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + ], +) + +rpm( + name = "gcc-0__11.5.0-4.el9.aarch64", + sha256 = "3e69e9371bd387721701475948363b1b9299b11e3ec39c68327e2efdb10582f7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gcc-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3e69e9371bd387721701475948363b1b9299b11e3ec39c68327e2efdb10582f7", + ], +) + +rpm( + name = "gcc-0__11.5.0-4.el9.s390x", + sha256 = "b4c21378a76142bd566241bb137614272b179b17ba1f7ee0753a4f56a162f8d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gcc-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4c21378a76142bd566241bb137614272b179b17ba1f7ee0753a4f56a162f8d8", + ], +) + +rpm( + name = "gcc-0__11.5.0-4.el9.x86_64", + sha256 = "b6fd630a6312e088452e33d255979f486c2e222488d5b4df5c03e4bbdfb8d4e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gcc-11.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b6fd630a6312e088452e33d255979f486c2e222488d5b4df5c03e4bbdfb8d4e3", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.aarch64", + sha256 = "69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gdbm-libs-1.23-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.s390x", + sha256 = "29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gdbm-libs-1.23-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.x86_64", + sha256 = "cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gdbm-libs-1.23-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.aarch64", + sha256 = "66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.s390x", + sha256 = "369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.x86_64", + sha256 = "1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.aarch64", + sha256 = "f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-libs-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.s390x", + sha256 = "d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-libs-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.x86_64", + sha256 = "5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-libs-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.x86_64", + sha256 = "ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib-networking-2.68.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.aarch64", + sha256 = "6d47f73da8f765a536e2647b611017afc13ea5da440efcd9d8d92820e51320b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glib2-2.68.4-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6d47f73da8f765a536e2647b611017afc13ea5da440efcd9d8d92820e51320b9", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.s390x", + sha256 = "4199c2ee05b0e4338d43903665b7f5f02bc04d3fbdf8a5cdcc33ee7ca2ef5d11", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib2-2.68.4-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4199c2ee05b0e4338d43903665b7f5f02bc04d3fbdf8a5cdcc33ee7ca2ef5d11", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.x86_64", + sha256 = "793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib2-2.68.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + ], +) + +rpm( + name = "glibc-0__2.34-160.el9.aarch64", + sha256 = "63c527c40341d966eefa440e5bd1c64293914a6a55c9e529c515a5ef68ba7c25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-2.34-160.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/63c527c40341d966eefa440e5bd1c64293914a6a55c9e529c515a5ef68ba7c25", + ], +) + +rpm( + name = "glibc-0__2.34-160.el9.s390x", + sha256 = "5e9a76b6777b3528554b515bce24d60d0721a372b2859d1bf9fd6e9a5d3a99e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-2.34-160.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5e9a76b6777b3528554b515bce24d60d0721a372b2859d1bf9fd6e9a5d3a99e3", + ], +) + +rpm( + name = "glibc-0__2.34-160.el9.x86_64", + sha256 = "5d110b939795310fe9a570ab265f2360e64408c58f570b400fd33cfdf7677360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-2.34-160.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5d110b939795310fe9a570ab265f2360e64408c58f570b400fd33cfdf7677360", + ], +) + +rpm( + name = "glibc-common-0__2.34-160.el9.aarch64", + sha256 = "653940a8710fd9290c89751f9c096d458596cb20b347e783311e86ffa11883c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-common-2.34-160.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/653940a8710fd9290c89751f9c096d458596cb20b347e783311e86ffa11883c4", + ], +) + +rpm( + name = "glibc-common-0__2.34-160.el9.s390x", + sha256 = "34d3e5b8a78530d0dc4a6ae352bf9acfc2f64e8b80608a6b5e4ece09c856f3eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-common-2.34-160.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/34d3e5b8a78530d0dc4a6ae352bf9acfc2f64e8b80608a6b5e4ece09c856f3eb", + ], +) + +rpm( + name = "glibc-common-0__2.34-160.el9.x86_64", + sha256 = "01a20fb4c90054eb64e4d4b69996892838083b717c8b4a9709d524f4d3045e4f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-common-2.34-160.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/01a20fb4c90054eb64e4d4b69996892838083b717c8b4a9709d524f4d3045e4f", + ], +) + +rpm( + name = "glibc-devel-0__2.34-160.el9.aarch64", + sha256 = "7e5773719c3988813529518896ebd525ca3abcc26d7deb39a1d12a94378aeb6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/glibc-devel-2.34-160.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7e5773719c3988813529518896ebd525ca3abcc26d7deb39a1d12a94378aeb6b", + ], +) + +rpm( + name = "glibc-devel-0__2.34-160.el9.s390x", + sha256 = "aae44eb9a383dc5ca32dc655cc3468cbd0e1b305a87d57488d3ff953357222a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-devel-2.34-160.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/aae44eb9a383dc5ca32dc655cc3468cbd0e1b305a87d57488d3ff953357222a0", + ], +) + +rpm( + name = "glibc-devel-0__2.34-160.el9.x86_64", + sha256 = "6689613028a07990be1ba7747153f81e9f7289d54fb1e42540adff1992672177", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-devel-2.34-160.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6689613028a07990be1ba7747153f81e9f7289d54fb1e42540adff1992672177", + ], +) + +rpm( + name = "glibc-headers-0__2.34-160.el9.s390x", + sha256 = "62d4dba1841ff9ad80ec0936f2806861810d787473f63a2a5a646dc2e74dbbb4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-headers-2.34-160.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/62d4dba1841ff9ad80ec0936f2806861810d787473f63a2a5a646dc2e74dbbb4", + ], +) + +rpm( + name = "glibc-headers-0__2.34-160.el9.x86_64", + sha256 = "55ebe117fd48c1e8982f6f02307b36ee700efbf3b9befafaecefd173dcc8a373", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-headers-2.34-160.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/55ebe117fd48c1e8982f6f02307b36ee700efbf3b9befafaecefd173dcc8a373", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-160.el9.aarch64", + sha256 = "f035fc7eb8a5495d74b10cd29f470e86416c5997bd4fd746edaba9a27e0a59b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-minimal-langpack-2.34-160.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f035fc7eb8a5495d74b10cd29f470e86416c5997bd4fd746edaba9a27e0a59b7", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-160.el9.s390x", + sha256 = "8a8c3371c15b3b24fba9ebc5847b6afa671408bbf0de21749295ae936c45a61a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-minimal-langpack-2.34-160.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8a8c3371c15b3b24fba9ebc5847b6afa671408bbf0de21749295ae936c45a61a", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-160.el9.x86_64", + sha256 = "cd218c7046749e3d1661f95c6a6cead2517549670b13925076711115647689e6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-minimal-langpack-2.34-160.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cd218c7046749e3d1661f95c6a6cead2517549670b13925076711115647689e6", + ], +) + +rpm( + name = "glibc-static-0__2.34-160.el9.aarch64", + sha256 = "8c36b1a1d27bb72fc862a71f9f00a2d9589664312204e710f9b8004a770b4616", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/glibc-static-2.34-160.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8c36b1a1d27bb72fc862a71f9f00a2d9589664312204e710f9b8004a770b4616", + ], +) + +rpm( + name = "glibc-static-0__2.34-160.el9.s390x", + sha256 = "36c28c885bc9ce2d443b9bd438b36db0f988e01acb70446650269034ea17d939", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/glibc-static-2.34-160.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/36c28c885bc9ce2d443b9bd438b36db0f988e01acb70446650269034ea17d939", + ], +) + +rpm( + name = "glibc-static-0__2.34-160.el9.x86_64", + sha256 = "36a556a11ca771dc279b1cf3b8467bf13951348d1dea2600307c18df1d1dd85d", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/glibc-static-2.34-160.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/36a556a11ca771dc279b1cf3b8467bf13951348d1dea2600307c18df1d1dd85d", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.aarch64", + sha256 = "01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gmp-6.2.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.s390x", + sha256 = "c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gmp-6.2.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.x86_64", + sha256 = "b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gmp-6.2.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-4.el9.x86_64", + sha256 = "03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnupg2-2.3.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + ], +) + +rpm( + name = "gnutls-0__3.8.3-4.el9.aarch64", + sha256 = "c7c658c2f2364f4fcbc056f3059c3a4f8a8fa5db3a34a56bbab8386e9f1a9ac5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gnutls-3.8.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7c658c2f2364f4fcbc056f3059c3a4f8a8fa5db3a34a56bbab8386e9f1a9ac5", + ], +) + +rpm( + name = "gnutls-0__3.8.3-4.el9.s390x", + sha256 = "f71b6727e720d44781702bb37815cddbe7f0aab173174bbc7f555d88ca00160e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnutls-3.8.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f71b6727e720d44781702bb37815cddbe7f0aab173174bbc7f555d88ca00160e", + ], +) + +rpm( + name = "gnutls-0__3.8.3-4.el9.x86_64", + sha256 = "91e1e46e6f315445e715184237a69f4152359efa1a9ae54cc0524b9616d0741f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/91e1e46e6f315445e715184237a69f4152359efa1a9ae54cc0524b9616d0741f", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.3-4.el9.aarch64", + sha256 = "1da81d1b7550757a406c75ea2812a27dcedf8ddcfcec2064e5d493ec579c137b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-dane-3.8.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1da81d1b7550757a406c75ea2812a27dcedf8ddcfcec2064e5d493ec579c137b", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.3-4.el9.s390x", + sha256 = "bc1efead7fc64a01cf80fccbaab0022ca646c4f27fad84fcf5fb0d93937d24a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-dane-3.8.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bc1efead7fc64a01cf80fccbaab0022ca646c4f27fad84fcf5fb0d93937d24a3", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.3-4.el9.x86_64", + sha256 = "de16c064ac6f4650a90038aa63e1a84244345fecc22f2dbdf6d4645b055348eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-dane-3.8.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/de16c064ac6f4650a90038aa63e1a84244345fecc22f2dbdf6d4645b055348eb", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.3-4.el9.aarch64", + sha256 = "818c74ec8584b3df3c4d8ee191e03c9dcb39651a39afed2a53d728d6efec9e47", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-utils-3.8.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/818c74ec8584b3df3c4d8ee191e03c9dcb39651a39afed2a53d728d6efec9e47", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.3-4.el9.s390x", + sha256 = "2001bb380a91122ccfd6bdcf694fa0cff5ed4b537f13a2ca48acdd9f7967b481", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-utils-3.8.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2001bb380a91122ccfd6bdcf694fa0cff5ed4b537f13a2ca48acdd9f7967b481", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.3-4.el9.x86_64", + sha256 = "84a2279a7e01190c3c0bcdf7f98b8268ed8c744a4c9d3af728dc84ef4f0e2f9c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-utils-3.8.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84a2279a7e01190c3c0bcdf7f98b8268ed8c744a4c9d3af728dc84ef4f0e2f9c", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.aarch64", + sha256 = "bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gobject-introspection-1.68.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.s390x", + sha256 = "27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gobject-introspection-1.68.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.x86_64", + sha256 = "d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gobject-introspection-1.68.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.aarch64", + sha256 = "33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/grep-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.s390x", + sha256 = "b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/grep-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.x86_64", + sha256 = "10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/grep-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-6.el9.x86_64", + sha256 = "9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-2.el9.x86_64", + sha256 = "2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.aarch64", + sha256 = "5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gzip-1.12-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.s390x", + sha256 = "72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gzip-1.12-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.x86_64", + sha256 = "e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gzip-1.12-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.x86_64", + sha256 = "8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hexedit-1.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.x86_64", + sha256 = "f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hivex-libs-1.3.24-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + ], +) + +rpm( + name = "hwdata-0__0.348-9.16.el9.x86_64", + sha256 = "7932ef731364fe1773877ca8a343792cf2921e9d6a90c513783de5627e450813", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.16.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/7932ef731364fe1773877ca8a343792cf2921e9d6a90c513783de5627e450813", + ], +) + +rpm( + name = "iproute-0__6.11.0-1.el9.aarch64", + sha256 = "826e9bc58153eb50c1905125293df9e3dc7c4d7053d8ffa8ef93584bd991dd1d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-6.11.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/826e9bc58153eb50c1905125293df9e3dc7c4d7053d8ffa8ef93584bd991dd1d", + ], +) + +rpm( + name = "iproute-0__6.11.0-1.el9.s390x", + sha256 = "6e17280aba7b21f26e29105bb2ebebe341afdd4892052033e82a14a73fcec171", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-6.11.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6e17280aba7b21f26e29105bb2ebebe341afdd4892052033e82a14a73fcec171", + ], +) + +rpm( + name = "iproute-0__6.11.0-1.el9.x86_64", + sha256 = "3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + ], +) + +rpm( + name = "iproute-tc-0__6.11.0-1.el9.aarch64", + sha256 = "0c13a8d359d5d15ea88319569e779be97f1d236f5d982924bbba6fe93f29fe17", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-tc-6.11.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0c13a8d359d5d15ea88319569e779be97f1d236f5d982924bbba6fe93f29fe17", + ], +) + +rpm( + name = "iproute-tc-0__6.11.0-1.el9.s390x", + sha256 = "f22f9ac742399619c9bdb66e9587a4712f7184d948dfc00068ff60d8a49cc977", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-tc-6.11.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f22f9ac742399619c9bdb66e9587a4712f7184d948dfc00068ff60d8a49cc977", + ], +) + +rpm( + name = "iproute-tc-0__6.11.0-1.el9.x86_64", + sha256 = "0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.aarch64", + sha256 = "097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iptables-libs-1.8.10-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.s390x", + sha256 = "469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iptables-libs-1.8.10-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.x86_64", + sha256 = "7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iptables-libs-1.8.10-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + ], +) + +rpm( + name = "iputils-0__20210202-11.el9.aarch64", + sha256 = "6539781b8a4ca6dd0c55c8b33b6f86868a1ec61f4b0b80079ab79b9a318b6068", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iputils-20210202-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6539781b8a4ca6dd0c55c8b33b6f86868a1ec61f4b0b80079ab79b9a318b6068", + ], +) + +rpm( + name = "iputils-0__20210202-11.el9.s390x", + sha256 = "8fd05a83334e0167429c9cabcbd90415e2c3ace5dd0ab8cc4b2f8a938657c39f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iputils-20210202-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8fd05a83334e0167429c9cabcbd90415e2c3ace5dd0ab8cc4b2f8a938657c39f", + ], +) + +rpm( + name = "iputils-0__20210202-11.el9.x86_64", + sha256 = "c71055f2a1a3bdb732fc5c05eea7c5ee1cba3dc72f884b1dd728b18fc730a87e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iputils-20210202-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c71055f2a1a3bdb732fc5c05eea7c5ee1cba3dc72f884b1dd728b18fc730a87e", + ], +) + +rpm( + name = "ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64", + sha256 = "fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/ipxe-roms-qemu-20200823-9.git4bd064de.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.aarch64", + sha256 = "23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/jansson-2.14-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.s390x", + sha256 = "ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/jansson-2.14-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.x86_64", + sha256 = "c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/jansson-2.14-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.aarch64", + sha256 = "65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-c-0.14-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.s390x", + sha256 = "224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-c-0.14-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.x86_64", + sha256 = "1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-c-0.14-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.aarch64", + sha256 = "04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-glib-1.6.6-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.s390x", + sha256 = "5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-glib-1.6.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.x86_64", + sha256 = "d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-glib-1.6.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-559.el9.aarch64", + sha256 = "4e45136d327b316b38a6edf99771c2dab331155f6e1e421f275adc529704476a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-headers-5.14.0-559.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4e45136d327b316b38a6edf99771c2dab331155f6e1e421f275adc529704476a", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-559.el9.s390x", + sha256 = "4f4d52f10f08f216724f814212d340b1d6d226dcfd459735de55ebc626e53f1b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/kernel-headers-5.14.0-559.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4f4d52f10f08f216724f814212d340b1d6d226dcfd459735de55ebc626e53f1b", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-559.el9.x86_64", + sha256 = "ef6150c37b7851b8e2340357828eb682c6eaa0298cf27e5d6d941456b46c5e38", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-headers-5.14.0-559.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef6150c37b7851b8e2340357828eb682c6eaa0298cf27e5d6d941456b46c5e38", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.aarch64", + sha256 = "5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/keyutils-libs-1.6.3-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.s390x", + sha256 = "954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/keyutils-libs-1.6.3-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.x86_64", + sha256 = "aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/keyutils-libs-1.6.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + ], +) + +rpm( + name = "kmod-libs-0__28-10.el9.aarch64", + sha256 = "5da40af25f9af3e6ce1ff8dd751da596073dd0adf15dcf44c393330ff0346355", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/kmod-libs-28-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5da40af25f9af3e6ce1ff8dd751da596073dd0adf15dcf44c393330ff0346355", + ], +) + +rpm( + name = "kmod-libs-0__28-10.el9.s390x", + sha256 = "7011810fca95064c8d78e55071716ec1dd5bc7b9836f662c195a282f4f4e5d0a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/kmod-libs-28-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7011810fca95064c8d78e55071716ec1dd5bc7b9836f662c195a282f4f4e5d0a", + ], +) + +rpm( + name = "kmod-libs-0__28-10.el9.x86_64", + sha256 = "79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-4.el9.aarch64", + sha256 = "ec9f42b46e94ac39c2aea842f8d72d0748509022aba8306125d25658a610699c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/krb5-libs-1.21.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ec9f42b46e94ac39c2aea842f8d72d0748509022aba8306125d25658a610699c", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-4.el9.s390x", + sha256 = "fea8a1c82acad5a706dfc66e2ab324c9f51d4d1bb4d95b8590240f5063c2cd3b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/krb5-libs-1.21.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fea8a1c82acad5a706dfc66e2ab324c9f51d4d1bb4d95b8590240f5063c2cd3b", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-4.el9.x86_64", + sha256 = "cf5acbb17ccf4c77f9283360c29d04cccffa8e18f3fc66a23a12742a2dfdcb73", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cf5acbb17ccf4c77f9283360c29d04cccffa8e18f3fc66a23a12742a2dfdcb73", + ], +) + +rpm( + name = "less-0__590-5.el9.x86_64", + sha256 = "46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.aarch64", + sha256 = "90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libacl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.s390x", + sha256 = "bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libacl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.x86_64", + sha256 = "60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libacl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.aarch64", + sha256 = "1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libaio-0.3.111-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.s390x", + sha256 = "b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libaio-0.3.111-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.x86_64", + sha256 = "7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libaio-0.3.111-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + ], +) + +rpm( + name = "libarchive-0__3.5.3-4.el9.aarch64", + sha256 = "c043954972a8dea0b6cf5d3092c1eee90bb48b3fcb7cedf30aa861dc1d3f402c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libarchive-3.5.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c043954972a8dea0b6cf5d3092c1eee90bb48b3fcb7cedf30aa861dc1d3f402c", + ], +) + +rpm( + name = "libarchive-0__3.5.3-4.el9.s390x", + sha256 = "f95a05acd33d6f63a43ac2b065c45a3d2c9ef1923ec80d3a33946501dde0e751", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libarchive-3.5.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f95a05acd33d6f63a43ac2b065c45a3d2c9ef1923ec80d3a33946501dde0e751", + ], +) + +rpm( + name = "libarchive-0__3.5.3-4.el9.x86_64", + sha256 = "4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + ], +) + +rpm( + name = "libasan-0__11.5.0-4.el9.aarch64", + sha256 = "0d769f88d35df18a03440aaac92add57a5fc57fc16698a6f81415109218e3653", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libasan-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0d769f88d35df18a03440aaac92add57a5fc57fc16698a6f81415109218e3653", + ], +) + +rpm( + name = "libasan-0__11.5.0-4.el9.s390x", + sha256 = "6f375a32c15d1a88cb50c81b02af58b9c3d6854dd0b8da3f0e7b8648ee663846", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libasan-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6f375a32c15d1a88cb50c81b02af58b9c3d6854dd0b8da3f0e7b8648ee663846", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.x86_64", + sha256 = "3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libassuan-2.5.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + ], +) + +rpm( + name = "libatomic-0__11.5.0-4.el9.aarch64", + sha256 = "71e477f55f13e07f7087fc652c0e705f4f99c532957d36f4355256c346f0719a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libatomic-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/71e477f55f13e07f7087fc652c0e705f4f99c532957d36f4355256c346f0719a", + ], +) + +rpm( + name = "libatomic-0__11.5.0-4.el9.s390x", + sha256 = "f9af03dc7fbec0038e85f8d47b52fad83afe1978179eefc7400e26b41fc489bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libatomic-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f9af03dc7fbec0038e85f8d47b52fad83afe1978179eefc7400e26b41fc489bf", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.aarch64", + sha256 = "a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libattr-2.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.s390x", + sha256 = "c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libattr-2.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.x86_64", + sha256 = "d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libattr-2.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + ], +) + +rpm( + name = "libblkid-0__2.37.4-20.el9.aarch64", + sha256 = "cebd26c399911e618eb2fa326cd0fd09ac8eb11884e9e4835aec01af79e18105", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libblkid-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cebd26c399911e618eb2fa326cd0fd09ac8eb11884e9e4835aec01af79e18105", + ], +) + +rpm( + name = "libblkid-0__2.37.4-20.el9.s390x", + sha256 = "25e49a656a3eba08ef3041b90f18da2abfbc55f6e67257c192ccde9f4009cb56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libblkid-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/25e49a656a3eba08ef3041b90f18da2abfbc55f6e67257c192ccde9f4009cb56", + ], +) + +rpm( + name = "libblkid-0__2.37.4-20.el9.x86_64", + sha256 = "5fa87671fdc5bb3e4e6c2b8e2253ac8fcf4add8ce44bf216864f952f10cdeeaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libblkid-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5fa87671fdc5bb3e4e6c2b8e2253ac8fcf4add8ce44bf216864f952f10cdeeaa", + ], +) + +rpm( + name = "libbpf-2__1.4.0-1.el9.aarch64", + sha256 = "693f1ea0b46ede7bce112562e58fc33532af307ff217baf5b280d2949a78ddde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libbpf-1.4.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/693f1ea0b46ede7bce112562e58fc33532af307ff217baf5b280d2949a78ddde", + ], +) + +rpm( + name = "libbpf-2__1.4.0-1.el9.s390x", + sha256 = "01c9fb8c866e82ab0a6067e2a0034abcc577c06604a4160ffd46c51bece58c6d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbpf-1.4.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/01c9fb8c866e82ab0a6067e2a0034abcc577c06604a4160ffd46c51bece58c6d", + ], +) + +rpm( + name = "libbpf-2__1.4.0-1.el9.x86_64", + sha256 = "ea0d65618dba3830d6044bf5441a0013302a6ee9ee85d8292a7a7a5094c6c851", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.4.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea0d65618dba3830d6044bf5441a0013302a6ee9ee85d8292a7a7a5094c6c851", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-7.el9.x86_64", + sha256 = "5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbrotli-1.0.9-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.aarch64", + sha256 = "acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.s390x", + sha256 = "a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.x86_64", + sha256 = "356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + ], +) + +rpm( + name = "libcap-0__2.48-9.el9.aarch64", + sha256 = "2d78c324f8f8d9a14042995ab6e4c063c7d0a6acec1be07ac0d0d2c1a6de0ca5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-2.48-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2d78c324f8f8d9a14042995ab6e4c063c7d0a6acec1be07ac0d0d2c1a6de0ca5", + ], +) + +rpm( + name = "libcap-0__2.48-9.el9.s390x", + sha256 = "5c0d3fa01feeda3389847de7c0cd8d2631c26f0e929f609f176cbb661e09a8a2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-2.48-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c0d3fa01feeda3389847de7c0cd8d2631c26f0e929f609f176cbb661e09a8a2", + ], +) + +rpm( + name = "libcap-0__2.48-9.el9.x86_64", + sha256 = "7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.aarch64", + sha256 = "1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-ng-0.8.2-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.s390x", + sha256 = "9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-ng-0.8.2-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.x86_64", + sha256 = "62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-ng-0.8.2-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-6.el9.aarch64", + sha256 = "07e74eb3114a090e31b4ff96c864127093cc033a7d5668772de1f97dbd9bd8c7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcom_err-1.46.5-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/07e74eb3114a090e31b4ff96c864127093cc033a7d5668772de1f97dbd9bd8c7", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-6.el9.s390x", + sha256 = "1242b733cfdd50b12b330ee4a008551e03896064dc74c4ac4dcc6b8c7f216f6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcom_err-1.46.5-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1242b733cfdd50b12b330ee4a008551e03896064dc74c4ac4dcc6b8c7f216f6b", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-6.el9.x86_64", + sha256 = "d0f57f1fec2ed5e61c9672791c4f8abaf9be6f45a9f8810949dc3c930d9b34d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d0f57f1fec2ed5e61c9672791c4f8abaf9be6f45a9f8810949dc3c930d9b34d2", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.x86_64", + sha256 = "e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libconfig-1.7.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-31.el9.aarch64", + sha256 = "9c0ec87af11f82ac5a2a4e6be45617b80737435a89c2be6a90a0e4b380e63053", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcurl-minimal-7.76.1-31.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9c0ec87af11f82ac5a2a4e6be45617b80737435a89c2be6a90a0e4b380e63053", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-31.el9.s390x", + sha256 = "ece81fe8aa2bfd5ff0c98cfdafe110a5e023184101ace9196d38a49665639b6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcurl-minimal-7.76.1-31.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ece81fe8aa2bfd5ff0c98cfdafe110a5e023184101ace9196d38a49665639b6f", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + ], +) + +rpm( + name = "libdb-0__5.3.28-55.el9.aarch64", + sha256 = "e8d47189a01859ac933f767d52c2f4042b884f78e896ed6f42e45db23c4579df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libdb-5.3.28-55.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e8d47189a01859ac933f767d52c2f4042b884f78e896ed6f42e45db23c4579df", + ], +) + +rpm( + name = "libdb-0__5.3.28-55.el9.s390x", + sha256 = "c69d2091b590fb864f51cb78709bd26004d8afd0322d7c202ca70e340c084606", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libdb-5.3.28-55.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c69d2091b590fb864f51cb78709bd26004d8afd0322d7c202ca70e340c084606", + ], +) + +rpm( + name = "libdb-0__5.3.28-55.el9.x86_64", + sha256 = "e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.aarch64", + sha256 = "c221c71bfd8f6692e305a4e0c0025c4789ab04661c11a1a18c34c3f873f1276f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libeconf-0.4.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c221c71bfd8f6692e305a4e0c0025c4789ab04661c11a1a18c34c3f873f1276f", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.s390x", + sha256 = "1ee2d8e7b48a5e9616c1f7a5b019e0aa054a80b5962d972104d78d095b2e926d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libeconf-0.4.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1ee2d8e7b48a5e9616c1f7a5b019e0aa054a80b5962d972104d78d095b2e926d", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.x86_64", + sha256 = "ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libeconf-0.4.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.aarch64", + sha256 = "abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libevent-2.1.12-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.s390x", + sha256 = "5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libevent-2.1.12-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.x86_64", + sha256 = "5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libevent-2.1.12-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-20.el9.aarch64", + sha256 = "c61bf4906bdd46399d50b453b557533060c5a3c344ac1bb0a9bb94ce41246e6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libfdisk-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c61bf4906bdd46399d50b453b557533060c5a3c344ac1bb0a9bb94ce41246e6f", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-20.el9.s390x", + sha256 = "bf3c3200f0a1e1b1b2fcd0e53b65226d562aee9762cabedd2471bdf2a402b454", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libfdisk-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bf3c3200f0a1e1b1b2fcd0e53b65226d562aee9762cabedd2471bdf2a402b454", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-20.el9.x86_64", + sha256 = "d1fcceb55185b4d898c8df3d0b9177126be0144b8829f908f40d2b58d44ad268", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libfdisk-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d1fcceb55185b4d898c8df3d0b9177126be0144b8829f908f40d2b58d44ad268", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.aarch64", + sha256 = "19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libfdt-1.6.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.s390x", + sha256 = "fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libfdt-1.6.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.x86_64", + sha256 = "a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfdt-1.6.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.aarch64", + sha256 = "da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libffi-3.4.2-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.s390x", + sha256 = "25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libffi-3.4.2-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.x86_64", + sha256 = "110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libffi-3.4.2-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + ], +) + +rpm( + name = "libgcc-0__11.5.0-4.el9.aarch64", + sha256 = "ecf7834555d6fcdada1f4fff02cd0295f9066c625a94d0e3f7465bf04466b15f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcc-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ecf7834555d6fcdada1f4fff02cd0295f9066c625a94d0e3f7465bf04466b15f", + ], +) + +rpm( + name = "libgcc-0__11.5.0-4.el9.s390x", + sha256 = "8872f632cc829440927ffb5bcb94fc05c966160f4f994504ca5836105daecdce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcc-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8872f632cc829440927ffb5bcb94fc05c966160f4f994504ca5836105daecdce", + ], +) + +rpm( + name = "libgcc-0__11.5.0-4.el9.x86_64", + sha256 = "e7a07615552ab345f2a5091a02350646744f76b75e1cde6fd6f0e036972453f7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e7a07615552ab345f2a5091a02350646744f76b75e1cde6fd6f0e036972453f7", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.aarch64", + sha256 = "932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcrypt-1.10.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.s390x", + sha256 = "cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcrypt-1.10.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.x86_64", + sha256 = "0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcrypt-1.10.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + ], +) + +rpm( + name = "libgomp-0__11.5.0-4.el9.aarch64", + sha256 = "74d6e36aa3d192286e155973eba2cc5e8ca63973b8371f373155cefadfbc43b1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgomp-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/74d6e36aa3d192286e155973eba2cc5e8ca63973b8371f373155cefadfbc43b1", + ], +) + +rpm( + name = "libgomp-0__11.5.0-4.el9.s390x", + sha256 = "d669429cf37e961f41fc1f9fc6d1f7f02efa14ecee70a6dbf6889c5d4c8ba722", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgomp-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d669429cf37e961f41fc1f9fc6d1f7f02efa14ecee70a6dbf6889c5d4c8ba722", + ], +) + +rpm( + name = "libgomp-0__11.5.0-4.el9.x86_64", + sha256 = "16dc49756bf35ab80cdbfa6d6e0d152fb36bdaa60536139d557a10edec3cf994", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/16dc49756bf35ab80cdbfa6d6e0d152fb36bdaa60536139d557a10edec3cf994", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.aarch64", + sha256 = "ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgpg-error-1.42-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.s390x", + sha256 = "655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgpg-error-1.42-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.x86_64", + sha256 = "a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgpg-error-1.42-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-3.el9.x86_64", + sha256 = "1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libguestfs-1.54.0-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86", + ], +) + +rpm( + name = "libibverbs-0__54.0-1.el9.aarch64", + sha256 = "32c421ec7c2d0abd2c17f9f9f07e48d39a8e886c43d9ef82f8692c6e68ad1ca5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libibverbs-54.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/32c421ec7c2d0abd2c17f9f9f07e48d39a8e886c43d9ef82f8692c6e68ad1ca5", + ], +) + +rpm( + name = "libibverbs-0__54.0-1.el9.s390x", + sha256 = "a539e21965c8b8d05c0af0cd9615a3486476d2c2169251ae5e27c32b840ed45d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libibverbs-54.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a539e21965c8b8d05c0af0cd9615a3486476d2c2169251ae5e27c32b840ed45d", + ], +) + +rpm( + name = "libibverbs-0__54.0-1.el9.x86_64", + sha256 = "b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.aarch64", + sha256 = "6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libidn2-2.3.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.s390x", + sha256 = "716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libidn2-2.3.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.x86_64", + sha256 = "f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libidn2-2.3.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.aarch64", + sha256 = "1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisoburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.s390x", + sha256 = "0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisoburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.x86_64", + sha256 = "ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisoburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.aarch64", + sha256 = "0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisofs-1.5.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.s390x", + sha256 = "d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisofs-1.5.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.x86_64", + sha256 = "78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisofs-1.5.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.x86_64", + sha256 = "8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libksba-1.5.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.aarch64", + sha256 = "c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmnl-1.0.4-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.s390x", + sha256 = "344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmnl-1.0.4-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.x86_64", + sha256 = "e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmnl-1.0.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + ], +) + +rpm( + name = "libmount-0__2.37.4-20.el9.aarch64", + sha256 = "84f9ee04bb2f3957e927dceaa9c36b3d3e009892b08741e1b45817b6eb6ca30c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmount-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/84f9ee04bb2f3957e927dceaa9c36b3d3e009892b08741e1b45817b6eb6ca30c", + ], +) + +rpm( + name = "libmount-0__2.37.4-20.el9.s390x", + sha256 = "a917e4342e7934d4a6d361734e69e42694e59bca82d617305bd8f6aed9c2d7d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmount-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a917e4342e7934d4a6d361734e69e42694e59bca82d617305bd8f6aed9c2d7d4", + ], +) + +rpm( + name = "libmount-0__2.37.4-20.el9.x86_64", + sha256 = "f602bea553bf92e512a39af33c3e8ee289dd9584e37d2ca02b69cb51b64dc623", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmount-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f602bea553bf92e512a39af33c3e8ee289dd9584e37d2ca02b69cb51b64dc623", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.aarch64", + sha256 = "489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libmpc-1.2.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.s390x", + sha256 = "3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libmpc-1.2.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.x86_64", + sha256 = "207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmpc-1.2.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + ], +) + +rpm( + name = "libnbd-0__1.20.3-1.el9.aarch64", + sha256 = "ffcb07a14e2435c3ae087a62072c620345e1d2d25d64ff50f1123efc488deb81", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libnbd-1.20.3-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ffcb07a14e2435c3ae087a62072c620345e1d2d25d64ff50f1123efc488deb81", + ], +) + +rpm( + name = "libnbd-0__1.20.3-1.el9.s390x", + sha256 = "6382945507c5912a627b65cd41dadc912295cbfcb737fe39fd07f42f39342a6a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libnbd-1.20.3-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6382945507c5912a627b65cd41dadc912295cbfcb737fe39fd07f42f39342a6a", + ], +) + +rpm( + name = "libnbd-0__1.20.3-1.el9.x86_64", + sha256 = "4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.aarch64", + sha256 = "6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.s390x", + sha256 = "803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.x86_64", + sha256 = "f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.aarch64", + sha256 = "8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.1-23.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.s390x", + sha256 = "1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnfnetlink-1.0.1-23.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.x86_64", + sha256 = "c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.aarch64", + sha256 = "59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnftnl-1.2.6-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.s390x", + sha256 = "1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnftnl-1.2.6-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.x86_64", + sha256 = "45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnftnl-1.2.6-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.aarch64", + sha256 = "b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnghttp2-1.43.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.s390x", + sha256 = "6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnghttp2-1.43.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.x86_64", + sha256 = "fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnghttp2-1.43.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.aarch64", + sha256 = "931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnl3-3.11.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.s390x", + sha256 = "af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnl3-3.11.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.x86_64", + sha256 = "8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnl3-3.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.x86_64", + sha256 = "ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libosinfo-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.aarch64", + sha256 = "c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpcap-1.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.s390x", + sha256 = "ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpcap-1.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.x86_64", + sha256 = "c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpcap-1.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.s390x", + sha256 = "56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + ], +) + +rpm( + name = "libpmem-0__1.12.1-1.el9.x86_64", + sha256 = "5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpmem-1.12.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.aarch64", + sha256 = "99f9eca159e41e315b9fe48ec6c6d1d7a944bd5d8fc0b308aba779a6608b3777", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpng-1.6.37-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99f9eca159e41e315b9fe48ec6c6d1d7a944bd5d8fc0b308aba779a6608b3777", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.s390x", + sha256 = "add58062b5ed4b22af0c1d6d5702260b2bc7c27cd08f298e908ac40a9df2f3f7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libpng-1.6.37-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/add58062b5ed4b22af0c1d6d5702260b2bc7c27cd08f298e908ac40a9df2f3f7", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.x86_64", + sha256 = "b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpng-1.6.37-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.x86_64", + sha256 = "0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libproxy-0.4.15-35.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.x86_64", + sha256 = "42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpsl-0.21.1-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.aarch64", + sha256 = "3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpwquality-1.4.4-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.s390x", + sha256 = "b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpwquality-1.4.4-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.x86_64", + sha256 = "93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + ], +) + +rpm( + name = "librdmacm-0__54.0-1.el9.aarch64", + sha256 = "d2bd7ddf591482c48dfd4db3590dbdaa33dcd6d5b6ca36666efea6aab58169d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/librdmacm-54.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d2bd7ddf591482c48dfd4db3590dbdaa33dcd6d5b6ca36666efea6aab58169d8", + ], +) + +rpm( + name = "librdmacm-0__54.0-1.el9.x86_64", + sha256 = "82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.aarch64", + sha256 = "ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libseccomp-2.5.2-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.s390x", + sha256 = "1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libseccomp-2.5.2-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.x86_64", + sha256 = "d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libseccomp-2.5.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.aarch64", + sha256 = "42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.s390x", + sha256 = "16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.x86_64", + sha256 = "79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.aarch64", + sha256 = "5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-utils-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.s390x", + sha256 = "05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-utils-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.x86_64", + sha256 = "f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-utils-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + ], +) + +rpm( + name = "libsemanage-0__3.6-4.el9.aarch64", + sha256 = "d9c48e198255b68741ec0ce8542ffb8d48fedb2223783ea626c439180f424670", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsemanage-3.6-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d9c48e198255b68741ec0ce8542ffb8d48fedb2223783ea626c439180f424670", + ], +) + +rpm( + name = "libsemanage-0__3.6-4.el9.s390x", + sha256 = "32beca5b786b0befc05f1c74a3dd1c8b448c1e4c97bf0173b49c08f3f928bf85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsemanage-3.6-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/32beca5b786b0befc05f1c74a3dd1c8b448c1e4c97bf0173b49c08f3f928bf85", + ], +) + +rpm( + name = "libsemanage-0__3.6-4.el9.x86_64", + sha256 = "f8d235c4c3aedb484203472f164efd77cc9b55679556817a0afeb59dac4cc8b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsemanage-3.6-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f8d235c4c3aedb484203472f164efd77cc9b55679556817a0afeb59dac4cc8b9", + ], +) + +rpm( + name = "libsepol-0__3.6-2.el9.aarch64", + sha256 = "00bbebf66203c136481352afb435114957228f26c2347deba2991f4f03281b23", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsepol-3.6-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/00bbebf66203c136481352afb435114957228f26c2347deba2991f4f03281b23", + ], +) + +rpm( + name = "libsepol-0__3.6-2.el9.s390x", + sha256 = "990b72589f950eb088684c1b044a6c91617a065af9d1026d56c2518313c01c67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsepol-3.6-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/990b72589f950eb088684c1b044a6c91617a065af9d1026d56c2518313c01c67", + ], +) + +rpm( + name = "libsepol-0__3.6-2.el9.x86_64", + sha256 = "7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.aarch64", + sha256 = "097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsigsegv-2.13-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.s390x", + sha256 = "730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsigsegv-2.13-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.x86_64", + sha256 = "931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsigsegv-2.13-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.aarch64", + sha256 = "52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libslirp-4.4.0-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.s390x", + sha256 = "d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libslirp-4.4.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.x86_64", + sha256 = "aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libslirp-4.4.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-20.el9.aarch64", + sha256 = "e81543e1ac16943bf49fb9a74526ffa6f0cee41e902f93282b9d8787154ba08b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsmartcols-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e81543e1ac16943bf49fb9a74526ffa6f0cee41e902f93282b9d8787154ba08b", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-20.el9.s390x", + sha256 = "afc481221d6f3adc1727289ca543ee40bb410a9c564fba75d356c8a51131ece0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsmartcols-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/afc481221d6f3adc1727289ca543ee40bb410a9c564fba75d356c8a51131ece0", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-20.el9.x86_64", + sha256 = "e51f3a4fac42fe95d4a7fb1128afd99d9cb7cfdb6ab2ec5e68089bbb72af13ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e51f3a4fac42fe95d4a7fb1128afd99d9cb7cfdb6ab2ec5e68089bbb72af13ca", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.x86_64", + sha256 = "e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsoup-2.72.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + ], +) + +rpm( + name = "libss-0__1.46.5-6.el9.aarch64", + sha256 = "d8198abfbc3af424bdb3b99277fffca8c9b57316e1877e49451a689a59b8f557", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libss-1.46.5-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d8198abfbc3af424bdb3b99277fffca8c9b57316e1877e49451a689a59b8f557", + ], +) + +rpm( + name = "libss-0__1.46.5-6.el9.s390x", + sha256 = "e06d3c17008367c0018b781b711adaf9cb2e41ad52a2733b42a96f8667edc7d1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libss-1.46.5-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e06d3c17008367c0018b781b711adaf9cb2e41ad52a2733b42a96f8667edc7d1", + ], +) + +rpm( + name = "libss-0__1.46.5-6.el9.x86_64", + sha256 = "6d3a0d023361c55845355efe755d7a85d84968bac420f1fb173b534ee2b677c5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libss-1.46.5-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6d3a0d023361c55845355efe755d7a85d84968bac420f1fb173b534ee2b677c5", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.aarch64", + sha256 = "81d3f1d8489d3330065c24604c0e994cb9f8aa653e6859512beeabaa64b8f6c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-0.10.4-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/81d3f1d8489d3330065c24604c0e994cb9f8aa653e6859512beeabaa64b8f6c3", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.s390x", + sha256 = "dac9ce73baa7946783ef8a277a8a28e6d8f6ef3375126d47cf57bcffd29e77a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-0.10.4-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dac9ce73baa7946783ef8a277a8a28e6d8f6ef3375126d47cf57bcffd29e77a4", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.x86_64", + sha256 = "08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-0.10.4-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.aarch64", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.s390x", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.x86_64", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.6-2.el9.aarch64", + sha256 = "0ec65cc35d9430b0e6253653051452864d32e355d082d372caf98346c81e8f37", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_idmap-2.9.6-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0ec65cc35d9430b0e6253653051452864d32e355d082d372caf98346c81e8f37", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.6-2.el9.s390x", + sha256 = "63e41f54a74f238653ec9c812a091955aee4f45a65419df20c6bc87f9e9ca565", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_idmap-2.9.6-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/63e41f54a74f238653ec9c812a091955aee4f45a65419df20c6bc87f9e9ca565", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.6-2.el9.x86_64", + sha256 = "b9e8f6362bfbf7728fa4b7e21bfd676beff88dbadd20572a190d1c73c1c15604", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_idmap-2.9.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b9e8f6362bfbf7728fa4b7e21bfd676beff88dbadd20572a190d1c73c1c15604", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.6-2.el9.aarch64", + sha256 = "c1e6ec6c55c46876a077a8a6cccae719562dd1eed913a2346e86ad5c06ab9f48", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.9.6-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c1e6ec6c55c46876a077a8a6cccae719562dd1eed913a2346e86ad5c06ab9f48", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.6-2.el9.s390x", + sha256 = "f0472fc144178867234d78271aa8cff177e3b3dd7b991c0c137d1e3a9aea1158", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_nss_idmap-2.9.6-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f0472fc144178867234d78271aa8cff177e3b3dd7b991c0c137d1e3a9aea1158", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.6-2.el9.x86_64", + sha256 = "2f94fefb7ae5b50a51f80c124f029d01a027505a89438124004e5ae683fbd691", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.9.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2f94fefb7ae5b50a51f80c124f029d01a027505a89438124004e5ae683fbd691", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-4.el9.aarch64", + sha256 = "d07ad1e2d0246b626c6636e3f55abd258263caba83795dc41ce00f8ce1ebfdfd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libstdc++-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d07ad1e2d0246b626c6636e3f55abd258263caba83795dc41ce00f8ce1ebfdfd", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-4.el9.s390x", + sha256 = "a72626ad49e16d16d606cc5063a43b8e5822f8cf171909b3639988ebe5fcdd27", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libstdc++-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a72626ad49e16d16d606cc5063a43b8e5822f8cf171909b3639988ebe5fcdd27", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-4.el9.x86_64", + sha256 = "e377ac4138e761d71d978fba9cfed36f4b6414ab32d43ab167a661883d5ea20d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e377ac4138e761d71d978fba9cfed36f4b6414ab32d43ab167a661883d5ea20d", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-8.el9.aarch64", + sha256 = "1046c07821506ef6a84291b093de0d62dcc9873142e1ac2c66aaa72abd08532c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtasn1-4.16.0-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1046c07821506ef6a84291b093de0d62dcc9873142e1ac2c66aaa72abd08532c", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-8.el9.s390x", + sha256 = "1a03374dd2825e0cc9dacddb31c9537835138b0c12713faed4d38890bb1a3882", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtasn1-4.16.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a03374dd2825e0cc9dacddb31c9537835138b0c12713faed4d38890bb1a3882", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-8.el9.x86_64", + sha256 = "c8b13c9e1292de474e76ab80f230f86cce2e8f5f53592e168bdcaa604ed1b37d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtasn1-4.16.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c8b13c9e1292de474e76ab80f230f86cce2e8f5f53592e168bdcaa604ed1b37d", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.aarch64", + sha256 = "a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtirpc-1.3.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.s390x", + sha256 = "59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtirpc-1.3.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.x86_64", + sha256 = "b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtirpc-1.3.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.x86_64", + sha256 = "a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtool-ltdl-2.4.6-46.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + ], +) + +rpm( + name = "libtpms-0__0.9.1-4.20211126git1ff6fe1f43.el9.aarch64", + sha256 = "d499d04b1c4893e701c5d44fe4129993ef0f20c9b94fea1057367b72aa6ee4f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libtpms-0.9.1-4.20211126git1ff6fe1f43.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d499d04b1c4893e701c5d44fe4129993ef0f20c9b94fea1057367b72aa6ee4f5", + ], +) + +rpm( + name = "libtpms-0__0.9.1-4.20211126git1ff6fe1f43.el9.s390x", + sha256 = "bfd53e294938a568c972fada1152445c233bf5709f024c346a5a3f8f6ca0ac58", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libtpms-0.9.1-4.20211126git1ff6fe1f43.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bfd53e294938a568c972fada1152445c233bf5709f024c346a5a3f8f6ca0ac58", + ], +) + +rpm( + name = "libtpms-0__0.9.1-4.20211126git1ff6fe1f43.el9.x86_64", + sha256 = "43083395bf6131abe2df8c9e0f27f6046aa47e6c8cf0a9092900e72527a0e21b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtpms-0.9.1-4.20211126git1ff6fe1f43.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/43083395bf6131abe2df8c9e0f27f6046aa47e6c8cf0a9092900e72527a0e21b", + ], +) + +rpm( + name = "libubsan-0__11.5.0-4.el9.aarch64", + sha256 = "6fc1b848c42abe2d449e68f53c7913cd863b1e251d04abe854b440e7bc1a9573", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libubsan-11.5.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6fc1b848c42abe2d449e68f53c7913cd863b1e251d04abe854b440e7bc1a9573", + ], +) + +rpm( + name = "libubsan-0__11.5.0-4.el9.s390x", + sha256 = "343119ece54b77e9f81c4ddb409ec6489f4d02619a403ec61e6183dde8a129fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libubsan-11.5.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/343119ece54b77e9f81c4ddb409ec6489f4d02619a403ec61e6183dde8a129fa", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.aarch64", + sha256 = "09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libunistring-0.9.10-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.s390x", + sha256 = "029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libunistring-0.9.10-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.x86_64", + sha256 = "11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libunistring-0.9.10-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.aarch64", + sha256 = "12f91bd14e1eb7e2b37783561c1a0658d85c7ee2a9259391ed15e01bf4186649", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/liburing-2.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12f91bd14e1eb7e2b37783561c1a0658d85c7ee2a9259391ed15e01bf4186649", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.s390x", + sha256 = "f45d4fcccfd217d5aa394a317d4d2645b79edb50cd7ad01dc14ad0d1b1bdb2f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/liburing-2.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f45d4fcccfd217d5aa394a317d4d2645b79edb50cd7ad01dc14ad0d1b1bdb2f0", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.x86_64", + sha256 = "12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/liburing-2.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.aarch64", + sha256 = "f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libusbx-1.0.26-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.s390x", + sha256 = "d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libusbx-1.0.26-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.x86_64", + sha256 = "bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libusbx-1.0.26-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.aarch64", + sha256 = "65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libutempter-1.2.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.s390x", + sha256 = "6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libutempter-1.2.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.x86_64", + sha256 = "fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libutempter-1.2.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + ], +) + +rpm( + name = "libuuid-0__2.37.4-20.el9.aarch64", + sha256 = "f1c54eeed0c892cb9cc3bea42e8c09b5a4b515381eb5d0fe6e5eb84346c51839", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libuuid-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f1c54eeed0c892cb9cc3bea42e8c09b5a4b515381eb5d0fe6e5eb84346c51839", + ], +) + +rpm( + name = "libuuid-0__2.37.4-20.el9.s390x", + sha256 = "6021fe138b00f88d32a7745efac96331e7302e11c41aa302e04dd7283df8ab36", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libuuid-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6021fe138b00f88d32a7745efac96331e7302e11c41aa302e04dd7283df8ab36", + ], +) + +rpm( + name = "libuuid-0__2.37.4-20.el9.x86_64", + sha256 = "10754bbddc76e88458ae6e9fd7b00cd6e5102c9e493eb2df73372b8f1d88dc1b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libuuid-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10754bbddc76e88458ae6e9fd7b00cd6e5102c9e493eb2df73372b8f1d88dc1b", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.aarch64", + sha256 = "1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libverto-0.3.2-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.s390x", + sha256 = "3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libverto-0.3.2-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.x86_64", + sha256 = "c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libverto-0.3.2-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + ], +) + +rpm( + name = "libvirt-client-0__10.10.0-4.el9.aarch64", + sha256 = "4958a954adfd2bce1d38b216001343dbff20334ab2cc2f39b9b9db83303e4df7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-client-10.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4958a954adfd2bce1d38b216001343dbff20334ab2cc2f39b9b9db83303e4df7", + ], +) + +rpm( + name = "libvirt-client-0__10.10.0-4.el9.s390x", + sha256 = "a6b8fde1a975bb055a0fe4e6fb23c99dbf28f22a0fa523206cfae4ae0eba53e6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-client-10.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a6b8fde1a975bb055a0fe4e6fb23c99dbf28f22a0fa523206cfae4ae0eba53e6", + ], +) + +rpm( + name = "libvirt-client-0__10.10.0-4.el9.x86_64", + sha256 = "76f8d8c901a55a811126cff2c01b97fd6b3a9d29adfa3cd10dfee9ca5f4005c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-client-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/76f8d8c901a55a811126cff2c01b97fd6b3a9d29adfa3cd10dfee9ca5f4005c4", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-4.el9.aarch64", + sha256 = "b6d500574c428abe39cdbfee75422d089c43072f43a758d0300e86a6c08ffd5d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-common-10.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b6d500574c428abe39cdbfee75422d089c43072f43a758d0300e86a6c08ffd5d", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-4.el9.s390x", + sha256 = "3caaa67279beb9f48d1e9933a1419c1a5cbceb3277124fffbd81407488ce8217", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-common-10.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3caaa67279beb9f48d1e9933a1419c1a5cbceb3277124fffbd81407488ce8217", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-4.el9.x86_64", + sha256 = "5b852992dd3eb74ae710d48118869937d6a3a22f5ad21a0d8f92f741a3f80099", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-common-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5b852992dd3eb74ae710d48118869937d6a3a22f5ad21a0d8f92f741a3f80099", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-4.el9.aarch64", + sha256 = "eb0655b235055b34822fca9f58053e5de1d16e867cbb86ec3fe2c985196eef06", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-driver-qemu-10.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eb0655b235055b34822fca9f58053e5de1d16e867cbb86ec3fe2c985196eef06", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-4.el9.s390x", + sha256 = "148ed826e1b7fca8c5b016662d5d4b9f89eb1d111676e52b45b948a515dc55a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-qemu-10.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/148ed826e1b7fca8c5b016662d5d4b9f89eb1d111676e52b45b948a515dc55a8", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-4.el9.x86_64", + sha256 = "924bc92584bbf60a57fb10142df867e884c92240b9a4a22e96e56cce9080ea4e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-qemu-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/924bc92584bbf60a57fb10142df867e884c92240b9a4a22e96e56cce9080ea4e", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__10.10.0-4.el9.x86_64", + sha256 = "07abf130cdb1dba50049eb0c185c760d3916a66b65192ab16cd1dedccabf68a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-secret-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/07abf130cdb1dba50049eb0c185c760d3916a66b65192ab16cd1dedccabf68a8", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__10.10.0-4.el9.x86_64", + sha256 = "ba2e7815699819bf535db60813d1cee1b91e3144d8f30d3a41d8e4c10f455205", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-storage-core-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ba2e7815699819bf535db60813d1cee1b91e3144d8f30d3a41d8e4c10f455205", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-4.el9.aarch64", + sha256 = "901c58d8771513cf7c661bc736a033f523959f284ff8f796808769d298f43e0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-log-10.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/901c58d8771513cf7c661bc736a033f523959f284ff8f796808769d298f43e0e", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-4.el9.s390x", + sha256 = "f659f9961c750deb99f28bcf830ac66c35a863aad477a2bb82c228187a0a80b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-log-10.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f659f9961c750deb99f28bcf830ac66c35a863aad477a2bb82c228187a0a80b4", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-4.el9.x86_64", + sha256 = "a6242f1b0f6cc901001abe47c4131511013c8cff14741a826f397b9d4001b917", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-log-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a6242f1b0f6cc901001abe47c4131511013c8cff14741a826f397b9d4001b917", + ], +) + +rpm( + name = "libvirt-devel-0__10.10.0-4.el9.aarch64", + sha256 = "fa5521d96757351755e7b9b1fe4675cbf7686d76a9df9bc3f1f31e4b4b8b7750", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libvirt-devel-10.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fa5521d96757351755e7b9b1fe4675cbf7686d76a9df9bc3f1f31e4b4b8b7750", + ], +) + +rpm( + name = "libvirt-devel-0__10.10.0-4.el9.s390x", + sha256 = "bf9a3741a0d4393bd20308f4955f75206e04b9051538f2fc84b649c0e720fdc3", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libvirt-devel-10.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bf9a3741a0d4393bd20308f4955f75206e04b9051538f2fc84b649c0e720fdc3", + ], +) + +rpm( + name = "libvirt-devel-0__10.10.0-4.el9.x86_64", + sha256 = "f491a0b9263207eb292eb2c8f6e12340ddb52504610902bc6153d0fd13304d1f", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libvirt-devel-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f491a0b9263207eb292eb2c8f6e12340ddb52504610902bc6153d0fd13304d1f", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-4.el9.aarch64", + sha256 = "8c49bc43ebec404cb477e6335c8376de56dcd3f661655de2a9c4caefb941e9a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-libs-10.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8c49bc43ebec404cb477e6335c8376de56dcd3f661655de2a9c4caefb941e9a3", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-4.el9.s390x", + sha256 = "3ed5669663ccf386a5c6fa5a47651e049798af2494c80ea083576fabfbc22a6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-libs-10.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3ed5669663ccf386a5c6fa5a47651e049798af2494c80ea083576fabfbc22a6e", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-4.el9.x86_64", + sha256 = "effb62813dcabb41f254cb447b039c66110e5dcca05f11ebabfe29138c1f5f71", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-libs-10.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/effb62813dcabb41f254cb447b039c66110e5dcca05f11ebabfe29138c1f5f71", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.aarch64", + sha256 = "f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxcrypt-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.s390x", + sha256 = "dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxcrypt-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.x86_64", + sha256 = "97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxcrypt-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.aarch64", + sha256 = "4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.s390x", + sha256 = "bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxcrypt-devel-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.x86_64", + sha256 = "162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.aarch64", + sha256 = "34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libxcrypt-static-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.s390x", + sha256 = "32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libxcrypt-static-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.x86_64", + sha256 = "251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxcrypt-static-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + ], +) + +rpm( + name = "libxml2-0__2.9.13-6.el9.aarch64", + sha256 = "d567f4bcf953cffe949be6d11d5597bf1a8c806c89c999e7943c240da40122b8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxml2-2.9.13-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d567f4bcf953cffe949be6d11d5597bf1a8c806c89c999e7943c240da40122b8", + ], +) + +rpm( + name = "libxml2-0__2.9.13-6.el9.s390x", + sha256 = "2ba167d1c5fe690868d32c2f09645a080297ca7f731c9793c9ac89ff8043455d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxml2-2.9.13-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2ba167d1c5fe690868d32c2f09645a080297ca7f731c9793c9ac89ff8043455d", + ], +) + +rpm( + name = "libxml2-0__2.9.13-6.el9.x86_64", + sha256 = "7b23a9ca73db2ec13ee983594d4d0f4a85160ef8d05484f65c247801cb808a29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b23a9ca73db2ec13ee983594d4d0f4a85160ef8d05484f65c247801cb808a29", + ], +) + +rpm( + name = "libxslt-0__1.1.34-9.el9.x86_64", + sha256 = "576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.aarch64", + sha256 = "49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libzstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.s390x", + sha256 = "720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libzstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.x86_64", + sha256 = "3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libzstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.aarch64", + sha256 = "bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lua-libs-5.4.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.s390x", + sha256 = "616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lua-libs-5.4.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.x86_64", + sha256 = "a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lua-libs-5.4.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.aarch64", + sha256 = "9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lz4-libs-1.9.3-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.s390x", + sha256 = "358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lz4-libs-1.9.3-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.x86_64", + sha256 = "cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lz4-libs-1.9.3-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.aarch64", + sha256 = "eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzo-2.10-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.s390x", + sha256 = "d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzo-2.10-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.x86_64", + sha256 = "7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzo-2.10-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.aarch64", + sha256 = "ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzop-1.04-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.s390x", + sha256 = "f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzop-1.04-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.x86_64", + sha256 = "ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzop-1.04-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + ], +) + +rpm( + name = "make-1__4.3-8.el9.aarch64", + sha256 = "65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/make-4.3-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + ], +) + +rpm( + name = "make-1__4.3-8.el9.s390x", + sha256 = "b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/make-4.3-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + ], +) + +rpm( + name = "make-1__4.3-8.el9.x86_64", + sha256 = "3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/make-4.3-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.aarch64", + sha256 = "f3bd8510505a53450abe05dc34edbc5313fe89a6f88d0252624205dc7bb884c7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/mpfr-4.1.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f3bd8510505a53450abe05dc34edbc5313fe89a6f88d0252624205dc7bb884c7", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.s390x", + sha256 = "7297fc0b6869453925eed12b13c17ed76379352f63e0303644bef64386b034f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/mpfr-4.1.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7297fc0b6869453925eed12b13c17ed76379352f63e0303644bef64386b034f1", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.x86_64", + sha256 = "179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/mpfr-4.1.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + ], +) + +rpm( + name = "ncurses-base-0__6.2-10.20210508.el9.aarch64", + sha256 = "00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-base-6.2-10.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + ], +) + +rpm( + name = "ncurses-base-0__6.2-10.20210508.el9.s390x", + sha256 = "00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-base-6.2-10.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + ], +) + +rpm( + name = "ncurses-base-0__6.2-10.20210508.el9.x86_64", + sha256 = "00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-10.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-10.20210508.el9.aarch64", + sha256 = "0ccfc9eeb99be404367bf6157db2d1a6fb9ed479247f578501594e08e8f7080c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-libs-6.2-10.20210508.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0ccfc9eeb99be404367bf6157db2d1a6fb9ed479247f578501594e08e8f7080c", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-10.20210508.el9.s390x", + sha256 = "6ff5f715d02fa044b431b4766e13a424961faa04795f3189b05bf5c58b13dee2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-libs-6.2-10.20210508.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6ff5f715d02fa044b431b4766e13a424961faa04795f3189b05bf5c58b13dee2", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-10.20210508.el9.x86_64", + sha256 = "f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-10.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + ], +) + +rpm( + name = "ndctl-libs-0__78-2.el9.x86_64", + sha256 = "6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ndctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + ], +) + +rpm( + name = "nettle-0__3.9.1-1.el9.aarch64", + sha256 = "991294c5c3f1544172cbc0c3bf27540036e0d09f42c161ef8bdf231c97d9ced0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nettle-3.9.1-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/991294c5c3f1544172cbc0c3bf27540036e0d09f42c161ef8bdf231c97d9ced0", + ], +) + +rpm( + name = "nettle-0__3.9.1-1.el9.s390x", + sha256 = "3b13fd8975ebb5bf3eff89eeb0d5ec0dc6f65d8bd8776b1dae8d2c8ce99b54bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nettle-3.9.1-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3b13fd8975ebb5bf3eff89eeb0d5ec0dc6f65d8bd8776b1dae8d2c8ce99b54bb", + ], +) + +rpm( + name = "nettle-0__3.9.1-1.el9.x86_64", + sha256 = "ffeeab0a6b0caaf457ad77a64bb1dfac6c1144343f1057de64a89b5ae4b58bf5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nettle-3.9.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ffeeab0a6b0caaf457ad77a64bb1dfac6c1144343f1057de64a89b5ae4b58bf5", + ], +) + +rpm( + name = "nftables-1__1.0.9-3.el9.aarch64", + sha256 = "979faab3c0c318f4f1df5edd8b06efb20898461003237af3838f937d63b12d98", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nftables-1.0.9-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/979faab3c0c318f4f1df5edd8b06efb20898461003237af3838f937d63b12d98", + ], +) + +rpm( + name = "nftables-1__1.0.9-3.el9.s390x", + sha256 = "a8d9bd2a045a06a50756af71d41a3d4d15677d120bb1cf833907db2e990adad0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nftables-1.0.9-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a8d9bd2a045a06a50756af71d41a3d4d15677d120bb1cf833907db2e990adad0", + ], +) + +rpm( + name = "nftables-1__1.0.9-3.el9.x86_64", + sha256 = "3f72eee1c40da5fa1f2eb59a77723f781ff27c53411b2aca1aee8bd6a577915b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nftables-1.0.9-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f72eee1c40da5fa1f2eb59a77723f781ff27c53411b2aca1aee8bd6a577915b", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-3.el9.aarch64", + sha256 = "8501b68c6a67b0a34f36b9c125fe5a1a71b6500460c160c1acc02131eaa280b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/nmap-ncat-7.92-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8501b68c6a67b0a34f36b9c125fe5a1a71b6500460c160c1acc02131eaa280b3", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-3.el9.s390x", + sha256 = "0e3b53ac9a6711647f92c744038eca3ababd57253eb397d24fc8af2bebdd3e32", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/nmap-ncat-7.92-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e3b53ac9a6711647f92c744038eca3ababd57253eb397d24fc8af2bebdd3e32", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-3.el9.x86_64", + sha256 = "6126169e5ba3c3acc5fe8c458b425adb7beeeadf21177a5e3204931b9333b2ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/nmap-ncat-7.92-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6126169e5ba3c3acc5fe8c458b425adb7beeeadf21177a5e3204931b9333b2ef", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.x86_64", + sha256 = "a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/npth-1.6-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-1.el9.aarch64", + sha256 = "40f7ef0c0fd573c86227a56b25352c731f41d75acd25d7c7a10c2167bb9aaf74", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numactl-libs-2.0.19-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/40f7ef0c0fd573c86227a56b25352c731f41d75acd25d7c7a10c2167bb9aaf74", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-1.el9.s390x", + sha256 = "47d0a1240e2223c10dc00b6f303e41c638e916b4d2f7a780c8e690ecd2731931", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/numactl-libs-2.0.19-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/47d0a1240e2223c10dc00b6f303e41c638e916b4d2f7a780c8e690ecd2731931", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-1.el9.x86_64", + sha256 = "3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.aarch64", + sha256 = "c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numad-0.5-37.20150602git.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.x86_64", + sha256 = "82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numad-0.5-37.20150602git.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + ], +) + +rpm( + name = "openldap-0__2.6.8-3.el9.x86_64", + sha256 = "9e1a9dc066a4157879799a27500312b8ee74a9d3dbc55a5cb85eb6a1bed41332", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openldap-2.6.8-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9e1a9dc066a4157879799a27500312b8ee74a9d3dbc55a5cb85eb6a1bed41332", + ], +) + +rpm( + name = "openssl-1__3.2.2-6.el9.aarch64", + sha256 = "6cad4a9668d8f7c1e813ebed24bf536cc087b529bf2287dacf99b4087fb88e7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-3.2.2-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6cad4a9668d8f7c1e813ebed24bf536cc087b529bf2287dacf99b4087fb88e7c", + ], +) + +rpm( + name = "openssl-1__3.2.2-6.el9.s390x", + sha256 = "78c30e1672240edd49aead126b5e7a252edbc5b759602dd3f5f24ea285399b36", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-3.2.2-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/78c30e1672240edd49aead126b5e7a252edbc5b759602dd3f5f24ea285399b36", + ], +) + +rpm( + name = "openssl-1__3.2.2-6.el9.x86_64", + sha256 = "3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-3.2.2-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a", + ], +) + +rpm( + name = "openssl-libs-1__3.2.2-6.el9.aarch64", + sha256 = "87c5306a737dd0d6e048aa13b8d87d65e22b58f05b086ce1d84d236d32ab83d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-libs-3.2.2-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/87c5306a737dd0d6e048aa13b8d87d65e22b58f05b086ce1d84d236d32ab83d3", + ], +) + +rpm( + name = "openssl-libs-1__3.2.2-6.el9.s390x", + sha256 = "3c57bf4b0a4f527797052d881da42bff488e4ffdaa365d95ea16d7e874299073", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-libs-3.2.2-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3c57bf4b0a4f527797052d881da42bff488e4ffdaa365d95ea16d7e874299073", + ], +) + +rpm( + name = "openssl-libs-1__3.2.2-6.el9.x86_64", + sha256 = "4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-libs-3.2.2-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738", + ], +) + +rpm( + name = "osinfo-db-0__20240701-3.el9.x86_64", + sha256 = "cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20240701-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.x86_64", + sha256 = "2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-tools-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.aarch64", + sha256 = "6a255062581be1ba36a33d1b22b46f129fc42d20e0e300c0e8f57639f2951266", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-0.25.3-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6a255062581be1ba36a33d1b22b46f129fc42d20e0e300c0e8f57639f2951266", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.s390x", + sha256 = "11c4d8edac3f3944104ba989ee9460efc1ba6a8bf79a3bae49b395c0cc7fd5dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-0.25.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/11c4d8edac3f3944104ba989ee9460efc1ba6a8bf79a3bae49b395c0cc7fd5dc", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.x86_64", + sha256 = "2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.aarch64", + sha256 = "6edd6a98ba08cf62dfe98fca9d16337808321504c778165cf8aff055b63dcd06", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-trust-0.25.3-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6edd6a98ba08cf62dfe98fca9d16337808321504c778165cf8aff055b63dcd06", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.s390x", + sha256 = "7aa852f515edcc3056bbf35e208bd8f57f68577bff047e54337fa87e0505057a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-trust-0.25.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7aa852f515edcc3056bbf35e208bd8f57f68577bff047e54337fa87e0505057a", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.x86_64", + sha256 = "f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + ], +) + +rpm( + name = "pam-0__1.5.1-23.el9.aarch64", + sha256 = "29b59cfdd2eee4f243f32b623c03b66fdce44d2ab6ac6b72843e76ee94460946", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pam-1.5.1-23.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29b59cfdd2eee4f243f32b623c03b66fdce44d2ab6ac6b72843e76ee94460946", + ], +) + +rpm( + name = "pam-0__1.5.1-23.el9.s390x", + sha256 = "ac755ce4f02bcdc10724c7ab899a890bc056dcb9ce64ca152c070d49100defdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pam-1.5.1-23.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ac755ce4f02bcdc10724c7ab899a890bc056dcb9ce64ca152c070d49100defdf", + ], +) + +rpm( + name = "pam-0__1.5.1-23.el9.x86_64", + sha256 = "fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.x86_64", + sha256 = "77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/parted-3.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + ], +) + +rpm( + name = "passt-0__0__caret__20250121.g4f2c8e7-3.el9.aarch64", + sha256 = "f6c44f7b74a1343042870be89d4f869548343102b81b7eb9d0b4d0def82339a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/passt-0%5E20250121.g4f2c8e7-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f6c44f7b74a1343042870be89d4f869548343102b81b7eb9d0b4d0def82339a1", + ], +) + +rpm( + name = "passt-0__0__caret__20250121.g4f2c8e7-3.el9.s390x", + sha256 = "62bf2c732d0718023dab5fcf8103849ae6608c53b2a92855c3923a784fa2e445", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/passt-0%5E20250121.g4f2c8e7-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/62bf2c732d0718023dab5fcf8103849ae6608c53b2a92855c3923a784fa2e445", + ], +) + +rpm( + name = "passt-0__0__caret__20250121.g4f2c8e7-3.el9.x86_64", + sha256 = "dacf3034c6d12b1472d6031f4a012bbe26063a841cd6e6164a736472c8cfe9bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/passt-0%5E20250121.g4f2c8e7-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dacf3034c6d12b1472d6031f4a012bbe26063a841cd6e6164a736472c8cfe9bf", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.aarch64", + sha256 = "dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre-8.44-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.s390x", + sha256 = "e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre-8.44-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.x86_64", + sha256 = "7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre-8.44-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.aarch64", + sha256 = "c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-10.40-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.s390x", + sha256 = "f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-10.40-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.x86_64", + sha256 = "bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-10.40-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.aarch64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.s390x", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.x86_64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.aarch64", + sha256 = "949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/pixman-0.40.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.s390x", + sha256 = "8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/pixman-0.40.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.x86_64", + sha256 = "e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-0.40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.s390x", + sha256 = "18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.aarch64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.s390x", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.x86_64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.aarch64", + sha256 = "d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.s390x", + sha256 = "d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.x86_64", + sha256 = "e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + ], +) + +rpm( + name = "policycoreutils-0__3.6-2.1.el9.aarch64", + sha256 = "93270211cc317bdd44706c3a216ebc8155942e349510a3906f26df0d10328d78", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/policycoreutils-3.6-2.1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/93270211cc317bdd44706c3a216ebc8155942e349510a3906f26df0d10328d78", + ], +) + +rpm( + name = "policycoreutils-0__3.6-2.1.el9.s390x", + sha256 = "7ccadb5f8c3ecea0e24447211179c90abbb56cb8d52b97e811137a4588d9ce79", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/policycoreutils-3.6-2.1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7ccadb5f8c3ecea0e24447211179c90abbb56cb8d52b97e811137a4588d9ce79", + ], +) + +rpm( + name = "policycoreutils-0__3.6-2.1.el9.x86_64", + sha256 = "a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-2.1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + ], +) + +rpm( + name = "polkit-0__0.117-13.el9.aarch64", + sha256 = "f80beec26bc1ccd464ccfc1c692f9bb0ff04fee6000b4f10948e88b36de1149d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-0.117-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f80beec26bc1ccd464ccfc1c692f9bb0ff04fee6000b4f10948e88b36de1149d", + ], +) + +rpm( + name = "polkit-0__0.117-13.el9.s390x", + sha256 = "b80af496f6394f3758d7636f406473ecf8352186488c5cd7626d8b6b3f445c3c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-0.117-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b80af496f6394f3758d7636f406473ecf8352186488c5cd7626d8b6b3f445c3c", + ], +) + +rpm( + name = "polkit-0__0.117-13.el9.x86_64", + sha256 = "81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + ], +) + +rpm( + name = "polkit-libs-0__0.117-13.el9.aarch64", + sha256 = "d8bbf2c31e641fdec12dc572497dc7756a6b1fe0c5f24133ada81a6ebf89b556", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-libs-0.117-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d8bbf2c31e641fdec12dc572497dc7756a6b1fe0c5f24133ada81a6ebf89b556", + ], +) + +rpm( + name = "polkit-libs-0__0.117-13.el9.s390x", + sha256 = "a4e49dcaa9ec165ea4d67faa1bd96fac28bfc705b3fa1a9f5fc7cce0388ecb34", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-libs-0.117-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a4e49dcaa9ec165ea4d67faa1bd96fac28bfc705b3fa1a9f5fc7cce0388ecb34", + ], +) + +rpm( + name = "polkit-libs-0__0.117-13.el9.x86_64", + sha256 = "127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.aarch64", + sha256 = "032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/popt-1.18-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.s390x", + sha256 = "b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/popt-1.18-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.x86_64", + sha256 = "d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/popt-1.18-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.aarch64", + sha256 = "a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/procps-ng-3.3.17-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.s390x", + sha256 = "3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/procps-ng-3.3.17-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.x86_64", + sha256 = "e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/procps-ng-3.3.17-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.aarch64", + sha256 = "7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/protobuf-c-1.3.3-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.s390x", + sha256 = "a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/protobuf-c-1.3.3-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.x86_64", + sha256 = "3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/protobuf-c-1.3.3-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.aarch64", + sha256 = "4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/psmisc-23.4-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.s390x", + sha256 = "2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/psmisc-23.4-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.x86_64", + sha256 = "e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/psmisc-23.4-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.x86_64", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "python3-0__3.9.21-1.el9.aarch64", + sha256 = "bb1089df1f6ea68cca4f08980ad181c1c2ce3144548fa19389ea5aae5ecb605c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-3.9.21-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bb1089df1f6ea68cca4f08980ad181c1c2ce3144548fa19389ea5aae5ecb605c", + ], +) + +rpm( + name = "python3-0__3.9.21-1.el9.s390x", + sha256 = "93b37d292ecbafa9f83c2f1847812acec15f4104e6557083351c3306b0f94a8c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-3.9.21-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/93b37d292ecbafa9f83c2f1847812acec15f4104e6557083351c3306b0f94a8c", + ], +) + +rpm( + name = "python3-0__3.9.21-1.el9.x86_64", + sha256 = "250add70042181791ed4d7081908ab3ce06dfd9e71410388245b77301dfd71ea", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-3.9.21-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/250add70042181791ed4d7081908ab3ce06dfd9e71410388245b77301dfd71ea", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.aarch64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.s390x", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.x86_64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.aarch64", + sha256 = "ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-dbus-1.2.18-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.s390x", + sha256 = "6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-dbus-1.2.18-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.x86_64", + sha256 = "8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-dbus-1.2.18-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.aarch64", + sha256 = "815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-3.40.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.s390x", + sha256 = "7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-3.40.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.x86_64", + sha256 = "bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-3.40.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.s390x", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.aarch64", + sha256 = "600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-kmod-0.9-32.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.s390x", + sha256 = "d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-kmod-0.9-32.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.x86_64", + sha256 = "e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-kmod-0.9-32.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + ], +) + +rpm( + name = "python3-libs-0__3.9.21-1.el9.aarch64", + sha256 = "7ba4b3c98000ff2744ad9ada82f07c9ad2a821eb075f524bcc4271ff95527830", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-libs-3.9.21-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7ba4b3c98000ff2744ad9ada82f07c9ad2a821eb075f524bcc4271ff95527830", + ], +) + +rpm( + name = "python3-libs-0__3.9.21-1.el9.s390x", + sha256 = "6d662ee9da76b04042a23e85ad82d2592110608033ad63aa4274cf364b1b9c7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-libs-3.9.21-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d662ee9da76b04042a23e85ad82d2592110608033ad63aa4274cf364b1b9c7c", + ], +) + +rpm( + name = "python3-libs-0__3.9.21-1.el9.x86_64", + sha256 = "92674f97852cb73194ff4afd9bbb4de9f7de6796b2f660e88fe4296e7fd3843e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-libs-3.9.21-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/92674f97852cb73194ff4afd9bbb4de9f7de6796b2f660e88fe4296e7fd3843e", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.aarch64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.s390x", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.x86_64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.aarch64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.s390x", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.x86_64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.aarch64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.s390x", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.x86_64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.aarch64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.s390x", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.x86_64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-13.el9.aarch64", + sha256 = "a4dfbc2c514f58839d7704acc046eb0fc54cfb670413decebd9641b4d76439e8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-setuptools-wheel-53.0.0-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a4dfbc2c514f58839d7704acc046eb0fc54cfb670413decebd9641b4d76439e8", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-13.el9.s390x", + sha256 = "a4dfbc2c514f58839d7704acc046eb0fc54cfb670413decebd9641b4d76439e8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-setuptools-wheel-53.0.0-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a4dfbc2c514f58839d7704acc046eb0fc54cfb670413decebd9641b4d76439e8", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-13.el9.x86_64", + sha256 = "a4dfbc2c514f58839d7704acc046eb0fc54cfb670413decebd9641b4d76439e8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-53.0.0-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a4dfbc2c514f58839d7704acc046eb0fc54cfb670413decebd9641b4d76439e8", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.aarch64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.s390x", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.x86_64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.aarch64", + sha256 = "a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-urwid-2.1.2-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.s390x", + sha256 = "8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-urwid-2.1.2-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.x86_64", + sha256 = "b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-urwid-2.1.2-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + ], +) + +rpm( + name = "qemu-img-17__9.1.0-12.el9.aarch64", + sha256 = "af53c4863192b23c2588c584b3ac46cbc8f8a258d5cb1ce1472a938d2d3cbbb6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-img-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/af53c4863192b23c2588c584b3ac46cbc8f8a258d5cb1ce1472a938d2d3cbbb6", + ], +) + +rpm( + name = "qemu-img-17__9.1.0-12.el9.s390x", + sha256 = "28cb1bf7fdcbaa9bf18d1ab2e0f2c431908eb26d5bf1e40724aac95bd56c165f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-img-9.1.0-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/28cb1bf7fdcbaa9bf18d1ab2e0f2c431908eb26d5bf1e40724aac95bd56c165f", + ], +) + +rpm( + name = "qemu-img-17__9.1.0-12.el9.x86_64", + sha256 = "77436ffa890770b6a1fc24445fcd883edcce7db269eaea1b1dca351c6cdc7950", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-img-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77436ffa890770b6a1fc24445fcd883edcce7db269eaea1b1dca351c6cdc7950", + ], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-12.el9.aarch64", + sha256 = "75c477d1c02543649d17a64fa1cee01ce0b3742717b00af1ef2081c1d7ce3b12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-common-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/75c477d1c02543649d17a64fa1cee01ce0b3742717b00af1ef2081c1d7ce3b12", + ], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-12.el9.s390x", + sha256 = "32deb57b65fb22a785565aac9729255f72e66ac3dcf9b5155a8e73a88298b612", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-common-9.1.0-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/32deb57b65fb22a785565aac9729255f72e66ac3dcf9b5155a8e73a88298b612", + ], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-12.el9.x86_64", + sha256 = "3e315ba4ab576d4e15943cde333a7d3fdc73d024ce0109cc49812bd007517497", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-common-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3e315ba4ab576d4e15943cde333a7d3fdc73d024ce0109cc49812bd007517497", + ], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-12.el9.aarch64", + sha256 = "5096a57d82232df398faec8e52c76f5cc9347b72e52abc752ae304a328782536", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-core-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5096a57d82232df398faec8e52c76f5cc9347b72e52abc752ae304a328782536", + ], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-12.el9.s390x", + sha256 = "4b7aae8634eb1f46afb07e67ba2519fc4b8aaca0d0d4cc4341a9a6ca6caa072c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-core-9.1.0-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4b7aae8634eb1f46afb07e67ba2519fc4b8aaca0d0d4cc4341a9a6ca6caa072c", + ], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-12.el9.x86_64", + sha256 = "29cefeb5c056d6dcc78604cf2ff43d159229d33d09533b3679a4d7b7f78755cd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-core-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/29cefeb5c056d6dcc78604cf2ff43d159229d33d09533b3679a4d7b7f78755cd", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__9.1.0-12.el9.aarch64", + sha256 = "4cd33cfa7e9c8412a4735ea9b8a04e2a9bd943134949c236d13536452842bf2f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4cd33cfa7e9c8412a4735ea9b8a04e2a9bd943134949c236d13536452842bf2f", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__9.1.0-12.el9.s390x", + sha256 = "cb8fa55ed241c1db806e9de6a5bcce792ff0a10c88be26604fdf9078d586281c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-9.1.0-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cb8fa55ed241c1db806e9de6a5bcce792ff0a10c88be26604fdf9078d586281c", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__9.1.0-12.el9.x86_64", + sha256 = "a2ad899ce1d002c7e6dbcc6c93425119a9114ca16446e39c5d6f4e1abb2a86e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2ad899ce1d002c7e6dbcc6c93425119a9114ca16446e39c5d6f4e1abb2a86e9", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-ccw-17__9.1.0-12.el9.s390x", + sha256 = "578354c0eea7d323713eed5ac713b2407eb732bd17474fbc271dd00daf1064bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-ccw-9.1.0-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/578354c0eea7d323713eed5ac713b2407eb732bd17474fbc271dd00daf1064bd", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-12.el9.aarch64", + sha256 = "92cf0e715a99cc75a8cc9a37f5796c343105e98b647f4a4a346a839f4e956d8a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/92cf0e715a99cc75a8cc9a37f5796c343105e98b647f4a4a346a839f4e956d8a", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-12.el9.x86_64", + sha256 = "63dce42d15a79658d57a38005e45e84eaf909a56638fbee1eeb5381342394194", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/63dce42d15a79658d57a38005e45e84eaf909a56638fbee1eeb5381342394194", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__9.1.0-12.el9.aarch64", + sha256 = "b098bd106c6b36fb1d8e99af83b002291f02fa768081f7e5f0575e5169a2b27d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-host-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b098bd106c6b36fb1d8e99af83b002291f02fa768081f7e5f0575e5169a2b27d", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__9.1.0-12.el9.s390x", + sha256 = "dcdd3d31b96e41bb81f1165917b7a6c5be78dc77f485b88e995b3aef86be8e43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-usb-host-9.1.0-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dcdd3d31b96e41bb81f1165917b7a6c5be78dc77f485b88e995b3aef86be8e43", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__9.1.0-12.el9.x86_64", + sha256 = "afa7920070ceccfe0208d5f29dc3e693dbaf27e906a5b88653624912e8a06e2b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-host-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/afa7920070ceccfe0208d5f29dc3e693dbaf27e906a5b88653624912e8a06e2b", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__9.1.0-12.el9.aarch64", + sha256 = "929802ec60050f46aaf023d8695a686943e4642d228394390128f913c2b1a1c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-redirect-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/929802ec60050f46aaf023d8695a686943e4642d228394390128f913c2b1a1c0", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__9.1.0-12.el9.x86_64", + sha256 = "e71655b6a44fc899c7adc4faa8d8a042ef2ca1b63eeb910ab88c2b72055899fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-redirect-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e71655b6a44fc899c7adc4faa8d8a042ef2ca1b63eeb910ab88c2b72055899fd", + ], +) + +rpm( + name = "qemu-pr-helper-17__9.1.0-12.el9.aarch64", + sha256 = "6d7b6a05fe09167348a901178bc84666f69b84c8aaf73ba065a4d9b801f20100", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-pr-helper-9.1.0-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6d7b6a05fe09167348a901178bc84666f69b84c8aaf73ba065a4d9b801f20100", + ], +) + +rpm( + name = "qemu-pr-helper-17__9.1.0-12.el9.x86_64", + sha256 = "04816d63ee3b4e4d237cebe6550bace651067ff180d38238e9ffd24ab2fc91de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-pr-helper-9.1.0-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/04816d63ee3b4e4d237cebe6550bace651067ff180d38238e9ffd24ab2fc91de", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.aarch64", + sha256 = "2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/readline-8.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.s390x", + sha256 = "7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/readline-8.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.x86_64", + sha256 = "49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/readline-8.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-36.el9.aarch64", + sha256 = "68974d8d9153d1d3a01844b29d5804f1ff8b362303d81d80bcb2dad666f5306d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-4.16.1.3-36.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/68974d8d9153d1d3a01844b29d5804f1ff8b362303d81d80bcb2dad666f5306d", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-36.el9.s390x", + sha256 = "992e8faf8de845fad8c818763c2b36e4f421e9e7d1cce55b60929c1b9fb7d024", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-4.16.1.3-36.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/992e8faf8de845fad8c818763c2b36e4f421e9e7d1cce55b60929c1b9fb7d024", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-36.el9.x86_64", + sha256 = "510047c59adc4f6ec2272feaeb4f707d7cab71485c916a0b3ed438fa2be084cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-36.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/510047c59adc4f6ec2272feaeb4f707d7cab71485c916a0b3ed438fa2be084cf", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-36.el9.aarch64", + sha256 = "31f90b50268f22c59215fdedd60310ab82f13c80d09c6f138677ac5b07f168ee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-libs-4.16.1.3-36.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/31f90b50268f22c59215fdedd60310ab82f13c80d09c6f138677ac5b07f168ee", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-36.el9.s390x", + sha256 = "30b123fe376babacf3cbc58a70ffc619dec4c8c36da6ed0218ac3380cbec12ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-libs-4.16.1.3-36.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/30b123fe376babacf3cbc58a70ffc619dec4c8c36da6ed0218ac3380cbec12ce", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-36.el9.x86_64", + sha256 = "e78e9d692bf9fa1a5113ef89d124cf5707224e15e141a09b67cf819ff25cb875", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-36.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e78e9d692bf9fa1a5113ef89d124cf5707224e15e141a09b67cf819ff25cb875", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-36.el9.aarch64", + sha256 = "f95f5a95cec3e85cd4ad269ae6e55cc598796daf85c770f000a83d3b046a7a52", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-plugin-selinux-4.16.1.3-36.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f95f5a95cec3e85cd4ad269ae6e55cc598796daf85c770f000a83d3b046a7a52", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-36.el9.s390x", + sha256 = "36acbafeac8af6f150cd9a7f402187d5d6505611701f42ff842b27cfa3bbf475", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-plugin-selinux-4.16.1.3-36.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/36acbafeac8af6f150cd9a7f402187d5d6505611701f42ff842b27cfa3bbf475", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-36.el9.x86_64", + sha256 = "3c1d0b39a9a6a0d5a24a13db81c75823295977aac1afdd76068b3497b2e12ac8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-36.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3c1d0b39a9a6a0d5a24a13db81c75823295977aac1afdd76068b3497b2e12ac8", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.x86_64", + sha256 = "cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/scrub-2.6.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + ], +) + +rpm( + name = "seabios-0__1.16.3-4.el9.x86_64", + sha256 = "017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-1.16.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + ], +) + +rpm( + name = "seabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + ], +) + +rpm( + name = "seavgabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seavgabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.aarch64", + sha256 = "cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sed-4.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.s390x", + sha256 = "7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sed-4.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.x86_64", + sha256 = "a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sed-4.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + ], +) + +rpm( + name = "selinux-policy-0__38.1.51-1.el9.aarch64", + sha256 = "1c59ee39d7a2e01a405887d2b05f9199a2b22c69a870e386ce6e38f5b32016f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-38.1.51-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c59ee39d7a2e01a405887d2b05f9199a2b22c69a870e386ce6e38f5b32016f1", + ], +) + +rpm( + name = "selinux-policy-0__38.1.51-1.el9.s390x", + sha256 = "1c59ee39d7a2e01a405887d2b05f9199a2b22c69a870e386ce6e38f5b32016f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-38.1.51-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c59ee39d7a2e01a405887d2b05f9199a2b22c69a870e386ce6e38f5b32016f1", + ], +) + +rpm( + name = "selinux-policy-0__38.1.51-1.el9.x86_64", + sha256 = "1c59ee39d7a2e01a405887d2b05f9199a2b22c69a870e386ce6e38f5b32016f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-38.1.51-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c59ee39d7a2e01a405887d2b05f9199a2b22c69a870e386ce6e38f5b32016f1", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.51-1.el9.aarch64", + sha256 = "86077bb5a41fea98dc75c8dd24369f4c4746f250369743cff96a89e11da5f83b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-targeted-38.1.51-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/86077bb5a41fea98dc75c8dd24369f4c4746f250369743cff96a89e11da5f83b", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.51-1.el9.s390x", + sha256 = "86077bb5a41fea98dc75c8dd24369f4c4746f250369743cff96a89e11da5f83b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-targeted-38.1.51-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/86077bb5a41fea98dc75c8dd24369f4c4746f250369743cff96a89e11da5f83b", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.51-1.el9.x86_64", + sha256 = "86077bb5a41fea98dc75c8dd24369f4c4746f250369743cff96a89e11da5f83b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-targeted-38.1.51-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/86077bb5a41fea98dc75c8dd24369f4c4746f250369743cff96a89e11da5f83b", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.aarch64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.s390x", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.x86_64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.aarch64", + sha256 = "10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/sevctl-0.1.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.s390x", + sha256 = "1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/sevctl-0.1.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + ], +) + +rpm( + name = "sevctl-0__0.4.2-1.el9.x86_64", + sha256 = "3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sevctl-0.4.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + ], +) + +rpm( + name = "shadow-utils-2__4.9-12.el9.aarch64", + sha256 = "37f2e7bbe372bcceaa50f9d36bdc821e6ec13092a580f22c2e15d08a5c5c46ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/shadow-utils-4.9-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/37f2e7bbe372bcceaa50f9d36bdc821e6ec13092a580f22c2e15d08a5c5c46ac", + ], +) + +rpm( + name = "shadow-utils-2__4.9-12.el9.s390x", + sha256 = "be7591a5fc1954e2328195a50c113c7ceb07d5bdc563dcd5d02956993ed65f6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/shadow-utils-4.9-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/be7591a5fc1954e2328195a50c113c7ceb07d5bdc563dcd5d02956993ed65f6f", + ], +) + +rpm( + name = "shadow-utils-2__4.9-12.el9.x86_64", + sha256 = "23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.aarch64", + sha256 = "02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/snappy-1.1.8-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.s390x", + sha256 = "e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/snappy-1.1.8-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.x86_64", + sha256 = "10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/snappy-1.1.8-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-7.el9.aarch64", + sha256 = "f8ffaf1f7ca932f6565754d4c6327f58f41ff4fa7239394b6ad593641dd6ce74", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sqlite-libs-3.34.1-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f8ffaf1f7ca932f6565754d4c6327f58f41ff4fa7239394b6ad593641dd6ce74", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-7.el9.s390x", + sha256 = "00136bb1b209b112853b5e2217966276c1cf24c115028afa99f5eb1389984790", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sqlite-libs-3.34.1-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/00136bb1b209b112853b5e2217966276c1cf24c115028afa99f5eb1389984790", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-7.el9.x86_64", + sha256 = "eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + ], +) + +rpm( + name = "sssd-client-0__2.9.6-2.el9.aarch64", + sha256 = "86ac32598a6472bfe73b4b69b6f0308e1034e5976f7f6b983c3c35016651878b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sssd-client-2.9.6-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/86ac32598a6472bfe73b4b69b6f0308e1034e5976f7f6b983c3c35016651878b", + ], +) + +rpm( + name = "sssd-client-0__2.9.6-2.el9.s390x", + sha256 = "5b136c94123ddd8395281e5d1e6e950d6a25f0b52f30812aba3b2bb293469ab7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sssd-client-2.9.6-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5b136c94123ddd8395281e5d1e6e950d6a25f0b52f30812aba3b2bb293469ab7", + ], +) + +rpm( + name = "sssd-client-0__2.9.6-2.el9.x86_64", + sha256 = "2e904fbb2a9c3cfd7e04ab92291ae7c9e88c93992f18b5de8f23ef4dfdcc87ec", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sssd-client-2.9.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2e904fbb2a9c3cfd7e04ab92291ae7c9e88c93992f18b5de8f23ef4dfdcc87ec", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.aarch64", + sha256 = "54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.s390x", + sha256 = "2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.x86_64", + sha256 = "e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.aarch64", + sha256 = "da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-libs-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.s390x", + sha256 = "2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-libs-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.x86_64", + sha256 = "732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-libs-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.aarch64", + sha256 = "35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-tools-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.s390x", + sha256 = "81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-tools-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.x86_64", + sha256 = "8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-tools-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + ], +) + +rpm( + name = "systemd-0__252-51.el9.aarch64", + sha256 = "5907281880b09b40e68977936724fb3382c82a9d06a17b6684ac5ca53b37f5a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-252-51.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5907281880b09b40e68977936724fb3382c82a9d06a17b6684ac5ca53b37f5a1", + ], +) + +rpm( + name = "systemd-0__252-51.el9.s390x", + sha256 = "bccd6d334bf2b1ed8e6598dc58df3d9575f718f8a3e418b89f91cac0f7219743", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-252-51.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bccd6d334bf2b1ed8e6598dc58df3d9575f718f8a3e418b89f91cac0f7219743", + ], +) + +rpm( + name = "systemd-0__252-51.el9.x86_64", + sha256 = "c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-252-51.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0", + ], +) + +rpm( + name = "systemd-container-0__252-51.el9.aarch64", + sha256 = "204de093f5e6a4ddb5f6ca1569507df68d9d40780a8d0439475ef3811da1faed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-container-252-51.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/204de093f5e6a4ddb5f6ca1569507df68d9d40780a8d0439475ef3811da1faed", + ], +) + +rpm( + name = "systemd-container-0__252-51.el9.s390x", + sha256 = "06a7ac466d330ad343c059c524128ed09456e68a5f789bce6ea0fa0a846e26e6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-container-252-51.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/06a7ac466d330ad343c059c524128ed09456e68a5f789bce6ea0fa0a846e26e6", + ], +) + +rpm( + name = "systemd-container-0__252-51.el9.x86_64", + sha256 = "653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-container-252-51.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde", + ], +) + +rpm( + name = "systemd-libs-0__252-51.el9.aarch64", + sha256 = "916281104b6006681f75435618820b811acc7d3f72375c8f6316f67a52dc329a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-libs-252-51.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/916281104b6006681f75435618820b811acc7d3f72375c8f6316f67a52dc329a", + ], +) + +rpm( + name = "systemd-libs-0__252-51.el9.s390x", + sha256 = "c1a50c1446b2b976ada17235e6b71550f9c4c00f15f5c5891314bfd472e489cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-libs-252-51.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c1a50c1446b2b976ada17235e6b71550f9c4c00f15f5c5891314bfd472e489cf", + ], +) + +rpm( + name = "systemd-libs-0__252-51.el9.x86_64", + sha256 = "a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-libs-252-51.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f", + ], +) + +rpm( + name = "systemd-pam-0__252-51.el9.aarch64", + sha256 = "9f5e166c71b9d8799176d3e7c2f1672e14856dcdf9845d04a3eddd97ab1c688b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-pam-252-51.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9f5e166c71b9d8799176d3e7c2f1672e14856dcdf9845d04a3eddd97ab1c688b", + ], +) + +rpm( + name = "systemd-pam-0__252-51.el9.s390x", + sha256 = "ff300ee74693080ecc4a48cc2920382a28b8ea9a0882aadad32147d66115f5a2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-pam-252-51.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ff300ee74693080ecc4a48cc2920382a28b8ea9a0882aadad32147d66115f5a2", + ], +) + +rpm( + name = "systemd-pam-0__252-51.el9.x86_64", + sha256 = "26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-pam-252-51.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-51.el9.aarch64", + sha256 = "afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-rpm-macros-252-51.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-51.el9.s390x", + sha256 = "afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-rpm-macros-252-51.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-51.el9.x86_64", + sha256 = "afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-rpm-macros-252-51.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.aarch64", + sha256 = "e3ee12a44a68c84627e43c2512ad8904a4778a82b274d0e8147ca46645f4a1fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tar-1.34-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e3ee12a44a68c84627e43c2512ad8904a4778a82b274d0e8147ca46645f4a1fb", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.s390x", + sha256 = "304bca9dd546a39a59bd50b8ec5fb3f42898138f92e49945be09cab503cdf1a2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tar-1.34-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/304bca9dd546a39a59bd50b8ec5fb3f42898138f92e49945be09cab503cdf1a2", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.x86_64", + sha256 = "b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tar-1.34-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.aarch64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.s390x", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.x86_64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "targetcli-0__2.1.57-2.el9.aarch64", + sha256 = "41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/targetcli-2.1.57-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + ], +) + +rpm( + name = "targetcli-0__2.1.57-2.el9.s390x", + sha256 = "41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/targetcli-2.1.57-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + ], +) + +rpm( + name = "targetcli-0__2.1.57-2.el9.x86_64", + sha256 = "41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/targetcli-2.1.57-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + ], +) + +rpm( + name = "tzdata-0__2025a-1.el9.aarch64", + sha256 = "655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tzdata-2025a-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + ], +) + +rpm( + name = "tzdata-0__2025a-1.el9.s390x", + sha256 = "655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tzdata-2025a-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + ], +) + +rpm( + name = "tzdata-0__2025a-1.el9.x86_64", + sha256 = "655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025a-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + ], +) + +rpm( + name = "unbound-libs-0__1.16.2-8.el9.aarch64", + sha256 = "ea440356d7a11b3b291fd010f82d6afc6ba1eed3b181cb19363b01b290b18866", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/unbound-libs-1.16.2-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ea440356d7a11b3b291fd010f82d6afc6ba1eed3b181cb19363b01b290b18866", + ], +) + +rpm( + name = "unbound-libs-0__1.16.2-8.el9.s390x", + sha256 = "7919a1178433bdf1c9668c73f624082d96901feda72397233c5213593e62cc8b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/unbound-libs-1.16.2-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7919a1178433bdf1c9668c73f624082d96901feda72397233c5213593e62cc8b", + ], +) + +rpm( + name = "unbound-libs-0__1.16.2-8.el9.x86_64", + sha256 = "7e7836a8c710f7d10a594086ba7f3c6eb4a8402bb811a525c66407427262b947", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/unbound-libs-1.16.2-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7e7836a8c710f7d10a594086ba7f3c6eb4a8402bb811a525c66407427262b947", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.aarch64", + sha256 = "3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/usbredir-0.13.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.x86_64", + sha256 = "7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/usbredir-0.13.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.aarch64", + sha256 = "5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/userspace-rcu-0.12.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.x86_64", + sha256 = "119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/userspace-rcu-0.12.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + ], +) + +rpm( + name = "util-linux-0__2.37.4-20.el9.aarch64", + sha256 = "76ae6df88815700e14674fd1acd5d2162fd023374c98dc53c000e0f7b574288a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/76ae6df88815700e14674fd1acd5d2162fd023374c98dc53c000e0f7b574288a", + ], +) + +rpm( + name = "util-linux-0__2.37.4-20.el9.s390x", + sha256 = "fd814b3b94ffe1f905a49308c8d5863b13d865ba48dcca68d6d2b2d09677d610", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd814b3b94ffe1f905a49308c8d5863b13d865ba48dcca68d6d2b2d09677d610", + ], +) + +rpm( + name = "util-linux-0__2.37.4-20.el9.x86_64", + sha256 = "5011faf8c26d7402f1f0438687e3393b1d6a64eaa2ac7f30c1dcf472e8635ef5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5011faf8c26d7402f1f0438687e3393b1d6a64eaa2ac7f30c1dcf472e8635ef5", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-20.el9.aarch64", + sha256 = "7f452299af4a3e656fc3aa59a3ce91f61ce1a57e9753a5fbbc5886db5e5fe36a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-core-2.37.4-20.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7f452299af4a3e656fc3aa59a3ce91f61ce1a57e9753a5fbbc5886db5e5fe36a", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-20.el9.s390x", + sha256 = "5c751a55026449698454e4de778bfbb5acb5d890e8fdace4a0d9826ad9423108", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-core-2.37.4-20.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c751a55026449698454e4de778bfbb5acb5d890e8fdace4a0d9826ad9423108", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-20.el9.x86_64", + sha256 = "e4df98c254564404ae8750d6105290dedf18593ce53654b66ed9cb170bbfbcc7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.37.4-20.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e4df98c254564404ae8750d6105290dedf18593ce53654b66ed9cb170bbfbcc7", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-21.el9.aarch64", + sha256 = "2a06e6863cc4d8c699b727424f2e0a06c75f5c8265cb2bc576242054d1bff444", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/vim-minimal-8.2.2637-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2a06e6863cc4d8c699b727424f2e0a06c75f5c8265cb2bc576242054d1bff444", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-21.el9.s390x", + sha256 = "a04988c53eea9735bb2eb5106e7e2215f5a355af2c33dfbe20c643c811b9176f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/vim-minimal-8.2.2637-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a04988c53eea9735bb2eb5106e7e2215f5a355af2c33dfbe20c643c811b9176f", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-21.el9.x86_64", + sha256 = "1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.aarch64", + sha256 = "7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/virtiofsd-1.13.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.s390x", + sha256 = "4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/virtiofsd-1.13.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.x86_64", + sha256 = "531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/virtiofsd-1.13.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + ], +) + +rpm( + name = "which-0__2.21-29.el9.aarch64", + sha256 = "2edd6b710ebd483724d0c0c1dff3d5922ce3082ea1bd10865d9f4f0bbf4bb050", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/which-2.21-29.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2edd6b710ebd483724d0c0c1dff3d5922ce3082ea1bd10865d9f4f0bbf4bb050", + ], +) + +rpm( + name = "which-0__2.21-29.el9.s390x", + sha256 = "e76d002db39aa53a485a47b97d92378b9a1221de6dedd89a50b070d98e3a4d48", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/which-2.21-29.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e76d002db39aa53a485a47b97d92378b9a1221de6dedd89a50b070d98e3a4d48", + ], +) + +rpm( + name = "which-0__2.21-29.el9.x86_64", + sha256 = "c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-29.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.aarch64", + sha256 = "e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/xorriso-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.s390x", + sha256 = "35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/xorriso-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.x86_64", + sha256 = "15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorriso-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.aarch64", + sha256 = "c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.s390x", + sha256 = "e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.x86_64", + sha256 = "159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.aarch64", + sha256 = "99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-libs-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.s390x", + sha256 = "f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-libs-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.x86_64", + sha256 = "ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-libs-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.aarch64", + sha256 = "c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zlib-1.2.11-41.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.s390x", + sha256 = "bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zlib-1.2.11-41.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.x86_64", + sha256 = "370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zlib-1.2.11-41.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.aarch64", + sha256 = "bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.s390x", + sha256 = "09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.x86_64", + sha256 = "6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + ], +) + +# EDV dependency - START +http_file( + name = "custom-qemu", + downloaded_file_path = "qemu-kvm", + sha256 = "", + urls = [ + "file:///root/go/src/kubevirt.io/kubevirt/build/qemu-system-x86_64", + ], +) + +rpm( + name = "SDL2-0__2.26.0-1.el9.x86_64", + sha256 = "554ca63ca5c87170e907ae2f5182ea62e637006a8c5df229a4b4f9270ac23bd7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/SDL2-2.26.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "adwaita-cursor-theme-0__40.1.1-3.el9.x86_64", + sha256 = "709ea6715775ca94032d8b49148894185263397eaaea147a15da917556da3ea6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-cursor-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "adwaita-icon-theme-0__40.1.1-3.el9.x86_64", + sha256 = "a27bbc0988dd63b0ba8af01f42f2f6486cab6bf9a13077e6c5e542efaf5c793b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-icon-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "alsa-lib-0__1.2.13-2.el9.x86_64", + sha256 = "7b8bca6c63f0e08f6f06b941b073db319de2278fb7b2b99676a3261ac5d51e30", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/alsa-lib-1.2.13-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-0__2.38.0-4.el9.x86_64", + sha256 = "03e55a72bfb0776ba6a37dbc983ca25967ebc90da13022c1d159c47984284c6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-devel-0__2.38.0-4.el9.x86_64", + sha256 = "9d253f023dbdd8c52a300c44edd06b0d67ad2c72f76d02bdc5d94687d7277aa4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-devel-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-0__2.40.3-1.el9.x86_64", + sha256 = "df9b259bf65606248af738a8a70c35d7612e6ed9ba0cf3935930e35c7882bae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-devel-0__2.40.3-1.el9.x86_64", + sha256 = "d6410a0eeacb9e6bd22e891d1803fe838b339e0d91fe0068a11d94eb1d4262db", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-devel-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-0__2.36.0-5.el9.x86_64", + sha256 = "e0d28335d140043d1f2c7b052fdaad8428b1deacbfac3d1174890a176312bdd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-devel-0__2.36.0-5.el9.x86_64", + sha256 = "36bd7fda07c3f65e5daab91fc9ab2936b95f3f141d9522795820601ad9df18a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-devel-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "avahi-libs-0__0.8-22.el9.x86_64", + sha256 = "a50f286097400810fa026edd4128acd9e162d8209dbb4d90caa8661ce1bad7e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/avahi-libs-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "bluez-libs-0__5.72-4.el9.x86_64", + sha256 = "db99a11d01ee64912bad50211e5ce75f9c7a8101e8ca7a3c22ea1f33df14d6eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bluez-libs-5.72-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-iostreams-0__1.75.0-11.el9.x86_64", + sha256 = "569e83f709ee0f507adaa9aefb455945742c2007fb8707c9e6b18467cc85a4ea", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-iostreams-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-system-0__1.75.0-11.el9.x86_64", + sha256 = "5f69c1f1086c06e1aa2c7935197097fc82fcd2736f254dfaf0789038d1725716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-system-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-thread-0__1.75.0-11.el9.x86_64", + sha256 = "cf64248b3e12185189abdc16c6f65bdfa991d183c917603968e54d1146177e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-thread-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "brlapi-0__0.8.2-4.el9.x86_64", + sha256 = "0db4f2ec753e47873a49ab907838cee0f815b74989425a6dc124406002a47c8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brlapi-0.8.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-0__1.0.9-7.el9.x86_64", + sha256 = "6f3aeb611b3d80a031592d7eb54e1606100d4fdf3c94c368784c79b6cfd52d96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-devel-0__1.0.9-7.el9.x86_64", + sha256 = "40ee3f8fe83b5e16d6797f0cd4a3722c41c8fd4a5a2d0a2c6b41622cf29f87c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-devel-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "bzip2-devel-0__1.0.8-10.el9.x86_64", + sha256 = "1a9ddc7fb11abbb14f3b53697808aab021934800f0fd5947ecdcc560c70d625a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/bzip2-devel-1.0.8-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-0__1.17.4-7.el9.x86_64", + sha256 = "5f5177fd5b3ed4ffdf218f730e85af73c223b09f759e47b1c7f2df05d8f87655", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-devel-0__1.17.4-7.el9.x86_64", + sha256 = "e34ac60cd4006a904a835be11aa0849fcce7b3c53219b7dddc8f4b007b1302da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-0__1.17.4-7.el9.x86_64", + sha256 = "2329c39bdde48e1c2f0f64cfebb7edd92ea5188be374396402e03e876d06ad02", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-devel-0__1.17.4-7.el9.x86_64", + sha256 = "77613065496f7f097b7d85a74bee729eb1dd965eb59842c1bb3a5c127198e533", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cmake-filesystem-0__3.26.5-2.el9.x86_64", + sha256 = "4a3c39e721eb1c01bf5e421262c2f10f9ed6b7e987fd2f9c510d309e2b023222", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cmake-filesystem-3.26.5-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "colord-libs-0__1.4.5-4.el9.x86_64", + sha256 = "01af031bc42f35cad5f435fde26b969da0d659b8309caeaff76a66d8f29335d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/colord-libs-1.4.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cryptsetup-libs-0__2.7.2-4.el9.x86_64", + sha256 = "2249560ee705ab561670f4086a5babbd0e29ee38512a2c0a739ce4eaf34e3892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.7.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cups-libs-1__2.3.3op2-33.el9.x86_64", + sha256 = "0d8ae6703b6d5696b3e547ab2557f649e439704cc449f680ed3c01b5dc339627", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cups-libs-2.3.3op2-33.el9.x86_64.rpm", + ], +) + +rpm( + name = "dbus-devel-1__1.12.20-8.el9.x86_64", + sha256 = "9114eef0c3eea868948bb9f2e807d5aeefac3ab013a7f3dd176c4e165cf0c2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/dbus-devel-1.12.20-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "dejavu-sans-fonts-0__2.37-18.el9.x86_64", + sha256 = "aaff108008e6ba95800e40a53f81c7c3ba7d346325e602db187884032848151e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dejavu-sans-fonts-2.37-18.el9.noarch.rpm", + ], +) + +rpm( + name = "elfutils-libelf-devel-0__0.193-1.el9.x86_64", + sha256 = "152bbdef776d9448bc92d4cad14137206e717389d0d67a2048567f69a2b6df96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/elfutils-libelf-devel-0.193-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "fdk-aac-free-0__2.0.0-8.el9.x86_64", + sha256 = "dd7f3619a5a7b5a68f1ea8275afda8ec6ec9a218fa9d0ab5229f3cc5a11095fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fdk-aac-free-2.0.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "flac-libs-0__1.3.3-12.el9.x86_64", + sha256 = "603ef65286c8a0e7a498b7e2a79c8259075b6052731a626b47433cb4aa868457", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/flac-libs-1.3.3-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-0__2.14.0-2.el9.x86_64", + sha256 = "54675062b2254c9fedc04423c171b95a3dfa7226896a05a70c06ecc5af8b31c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-devel-0__2.14.0-2.el9.x86_64", + sha256 = "861c4215221bc6a4fe4f10b5321b23aaff11f47e3e44d7407b972ed424d6e2ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-devel-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-0__2.10.4-11.el9.x86_64", + sha256 = "9f134e7db3966162cd0373fee28e23795cd316f8ce2894d99890750e971eb7c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/freetype-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-devel-0__2.10.4-11.el9.x86_64", + sha256 = "a20eba25ea73dc4e7dd26b4b06c7af82b94e8a587d44eb1f91e7ed336ff82e04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/freetype-devel-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-0__1.0.10-6.el9.2.x86_64", + sha256 = "f5557a876e6517ebf020f9295bee7890cfb92a8a800a56d19729f413ce50e4ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-devel-0__1.0.10-6.el9.2.x86_64", + sha256 = "e12f772ada49ce459ae47383107c46eee5d156bb348c51158b9889c3cf9e52b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-devel-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fuse3-libs-0__3.10.2-9.el9.x86_64", + sha256 = "f9620a11fddf8e66cfec9f78d335e2a5af29793b96ee8740d297102cc7a8cb34", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fuse3-libs-3.10.2-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-0__2.42.6-4.el9.x86_64", + sha256 = "5bb9c411959293833a67a25d7d3b31a0fa37910d5bec01c219fd807b01915b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64", + sha256 = "8af5eb3da4cec1e95fbb63f2b03e6ad3990c612039e8678f14380ed678751853", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-devel-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64", + sha256 = "9612e4a738d0e54ad9ef039af0401e1bf2ea3808a981659d22a48fdc440c423b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-modules-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "glib2-devel-0__2.68.4-16.el9.x86_64", + sha256 = "7b248800aef3307e0d9c83e49e19e24a3c3953c2f2322de4c9ae7d852089778c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glib2-devel-2.68.4-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-0__1.3.14-9.el9.x86_64", + sha256 = "911ac19b0b08a9162959f8cee202bb62da5a0f1dd32fc54086bd7d08f9a89f23", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/graphite2-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-devel-0__1.3.14-9.el9.x86_64", + sha256 = "d3dc72e393e1fd8a30491bffa4c9a825c615f4d7a7e47affb7b2378796521a3c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/graphite2-devel-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gsm-0__1.0.19-6.el9.x86_64", + sha256 = "d4c242d54a503c80c07467b68e212986fdb65e4afb8487150143b4490b05177c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gsm-1.0.19-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk-update-icon-cache-0__3.24.31-5.el9.x86_64", + sha256 = "91ac46ed1e4bac38f5e0457635873916fee31adeef9fdfdec63ad7d9c34f4a15", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk-update-icon-cache-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-0__3.24.31-5.el9.x86_64", + sha256 = "37886175fbb321f4bb4102556d5163d87e0adfd07fcc7ec43f0b2452c4a2c547", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-devel-0__3.24.31-5.el9.x86_64", + sha256 = "bb3a014b6a7da8a5662d56a7e516cd18108fe75981adcdfa536ecd79a99b4ddd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-devel-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-0__2.7.4-10.el9.x86_64", + sha256 = "e0ba0095c24ee9c5239474257c3e516ac354c6605bc8e3b9bafaf2899b61b014", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/harfbuzz-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-devel-0__2.7.4-10.el9.x86_64", + sha256 = "5a08518d7bcf59a59d8b4ce5687719fb1d94f9c2afd53e54e9d2b7326d0cf81c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-devel-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-icu-0__2.7.4-10.el9.x86_64", + sha256 = "d536701878b2fad3217b51141422038a9c80aff3cf508c13d5bef22d18e5ddff", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-icu-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "hicolor-icon-theme-0__0.17-13.el9.x86_64", + sha256 = "835d0f243f99bc01d9f6320638ab74ad70ec990d1bc9ba8f7bc141c582a797f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hicolor-icon-theme-0.17-13.el9.noarch.rpm", + ], +) + +rpm( + name = "jbigkit-libs-0__2.1-23.el9.x86_64", + sha256 = "3731d07853beeeb76ef22e9a1f323802e74286b779a910af84d52b131f1662b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/jbigkit-libs-2.1-23.el9.x86_64.rpm", + ], +) + +rpm( + name = "langpacks-core-font-en-0__3.0-16.el9.x86_64", + sha256 = "95eb748d83b9373adb17813fc207aad5dd9ea1401d67ef970dd97c6d188c6844", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/langpacks-core-font-en-3.0-16.el9.noarch.rpm", + ], +) + +rpm( + name = "lcms2-0__2.12-3.el9.x86_64", + sha256 = "c60dfc4f79ab8b9f87ebc869e3db624c87438a2be9a925b16b44bfb855c4acac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/lcms2-2.12-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkio-0__1.5.0-1.el9.x86_64", + sha256 = "e87b93f549a0005c978eea5fea29931f1dcf77f96abccbb7ac3ca984e3eb45c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkio-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-0__1.7.0-11.el9.x86_64", + sha256 = "aae2ba2318b43f524d19abec471ca24961a6224f9400e0a8ab80707428766928", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-common-0__1.7.0-11.el9.x86_64", + sha256 = "1e8433f60ea9aa68029a98f121ccdca8a4b21faf263e552770167d5733eda5f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-common-1.7.0-11.el9.noarch.rpm", + ], +) + +rpm( + name = "libX11-devel-0__1.7.0-11.el9.x86_64", + sha256 = "87e790b99d5170c2c105b090dc601525a3b3125ff5fb59686ff633260a3f6ede", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-devel-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-xcb-0__1.7.0-11.el9.x86_64", + sha256 = "3d7effa1288251b34cef86e49ed56e023354e6bc7055d94e0ba71e12fa7b1774", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-xcb-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-0__1.0.9-8.el9.x86_64", + sha256 = "a0c14be959891eaff9097c1ec4d7c4b044301623d4080585cee72d740cd659ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-devel-0__1.0.9-8.el9.x86_64", + sha256 = "ff56ea9a25095b8345a90c7cf91ac72ce566573a396b935ae155bd28278b9e5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-devel-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-0__0.4.5-7.el9.x86_64", + sha256 = "fd7f5a54ff439c62583ca92b733995d1472cdf3bc3eeb5c4570bf78d7067307d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-devel-0__0.4.5-7.el9.x86_64", + sha256 = "6914a12df8fdd44f869d2a0a6ac4216e4b6a15cb56c87e7be2da0101e6def925", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-devel-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-0__1.2.0-7.el9.x86_64", + sha256 = "9c73249287c325db9721789a1468dc63c2c6910fadd6876d37b8132063d3fe98", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-devel-0__1.2.0-7.el9.x86_64", + sha256 = "dda8c70b042b12210b24fdd63719e31b0650870f6270ad8a860da2e3bbfb6846", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-devel-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-0__1.1.5-7.el9.x86_64", + sha256 = "46f527879c8821ac8353c0616a8f21d0d500584f316d19fbb2c555f52c96c6cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-devel-0__1.1.5-7.el9.x86_64", + sha256 = "e2bf2992316aeb77b25cffc63a3d73a972a2c548cad0f08e6d62fbd1d0fa68f9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-devel-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-0__1.3.4-8.el9.x86_64", + sha256 = "3714ed495275ffee5a8d374ae401cdef2c7bd30d2aebf90aecf4f1be8d6f896d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-devel-0__1.3.4-8.el9.x86_64", + sha256 = "a17c0bc8c1263ca9f42c713fa7da4e3786c0ab27379c0da5f3a726a09ff6ee22", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-devel-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-0__5.0.3-16.el9.x86_64", + sha256 = "309d12ca62069d02b6cf9d96d8d97de6b0267134ffd4b6952adc561269c8c9ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-devel-0__5.0.3-16.el9.x86_64", + sha256 = "3701f2806eaae708953e86dc5d7880809ad332234c8d7a079809f5fb3bd29a5a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-devel-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-0__2.3.3-8.el9.x86_64", + sha256 = "71c5ae479bb4a02a9c18901148a50cf07b192ef85dffa16e0187cf524364b466", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-devel-0__2.3.3-8.el9.x86_64", + sha256 = "d742f0ae22af703195d7dbf82424e0520675528421b50ffa3dee1d804f372e25", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-devel-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-0__1.7.10-8.el9.x86_64", + sha256 = "39b2cace8d69e83f56db672295e96641e39e83f4aed4b6c8e4c8fb20e6459a13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-devel-0__1.7.10-8.el9.x86_64", + sha256 = "4a8ee020699bd4bc84ef56edafc31a038663784d83c12be6e5b96ce16045e970", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-devel-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-0__1.1.4-10.el9.x86_64", + sha256 = "e53e69f3f5a5f13a899e804c428bd97239ffff5bec55bb0844346683b11b4f0f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-devel-0__1.1.4-10.el9.x86_64", + sha256 = "c53ed1fdeb74e2cc3459a0c56b93e52d1f82c1b812afab569bbfa094fce1ee77", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-devel-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-0__1.5.2-8.el9.x86_64", + sha256 = "fb0833176306c00bfb8a3f974ac807e8d702cd6ccdb7910ce9dff63f647e924c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-devel-0__1.5.2-8.el9.x86_64", + sha256 = "2e7e15e3f2ce8806baa30a3153f731ebe6729cb4149df26c123fe354db2b6685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-devel-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-0__0.9.10-16.el9.x86_64", + sha256 = "3e10d2880341fcb9dd697a6d1812981e67e976f571b23756c7d89d52c70f1142", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-devel-0__0.9.10-16.el9.x86_64", + sha256 = "fad7f6030e6d0f7daafb0d9e0ae0eb5b47a4d1014262ff818f66a3adb084868f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-devel-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-0__1.2.3-16.el9.x86_64", + sha256 = "a78023c45d39f3d608e217213ae6eca2032a99e9f6f98e34567a28a30229cca2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-devel-0__1.2.3-16.el9.x86_64", + sha256 = "e88f9e60ec9461492bc0e17c0b4dfd0ec8ddfabf6137df0f984594eb51655175", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-devel-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXxf86vm-0__1.1.4-18.el9.x86_64", + sha256 = "fe95e780bab5c4dda66acefaf35bdc6dddd483928cd2472cffa89a67ffc6b53b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXxf86vm-1.1.4-18.el9.x86_64.rpm", + ], +) + +rpm( + name = "libasyncns-0__0.8-22.el9.x86_64", + sha256 = "5214799bb68b6933ec92c4b183777565c1949757f545b6d84e13da189d91cb86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libasyncns-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "libatomic-0__11.5.0-7.el9.x86_64", + sha256 = "42d59da75f7e0ba9cf1ab079463b4efc5e131c4754ee9f6c40a9b2d09c233ecd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libatomic-11.5.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkid-devel-0__2.37.4-21.el9.x86_64", + sha256 = "37031505f779e5962c7a1c3ac07fdef8adcfb4b3de54d8153475a20384c40485", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkid-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libbpf-devel-2__1.5.0-1.el9.x86_64", + sha256 = "9f28bdb38de2425230f80a914594dbe4f0fc88c2a122aafcb5a77c1108c6a025", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libbpf-devel-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-0__0.2.13-4.el9.x86_64", + sha256 = "470b807fd8d03551f862cc629c4b5296b2ccc763d6109fd3294fb9f1898a75e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-devel-0__0.2.13-4.el9.x86_64", + sha256 = "267fcc6b5d45c72a08e566b5614bd97ec0fe3866bd4310e798748e510039c5e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-devel-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdrm-0__2.4.123-2.el9.x86_64", + sha256 = "67f930411a00d2c8e28d953b520ff41b5c0b29681192b4c1e290543161ae2cdb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdrm-2.4.123-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libedit-0__3.1-38.20210216cvs.el9.x86_64", + sha256 = "bfa91ff96f312b284a16a91b2eabcdae9e43c2f9b698fee6eec94040eaef8f7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libedit-3.1-38.20210216cvs.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-0__1.5.5-4.el9.x86_64", + sha256 = "7f282efb4675e8e2ffe4a8c75e737d2450c5273df60ebc311d388192d1353fbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-devel-0__1.5.5-4.el9.x86_64", + sha256 = "288d7c46784de0487f572dd0de0001a51b69af2c696ae4edd37da9adc6d62c39", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-devel-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libffi-devel-0__3.4.2-8.el9.x86_64", + sha256 = "39464cd83d7779bfbcadabe14a46bd8e8d90f7a73500e9d0481c8b1d9ce5dbdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libffi-devel-3.4.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libfontenc-0__1.1.3-17.el9.x86_64", + sha256 = "ebb70063dacc43d942d4c1947ae1bf3a95e8de22bc14549907404f085efc45e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfontenc-1.1.3-17.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-1__1.3.4-1.el9.x86_64", + sha256 = "129af138450cf5aba44d7a72bcccbf2c691dec72a29ac2bf769ae7dec2092ee3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-core-devel-1__1.3.4-1.el9.x86_64", + sha256 = "cc6852a620f5c4d12600d3cb6aeaab3320227478893f430cc9d29b99a7a2569d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-core-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-devel-1__1.3.4-1.el9.x86_64", + sha256 = "8f728a241c008a862c706e5627f293321171cb3bfb6a643fa0f4fda812403a21", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-egl-1__1.3.4-1.el9.x86_64", + sha256 = "6c815bac0524572490c81cfe5331b55fb3c87aef99ff96a5028210bc2397497b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-egl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-gles-1__1.3.4-1.el9.x86_64", + sha256 = "88b8f48433cb9009a53a5bad9c76f281c8d988edf6386f7a55fba58d0aa444bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-gles-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-glx-1__1.3.4-1.el9.x86_64", + sha256 = "9cf25dfa3a3fb57f2142f7941b7be1c020e214e01863ceb3901cfa2204b558e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-glx-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-opengl-1__1.3.4-1.el9.x86_64", + sha256 = "42af4046807453b3de347ec7c02092559eab57b81e1292e28b4bdd92875ed693", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-opengl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libgusb-0__0.3.8-2.el9.x86_64", + sha256 = "8b9da6b545db0e30875de3c198388c4194766ac5d94b3cda72afdedfd2ce9a67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgusb-0.3.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-0__67.1-9.el9.x86_64", + sha256 = "dbd4536fda7c8a691a14f3de0185dc404898cf0aa6a520ea4280ed018644f16f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libicu-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-devel-0__67.1-9.el9.x86_64", + sha256 = "f529fcd5f0f9882b393c1ba4ab38ae10b667a1bff9a36d18539bde5dda2b4ceb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libicu-devel-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libiscsi-0__1.19.0-5.el9.x86_64", + sha256 = "384e20a68a914538e6cdc1c5aac4115b50bf569bde044abb2db193af06f7f360", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libiscsi-1.19.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libjpeg-turbo-0__2.0.90-7.el9.x86_64", + sha256 = "c99423ff41a2df5fbf42c56201a8610791a9a60c3891a613f0d0be2dcb6f8d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libjpeg-turbo-2.0.90-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libldac-0__2.0.2.3-10.el9.x86_64", + sha256 = "186d3dccb1e840693e612c41db46cd2a3df39bd7d8c82883aed8e5bf4263ac6d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libldac-2.0.2.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libmount-devel-0__2.37.4-21.el9.x86_64", + sha256 = "7e42a62b1e844cbd2baf2f518edfcd7dfb2434df107787c0d2f657a04a3df366", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmount-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libogg-2__1.3.4-6.el9.x86_64", + sha256 = "ff8b1d6cf009aef8c8d1d5508c456479f62b7069e1d6a3f225b6233f645c82ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libogg-1.3.4-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpciaccess-0__0.16-7.el9.x86_64", + sha256 = "7f4f160406a6f66aee581582b0355afaafd5f769366c13c62888d21a3a3cb9db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpciaccess-0.16-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpng-devel-2__1.6.37-12.el9.x86_64", + sha256 = "2b40cfc1167db99a7703b2e17548b826b72808dff829ec93b57211660b33fb26", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpng-devel-1.6.37-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64", + sha256 = "360fba78adaa83fa504c9a65b30f13ed90c197b28a189bb371b8a1425ab31a0b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libproxy-webkitgtk4-0.4.15-35.el9.x86_64.rpm", + ], +) + +rpm( + name = "librados2-2__16.2.4-5.el9.x86_64", + sha256 = "6786852b684ea584343d560c7e0a7303790f1129d320b493df3c45a73850d073", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librados2-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "librbd1-2__16.2.4-5.el9.x86_64", + sha256 = "d4d1549eb600af4efc546630fc89170905e8b2c174d8528315d36451879eacc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librbd1-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsbc-0__1.4-9.el9.x86_64", + sha256 = "495ad3d92df325809734618b970a470cba020ded1fda8019ba17f835a7ff5db9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsbc-1.4-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-devel-0__3.6-3.el9.x86_64", + sha256 = "6a8f4b682da2bb46f64ae5332e8753fd189c43d8c1d942a78289c12fb0bee71c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libselinux-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsepol-devel-0__3.6-3.el9.x86_64", + sha256 = "f8f1f7a6c04b28c4ad596a486d34cc3f4675d00f05994b4cd6f27cffd2603d12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsepol-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsndfile-0__1.0.31-9.el9.x86_64", + sha256 = "5495f858a549940da30d5c8d807dbc3ef27ae3de9ffb93119c10614ea3df3b6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsndfile-1.0.31-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libstemmer-0__0-18.585svn.el9.x86_64", + sha256 = "4edc1f498e8602e77761a54f98138ef6831ff7d3d32f1725b87465511eeafdcd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libstemmer-0-18.585svn.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-0__0.1.28-8.el9.x86_64", + sha256 = "1f58c89d65f57dadd49a927c0005bfd4dad36f0b6060cd30d5fd6831ded957ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-devel-0__0.1.28-8.el9.x86_64", + sha256 = "f5a94d1f0b203ddadfacaf5f35669862658519807f1bebd8aba650271a83785a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-devel-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-0__4.4.0-13.el9.x86_64", + sha256 = "56c8fd8d0a498f4079cb5a9e43a1ef5dc2feecfc283d4c642b6fb087f20bd1c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-devel-0__4.4.0-13.el9.x86_64", + sha256 = "c85898a1d9d8ce308f1451b97ee99104d1deeaf2e84269facb9301714ecfa618", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-devel-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtracker-sparql-0__3.1.2-3.el9.x86_64", + sha256 = "f2206284f482dec85efc50f329ddd441eb6acb937d2ee6b5d8ba3311cd6ff1f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtracker-sparql-3.1.2-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libvorbis-1__1.3.7-5.el9.x86_64", + sha256 = "b6566ca8045af971aa48ca65327e183a7bc4f6ec59f36db2de26a6caa2f87074", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvorbis-1.3.7-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-client-0__1.21.0-1.el9.x86_64", + sha256 = "2b4a3e9acef0b0967f962e960f0c87f6f7cd51aa04262ab2ecf2ab58173d80c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-client-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-cursor-0__1.21.0-1.el9.x86_64", + sha256 = "583bf4b6238e38abcd08b4925dda13e371f5b4a68b5e860bf351fdeff4860493", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-cursor-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-egl-0__1.21.0-1.el9.x86_64", + sha256 = "cb8aaac077968b8d869e0f178274d3ee86b16bed9bcfaf73e3220c7254ce337a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-egl-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-server-0__1.21.0-1.el9.x86_64", + sha256 = "ebd8ae6e3ce81c785ab72d60b5317b8b376340a0bf5be460be3245368465d619", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-server-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwebp-0__1.2.0-8.el9.x86_64", + sha256 = "9010f71b826f720a8d16ac20e144187ffa47b163c64933e1c68cb4add2c7946d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwebp-1.2.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-0__1.13.1-9.el9.x86_64", + sha256 = "569018774aeb89760ade7d49c35bc1489ed0fdc3ddd6a2858f7a56811485c93f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-devel-0__1.13.1-9.el9.x86_64", + sha256 = "c40c68abf168ec900bdb1492fd444fe5442d41a74480e900ae9c66626b413cc1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-devel-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-0__1.5.3-1.el9.x86_64", + sha256 = "aec3b6a1459018ac7993f843b595b9b0548b4457ab5b87adea3b3c23e35462d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxdp-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-devel-0__1.5.3-1.el9.x86_64", + sha256 = "aed70eb627e572b4ef3648993b9c9d512d1915a98f793602a7ad1478fc6e599e", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxdp-devel-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-0__1.0.3-4.el9.x86_64", + sha256 = "240837601b4cb9260b28f66e39ad45c889e27902b4a80b36a25532c0a19ccf14", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-devel-0__1.0.3-4.el9.x86_64", + sha256 = "d27298c194096fc236ab2163bd971ba06484c3ead58d26cd8bde3eaa9db4b8f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-devel-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxshmfence-0__1.3-10.el9.x86_64", + sha256 = "a9681af3e5e80d7f099641ac7a37bdb36d929e897152a6490856f5461831cd5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxshmfence-1.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxml2-devel-0__2.9.13-9.el9.x86_64", + sha256 = "f98f3688a0303007bff3ec562df8b6b0d700549ca59ca91422ee152c222d461b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxml2-devel-2.9.13-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libzstd-devel-0__1.5.5-1.el9.x86_64", + sha256 = "7bb2aac4e8480aaa589626b202a098bc17bec3b5fbfc64c741f8d69e2b2b99bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libzstd-devel-1.5.5-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-filesystem-0__20.1.8-1.el9.x86_64", + sha256 = "b1882b91d71db936aa4fdd8a709cca21d3d14b6129912e1160834ec6c430e4d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-filesystem-20.1.8-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-libs-0__20.1.8-1.el9.x86_64", + sha256 = "30601498486e725eb19433bfdbb8b4effb8cceaf1c48e296f6d580551d3bf532", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-libs-20.1.8-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-dri-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "85a691ca4773d283c9c7929dd63eece1e430d4b14abf2b63b7793289c1da477f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-dri-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-filesystem-0__24.2.8-2.el9.x86_64", + sha256 = "915ec77d7cf42c403095bd006adb75968883e515654d7bbb0de3278e00cf2827", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-filesystem-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libEGL-0__24.2.8-2.el9.x86_64", + sha256 = "db5a7f9c9b5476ec5c173a30a9e042a076c74f4ba4143402ed6ee7e6dc18be62", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libEGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libGL-0__24.2.8-2.el9.x86_64", + sha256 = "eb9cf4f7b8f32033a42d657e4ca4c4b2cff18b610f52b0203909740a2900828a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-0__24.2.8-2.el9.x86_64", + sha256 = "7840459f296af4e98ecbc671d8fee083dd9708426dc06ccdfcde997091dde1a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-devel-0__24.2.8-2.el9.x86_64", + sha256 = "397a54364c6344b1dd7bfb26c326c54738e81fd3129d019df554acd9482a1fb9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-devel-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libglapi-0__24.2.8-2.el9.x86_64", + sha256 = "ef1ab98c5305f5d421db001828ab9c6d737314f0e8e740d29384f8b2884aa16e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libglapi-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "1af3ad02c088a0ed981298ac73609b6c2da5fea70782ec4c04de14acbc854127", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-vulkan-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mkfontscale-0__1.2.1-3.el9.x86_64", + sha256 = "a7f013da35ef80879e3f327ebf2fb31d8fd8f0811572693153d470842788068f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mkfontscale-1.2.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "openjpeg2-0__2.4.0-8.el9.x86_64", + sha256 = "ed25f681305664429a0202ce98305e42972d0096ba957358c94856b012bb4379", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/openjpeg2-2.4.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "opus-0__1.3.1-10.el9.x86_64", + sha256 = "d194718353f0874b9f85327821fc45adba85f646474b473d1b455b9075a77ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/opus-1.3.1-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-0__1.48.7-3.el9.x86_64", + sha256 = "d366f6b4ce6f1714ff880b0afa3ebcb004f245bf578937709db6417aa88f1fee", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-devel-0__1.48.7-3.el9.x86_64", + sha256 = "497fd93cea696fce84b38e69efa17df149cb3ba49268ec513aa2d49b3ab0fe86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-devel-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-cpp-0__8.44-4.el9.x86_64", + sha256 = "0e459d7742ef54bd7c4d9d4e75bee253a95370e074c221f402b05f14fe274459", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-cpp-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-devel-0__8.44-4.el9.x86_64", + sha256 = "87005c24261e0d6f9908180323135a13a8761b1ddd0303a3052aa1f4ab156d7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-devel-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf16-0__8.44-4.el9.x86_64", + sha256 = "9590a2fed0802ffa2c563742aaf20356547f3c96bc7c1ab1c257f6ca9abcba27", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf16-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf32-0__8.44-4.el9.x86_64", + sha256 = "5eda4debda2b7a87dcc6b1afa0577c1e77f162509a80438f403bebd871b50bed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf32-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-devel-0__10.40-6.el9.x86_64", + sha256 = "32bc7fa49398097a0b7ad6ab5281a718bc91558953636fd536b7bbef189defce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-devel-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf16-0__10.40-6.el9.x86_64", + sha256 = "d5e028330f87b51930ffc9d0dd5668673563d4282eeed3a082c546966249bf85", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf16-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf32-0__10.40-6.el9.x86_64", + sha256 = "55a6230c51157596d224737b43d07477c8537e88ae00c561123de317fcc8932a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf32-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-0__1.0.1-1.el9.x86_64", + sha256 = "0f3d1760c6bf71e2413c323eff5fdd2b68cedd71e106cba77c58a93aa04a76f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-alsa-0__1.0.1-1.el9.x86_64", + sha256 = "5be3439c7d5b108d1fcf0e7654f6639551b1686880bf083ff0b33c541a060164", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-alsa-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64", + sha256 = "5330d9280bbc7b7a9ce4f78ad5ae7997281d75a805c93e28cfc6c4d785cd8e61", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64", + sha256 = "6e2a74bbc6eff6421e3bd078f7b253fac88069e7938b06816fd1565cdf053ba3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-libs-0__1.0.1-1.el9.x86_64", + sha256 = "5e510c378847a946683c9eacc2bd9c7fd27e6b1118a5456673da9dbadb609716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-media-session-0__0.3.32-3.el9.x86_64", + sha256 = "10a532cff1ff9502933cb69d3ec7b887da1986321c59bb45dbcf2553b5ce7cd9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-media-session-0.3.32-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-pulseaudio-0__1.0.1-1.el9.x86_64", + sha256 = "e4a705cc9513a7fbd0e442b937f2217708b563df37a26ae4743c4e84a81af410", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-pulseaudio-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pixman-devel-0__0.40.0-6.el9.x86_64", + sha256 = "b0bd4db0173d65f476dec24cfd5ce7bc196fc88713ee2e5acf5d1b3542c483d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-devel-0.40.0-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-0__15.0-3.el9.x86_64", + sha256 = "8d2b4de1bbd733e1c85ed0152fc8439b640f09ac3a5d6792092549bfbe42e7d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-glib2-0__15.0-3.el9.x86_64", + sha256 = "bef7faba9d974349bc52cf5f1499bdd7b986fc1ea4ddfdf6e74d9c54ea5b569f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-glib2-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "rtkit-0__0.11-29.el9.x86_64", + sha256 = "e4e19d6b97ab3bbef93fa7d24949e2888f2dbaaf053529e12da1a372db7e8084", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/rtkit-0.11-29.el9.x86_64.rpm", + ], +) + +rpm( + name = "shared-mime-info-0__2.1-5.el9.x86_64", + sha256 = "3c04e67223e1c61dfd06c378d49663c4289d974099b21a472631d94644fec0ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shared-mime-info-2.1-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "sound-theme-freedesktop-0__0.8-17.el9.x86_64", + sha256 = "e7b65924babd215e23e214bcc77f6b2d78764415d31d138db9c2bd23b3a71e24", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sound-theme-freedesktop-0.8-17.el9.noarch.rpm", + ], +) + +rpm( + name = "sysprof-capture-devel-0__3.40.1-3.el9.x86_64", + sha256 = "57ef7ebd2b77a0671a90b6f728e6ba9e72a0c12ac7262b7127f0d13a35eec1ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sysprof-capture-devel-3.40.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "usbutils-0__017-1.el9.x86_64", + sha256 = "723291f990fd4c93233e4f4d52995ecb57a7e976074384ec2da3b64c6060bb58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/usbutils-017-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte-profile-0__0.64.2-2.el9.x86_64", + sha256 = "20c7cc4d012677a19ef11a5bf7c89d13bd0462b63a4e570a151384c0d4850f7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte-profile-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte291-0__0.64.2-2.el9.x86_64", + sha256 = "fc5b398115d0988599e9959c5e58ad372961691d67e13e1bea43354dc7f31ae4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte291-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-loader-0__1.4.304.0-1.el9.x86_64", + sha256 = "284a3909148079a2e75a892aafc16dfee651ecdf02e1eb26f2fbd8009569bd2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-loader-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-tools-0__1.4.304.0-1.el9.x86_64", + sha256 = "84871be0f7707cb101fd494b69312279c68ce20643dbe2512bebc7ab80687443", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-tools-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "wayland-devel-0__1.21.0-1.el9.x86_64", + sha256 = "c19da9a5052bdd8895f058d20e2a900c2c8029491cae4302bca1901743fda93d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/wayland-devel-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64", + sha256 = "7e2f0ac1bbc9b58b34cdda0caa169a39a304c43a4345823356c3c973f2b65e50", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webkit2gtk3-jsc-2.48.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webrtc-audio-processing-0__0.3.1-8.el9.x86_64", + sha256 = "94819790916299e9326bce0b471f1c317c9574cf67d090700ba6df7bf3206c76", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webrtc-audio-processing-0.3.1-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "xdg-dbus-proxy-0__0.1.3-1.el9.x86_64", + sha256 = "b960d89bf0aacd8b9d5595bcf55433c819881374f7b43771dbc45887fcb7e5d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xdg-dbus-proxy-0.1.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "xkeyboard-config-0__2.33-2.el9.x86_64", + sha256 = "ca47ef1bfc9cf8b0996ffad8c423270e84f87fb2a32386b03edadc5d38a2fdf5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xkeyboard-config-2.33-2.el9.noarch.rpm", + ], +) + +rpm( + name = "xml-common-0__0.6.3-58.el9.x86_64", + sha256 = "f5d8c3fe25e7e46e39bac4a03b1b6c7b9601e6df62af59e4edf34548406d4f95", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xml-common-0.6.3-58.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64", + sha256 = "3a9c430034883be724a7d9d7492594d3637d34d410170d47300d32a2edf630c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-fonts-ISO8859-1-100dpi-7.5-33.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-proto-devel-0__2024.1-1.el9.x86_64", + sha256 = "8a41299cd4bbc6e4671aa4e4069cef8888689351062101de9966981bcc766900", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-proto-devel-2024.1-1.el9.noarch.rpm", + ], +) + +rpm( + name = "xz-devel-0__5.2.5-8.el9.x86_64", + sha256 = "b04077515f5bea9a46adaf85a5217cec0f7eaa2a1286c5147310aedfc57bf94f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xz-devel-5.2.5-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "zlib-devel-0__1.2.11-41.el9.x86_64", + sha256 = "f41f5fc4a53f5b84e06b815dd3402847eb0415bf74bfb77ce490d9920fab91b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/zlib-devel-1.2.11-41.el9.x86_64.rpm", + ], +) +# EDV dependency - END diff --git a/kubevirt-patch/v1.5.0/cmd-virtlauncher-BUILD.bazel b/kubevirt-patch/v1.5.0/cmd-virtlauncher-BUILD.bazel new file mode 100644 index 0000000..7e86c7a --- /dev/null +++ b/kubevirt-patch/v1.5.0/cmd-virtlauncher-BUILD.bazel @@ -0,0 +1,230 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") +load("@bazeldnf//:deps.bzl", "xattrs") + +go_library( + name = "go_default_library", + srcs = ["virt-launcher.go"], + importpath = "kubevirt.io/kubevirt/cmd/virt-launcher", + visibility = ["//visibility:private"], + deps = [ + "//pkg/apimachinery/wait:go_default_library", + "//pkg/cloud-init:go_default_library", + "//pkg/config:go_default_library", + "//pkg/container-disk:go_default_library", + "//pkg/downwardmetrics:go_default_library", + "//pkg/ephemeral-disk:go_default_library", + "//pkg/hooks:go_default_library", + "//pkg/hotplug-disk:go_default_library", + "//pkg/ignition:go_default_library", + "//pkg/util:go_default_library", + "//pkg/virt-handler/cmd-client:go_default_library", + "//pkg/virt-launcher:go_default_library", + "//pkg/virt-launcher/metadata:go_default_library", + "//pkg/virt-launcher/notify-client:go_default_library", + "//pkg/virt-launcher/virtwrap:go_default_library", + "//pkg/virt-launcher/virtwrap/agent-poller:go_default_library", + "//pkg/virt-launcher/virtwrap/api:go_default_library", + "//pkg/virt-launcher/virtwrap/cli:go_default_library", + "//pkg/virt-launcher/virtwrap/cmd-server:go_default_library", + "//pkg/virt-launcher/virtwrap/util:go_default_library", + "//staging/src/kubevirt.io/api/core/v1:go_default_library", + "//staging/src/kubevirt.io/client-go/log:go_default_library", + "//vendor/github.com/spf13/pflag:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", + "//vendor/libvirt.org/go/libvirt:go_default_library", + ], +) + +load("//vendor/kubevirt.io/client-go/version:def.bzl", "version_x_defs") + +go_binary( + name = "virt-launcher", + embed = [":go_default_library"], + visibility = ["//visibility:public"], + x_defs = version_x_defs(), +) + +load( + "@io_bazel_rules_docker//container:container.bzl", + "container_image", +) +load("@io_bazel_rules_docker//contrib:group.bzl", "group_entry", "group_file") +load("@io_bazel_rules_docker//contrib:passwd.bzl", "passwd_entry", "passwd_file") +load("@rules_pkg//:pkg.bzl", "pkg_tar") + +pkg_tar( + name = "virt-launcher-tar", + srcs = [ + "node-labeller/node-labeller.sh", + ":virt-launcher", + "//cmd/container-disk-v2alpha:container-disk", + "//cmd/virt-freezer", + "//cmd/virt-launcher-monitor", + "//cmd/virt-probe", + "//cmd/virt-tail", + ], + package_dir = "/usr/bin", +) + +xattrs( + name = "setcaps", + capabilities = { + "/usr/bin/virt-launcher-monitor": [ + "cap_net_bind_service", + ], + }, + tar = ":virt-launcher-tar", +) + +passwd_entry( + name = "root-user", + gid = 0, + home = "/root", + info = "root", + shell = "/bin/bash", + uid = 0, + username = "root", +) + +group_entry( + name = "qemu-group", + gid = 107, + groupname = "qemu", +) + +group_entry( + name = "root-group", + gid = 0, + groupname = "root", +) + +group_file( + name = "group", + entries = [ + ":qemu-group", + ":root-group", + ], +) + +passwd_entry( + name = "qemu-user", + gid = 107, + home = "/home/qemu", + shell = "/bin/bash", + uid = 107, + username = "qemu", +) + +passwd_file( + name = "passwd", + entries = [ + ":qemu-user", + ":root-user", + ], +) + +pkg_tar( + name = "libvirt-config", + srcs = [ + ":qemu.conf", + ":virtqemud.conf", + ], + package_dir = "/etc/libvirt", +) + +pkg_tar( + name = "passwd-tar", + srcs = [ + ":group", + ":passwd", + ], + mode = "0644", + package_dir = "etc", + visibility = ["//visibility:public"], +) + +pkg_tar( + name = "nsswitch-tar", + srcs = [ + ":nsswitch.conf", + ], + mode = "0644", + package_dir = "/etc", +) + +pkg_tar( + name = "qemu-hook-tar", + srcs = [ + ":qemu", + ], + mode = "0755", + package_dir = "/etc/libvirt/hooks", +) + +# Workaround for https://github.com/moby/moby/issues/44106 +# Need to create the directory upfront, otherwise it gets assigned wrong +# permissions when unpacked. +pkg_tar( + name = "qemu-kvm-modules-dir-tar", + empty_dirs = [ + "usr/lib64/qemu-kvm", + ], + mode = "0755", + owner = "0.0", +) + +# EDV dependency - START +pkg_tar( + name = "custom-qemu-build", + srcs = ["@custom-qemu//file"], + mode = "0755", + owner = "0.0", + package_dir = "/usr/libexec", + visibility = ["//visibility:public"], +) +# EDV dependency - END + +container_image( + name = "version-container", + directory = "/", + files = ["//:get-version"], + tars = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": [ + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-kvm-modules-dir-tar", + "//rpm:launcherbase_aarch64", + ], + "@io_bazel_rules_go//go/platform:linux_s390x": [ + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-kvm-modules-dir-tar", + "//rpm:launcherbase_s390x", + ], + "//conditions:default": [ + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":qemu-kvm-modules-dir-tar", + ":custom-qemu-build", # EDV dependency + "//rpm:launcherbase_x86_64", + ], + }), +) + +container_image( + name = "virt-launcher-image", + architecture = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": "arm64", + "@io_bazel_rules_go//go/platform:linux_s390x": "s390x", + "//conditions:default": "amd64", + }), + base = ":version-container", + entrypoint = ["/usr/bin/virt-launcher"], + tars = [":setcaps"], + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/kubevirt-patch/v1.5.0/rpm-BUILD.bazel b/kubevirt-patch/v1.5.0/rpm-BUILD.bazel new file mode 100644 index 0000000..cde92fd --- /dev/null +++ b/kubevirt-patch/v1.5.0/rpm-BUILD.bazel @@ -0,0 +1,3466 @@ +load("@bazeldnf//:deps.bzl", "rpm", "rpmtree", "tar2files") +load("@bazeldnf//:def.bzl", "bazeldnf") + +bazeldnf( + name = "sandbox_x86_64", + command = "sandbox", + tar = ":sandboxroot_x86_64", +) + +bazeldnf( + name = "sandbox_aarch64", + command = "sandbox", + tar = ":sandboxroot_aarch64", +) + +bazeldnf( + name = "sandbox_s390x", + command = "sandbox", + tar = ":sandboxroot_s390x", +) + +bazeldnf( + name = "ldd_x86_64", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_x86_64", + rulename = "libvirt-libs_x86_64", +) + +bazeldnf( + name = "ldd_aarch64", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_aarch64", + rulename = "libvirt-libs_aarch64", +) + +bazeldnf( + name = "ldd_s390x", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_s390x", + rulename = "libvirt-libs_s390x", +) + +rpmtree( + name = "exportserverbase_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@elfutils-libelf-0__0.192-5.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-4.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.11.0-1.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-20.el9.aarch64//rpm", + "@libbpf-2__1.4.0-1.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libdb-0__5.3.28-55.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-20.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-20.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-4.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-20.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-6.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@nettle-0__3.9.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-3.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-1.el9.aarch64//rpm", + "@openssl-1__3.2.2-6.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-23.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-2.1.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__9.1.0-12.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-36.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.51-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-12.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.aarch64//rpm", + "@systemd-libs-0__252-51.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@util-linux-0__2.37.4-20.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-20.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@audit-libs-0__3.1.5-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.192-5.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-4.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.11.0-1.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-20.el9.s390x//rpm", + "@libbpf-2__1.4.0-1.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libdb-0__5.3.28-55.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libfdisk-0__2.37.4-20.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-20.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-4.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-20.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-20.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-6.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@nettle-0__3.9.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-3.el9.s390x//rpm", + "@openssl-1__3.2.2-6.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-23.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-2.1.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__9.1.0-12.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-36.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.51-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-12.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-7.el9.s390x//rpm", + "@systemd-libs-0__252-51.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-20.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-20.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-4.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.11.0-1.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-20.el9.x86_64//rpm", + "@libbpf-2__1.4.0-1.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-20.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-20.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-4.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-20.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-6.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@nettle-0__3.9.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-3.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-2.1.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-12.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-36.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.51-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-20.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-20.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_aarch64", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-0__1.0.8-10.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@capstone-0__4.0.2-10.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@dmidecode-1__3.6-1.el9.aarch64//rpm", + "@edk2-aarch64-0__20241117-2.el9.aarch64//rpm", + "@elfutils-libelf-0__0.192-5.el9.aarch64//rpm", + "@ethtool-2__6.11-1.el9.aarch64//rpm", + "@expat-0__2.5.0-4.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@gettext-0__0.21-8.el9.aarch64//rpm", + "@gettext-libs-0__0.21-8.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-4.el9.aarch64//rpm", + "@gnutls-dane-0__3.8.3-4.el9.aarch64//rpm", + "@gnutls-utils-0__3.8.3-4.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.11.0-1.el9.aarch64//rpm", + "@iproute-tc-0__6.11.0-1.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@json-glib-0__1.6.6-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-10.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-20.el9.aarch64//rpm", + "@libbpf-2__1.4.0-1.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libdb-0__5.3.28-55.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libevent-0__2.1.12-8.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-20.el9.aarch64//rpm", + "@libfdt-0__1.6.0-7.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgomp-0__11.5.0-4.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__54.0-1.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-20.el9.aarch64//rpm", + "@libnbd-0__1.20.3-1.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpng-2__1.6.37-12.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@librdmacm-0__54.0-1.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-4.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libslirp-0__4.4.0-8.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-20.el9.aarch64//rpm", + "@libssh-0__0.10.4-13.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-13.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libtpms-0__0.9.1-4.20211126git1ff6fe1f43.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libusbx-0__1.0.26-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-client-0__10.10.0-4.el9.aarch64//rpm", + "@libvirt-daemon-common-0__10.10.0-4.el9.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-4.el9.aarch64//rpm", + "@libvirt-daemon-log-0__10.10.0-4.el9.aarch64//rpm", + "@libvirt-libs-0__10.10.0-4.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-6.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@lzo-0__2.10-7.el9.aarch64//rpm", + "@lzop-0__1.04-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@nettle-0__3.9.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-3.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-3.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-1.el9.aarch64//rpm", + "@numad-0__0.5-37.20150602git.el9.aarch64//rpm", + "@openssl-1__3.2.2-6.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-23.el9.aarch64//rpm", + "@passt-0__0__caret__20250121.g4f2c8e7-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pixman-0__0.40.0-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-2.1.el9.aarch64//rpm", + "@polkit-0__0.117-13.el9.aarch64//rpm", + "@polkit-libs-0__0.117-13.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@protobuf-c-0__1.3.3-13.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__9.1.0-12.el9.aarch64//rpm", + "@qemu-kvm-common-17__9.1.0-12.el9.aarch64//rpm", + "@qemu-kvm-core-17__9.1.0-12.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__9.1.0-12.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-12.el9.aarch64//rpm", + "@qemu-kvm-device-usb-host-17__9.1.0-12.el9.aarch64//rpm", + "@qemu-kvm-device-usb-redirect-17__9.1.0-12.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-36.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.51-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-12.el9.aarch64//rpm", + "@snappy-0__1.1.8-8.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.aarch64//rpm", + "@swtpm-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.aarch64//rpm", + "@systemd-0__252-51.el9.aarch64//rpm", + "@systemd-container-0__252-51.el9.aarch64//rpm", + "@systemd-libs-0__252-51.el9.aarch64//rpm", + "@systemd-pam-0__252-51.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-51.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@unbound-libs-0__1.16.2-8.el9.aarch64//rpm", + "@usbredir-0__0.13.0-2.el9.aarch64//rpm", + "@util-linux-0__2.37.4-20.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-20.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@virtiofsd-0__1.13.0-1.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-0__5.2.5-8.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + "@zstd-0__1.5.5-1.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_s390x", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@audit-libs-0__3.1.5-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-10.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.192-5.el9.s390x//rpm", + "@ethtool-2__6.11-1.el9.s390x//rpm", + "@expat-0__2.5.0-4.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-4.el9.s390x//rpm", + "@gnutls-dane-0__3.8.3-4.el9.s390x//rpm", + "@gnutls-utils-0__3.8.3-4.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.11.0-1.el9.s390x//rpm", + "@iproute-tc-0__6.11.0-1.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-10.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-4.el9.s390x//rpm", + "@libatomic-0__11.5.0-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-20.el9.s390x//rpm", + "@libbpf-2__1.4.0-1.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libdb-0__5.3.28-55.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-20.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-4.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__54.0-1.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-20.el9.s390x//rpm", + "@libnbd-0__1.20.3-1.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpng-2__1.6.37-12.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-4.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-20.el9.s390x//rpm", + "@libssh-0__0.10.4-13.el9.s390x//rpm", + "@libssh-config-0__0.10.4-13.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtpms-0__0.9.1-4.20211126git1ff6fe1f43.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-20.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-client-0__10.10.0-4.el9.s390x//rpm", + "@libvirt-daemon-common-0__10.10.0-4.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-4.el9.s390x//rpm", + "@libvirt-daemon-log-0__10.10.0-4.el9.s390x//rpm", + "@libvirt-libs-0__10.10.0-4.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-6.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@nettle-0__3.9.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-3.el9.s390x//rpm", + "@nmap-ncat-3__7.92-3.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-1.el9.s390x//rpm", + "@openssl-1__3.2.2-6.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-23.el9.s390x//rpm", + "@passt-0__0__caret__20250121.g4f2c8e7-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-2.1.el9.s390x//rpm", + "@polkit-0__0.117-13.el9.s390x//rpm", + "@polkit-libs-0__0.117-13.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@protobuf-c-0__1.3.3-13.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__9.1.0-12.el9.s390x//rpm", + "@qemu-kvm-common-17__9.1.0-12.el9.s390x//rpm", + "@qemu-kvm-core-17__9.1.0-12.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__9.1.0-12.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-ccw-17__9.1.0-12.el9.s390x//rpm", + "@qemu-kvm-device-usb-host-17__9.1.0-12.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-36.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.51-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-12.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-7.el9.s390x//rpm", + "@swtpm-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-libs-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-tools-0__0.8.0-2.el9.s390x//rpm", + "@systemd-0__252-51.el9.s390x//rpm", + "@systemd-container-0__252-51.el9.s390x//rpm", + "@systemd-libs-0__252-51.el9.s390x//rpm", + "@systemd-pam-0__252-51.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-51.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@unbound-libs-0__1.16.2-8.el9.s390x//rpm", + "@util-linux-0__2.37.4-20.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-20.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@virtiofsd-0__1.13.0-1.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_x86_64", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-2.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@ethtool-2__6.11-1.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-4.el9.x86_64//rpm", + "@gnutls-dane-0__3.8.3-4.el9.x86_64//rpm", + "@gnutls-utils-0__3.8.3-4.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.11.0-1.el9.x86_64//rpm", + "@iproute-tc-0__6.11.0-1.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-20.el9.x86_64//rpm", + "@libbpf-2__1.4.0-1.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-20.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-4.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__54.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-20.el9.x86_64//rpm", + "@libnbd-0__1.20.3-1.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__54.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-4.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-20.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtpms-0__0.9.1-4.20211126git1ff6fe1f43.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-client-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-4.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-6.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.9.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-3.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-3.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@passt-0__0__caret__20250121.g4f2c8e7-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-2.1.el9.x86_64//rpm", + "@polkit-0__0.117-13.el9.x86_64//rpm", + "@polkit-libs-0__0.117-13.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@protobuf-c-0__1.3.3-13.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-device-usb-host-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-device-usb-redirect-17__9.1.0-12.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-36.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.51-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@swtpm-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-container-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@unbound-libs-0__1.16.2-8.el9.x86_64//rpm", + "@usbredir-0__0.13.0-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-20.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-20.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@virtiofsd-0__1.13.0-1.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + + # EDV dependency - START + "@SDL2-0__2.26.0-1.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@adwaita-cursor-theme-0__40.1.1-3.el9.x86_64//rpm", + "@adwaita-icon-theme-0__40.1.1-3.el9.x86_64//rpm", + "@alsa-lib-0__1.2.13-2.el9.x86_64//rpm", + "@at-spi2-atk-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-atk-devel-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-core-0__2.40.3-1.el9.x86_64//rpm", + "@at-spi2-core-devel-0__2.40.3-1.el9.x86_64//rpm", + "@atk-0__2.36.0-5.el9.x86_64//rpm", + "@atk-devel-0__2.36.0-5.el9.x86_64//rpm", + "@avahi-libs-0__0.8-22.el9.x86_64//rpm", + "@bluez-libs-0__5.72-4.el9.x86_64//rpm", + "@boost-iostreams-0__1.75.0-11.el9.x86_64//rpm", + "@boost-system-0__1.75.0-11.el9.x86_64//rpm", + "@boost-thread-0__1.75.0-11.el9.x86_64//rpm", + "@brlapi-0__0.8.2-4.el9.x86_64//rpm", + "@brotli-0__1.0.9-7.el9.x86_64//rpm", + "@brotli-devel-0__1.0.9-7.el9.x86_64//rpm", + "@bzip2-devel-0__1.0.8-10.el9.x86_64//rpm", + "@cairo-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cmake-filesystem-0__3.26.5-2.el9.x86_64//rpm", + "@colord-libs-0__1.4.5-4.el9.x86_64//rpm", + "@cryptsetup-libs-0__2.7.2-4.el9.x86_64//rpm", + "@cups-libs-1__2.3.3op2-33.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-5.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.x86_64//rpm", + "@dbus-devel-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@dejavu-sans-fonts-0__2.37-18.el9.x86_64//rpm", + "@elfutils-libelf-devel-0__0.193-1.el9.x86_64//rpm", + "@fdk-aac-free-0__2.0.0-8.el9.x86_64//rpm", + "@flac-libs-0__1.3.3-12.el9.x86_64//rpm", + "@fontconfig-0__2.14.0-2.el9.x86_64//rpm", + "@fontconfig-devel-0__2.14.0-2.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@freetype-0__2.10.4-11.el9.x86_64//rpm", + "@freetype-devel-0__2.10.4-11.el9.x86_64//rpm", + "@fribidi-0__1.0.10-6.el9.2.x86_64//rpm", + "@fribidi-devel-0__1.0.10-6.el9.2.x86_64//rpm", + "@fuse3-libs-0__3.10.2-9.el9.x86_64//rpm", + "@gdk-pixbuf2-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-devel-0__2.68.4-16.el9.x86_64//rpm", + "@graphite2-0__1.3.14-9.el9.x86_64//rpm", + "@graphite2-devel-0__1.3.14-9.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@gsm-0__1.0.19-6.el9.x86_64//rpm", + "@gtk-update-icon-cache-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-devel-0__3.24.31-5.el9.x86_64//rpm", + "@harfbuzz-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-devel-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-icu-0__2.7.4-10.el9.x86_64//rpm", + "@hicolor-icon-theme-0__0.17-13.el9.x86_64//rpm", + "@hwdata-0__0.348-9.16.el9.x86_64//rpm", + "@jbigkit-libs-0__2.1-23.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-559.el9.x86_64//rpm", + "@langpacks-core-font-en-0__3.0-16.el9.x86_64//rpm", + "@lcms2-0__2.12-3.el9.x86_64//rpm", + "@libX11-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-common-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-devel-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-xcb-0__1.7.0-11.el9.x86_64//rpm", + "@libXau-0__1.0.9-8.el9.x86_64//rpm", + "@libXau-devel-0__1.0.9-8.el9.x86_64//rpm", + "@libXcomposite-0__0.4.5-7.el9.x86_64//rpm", + "@libXcomposite-devel-0__0.4.5-7.el9.x86_64//rpm", + "@libXcursor-0__1.2.0-7.el9.x86_64//rpm", + "@libXcursor-devel-0__1.2.0-7.el9.x86_64//rpm", + "@libXdamage-0__1.1.5-7.el9.x86_64//rpm", + "@libXdamage-devel-0__1.1.5-7.el9.x86_64//rpm", + "@libXext-0__1.3.4-8.el9.x86_64//rpm", + "@libXext-devel-0__1.3.4-8.el9.x86_64//rpm", + "@libXfixes-0__5.0.3-16.el9.x86_64//rpm", + "@libXfixes-devel-0__5.0.3-16.el9.x86_64//rpm", + "@libXft-0__2.3.3-8.el9.x86_64//rpm", + "@libXft-devel-0__2.3.3-8.el9.x86_64//rpm", + "@libXi-0__1.7.10-8.el9.x86_64//rpm", + "@libXi-devel-0__1.7.10-8.el9.x86_64//rpm", + "@libXinerama-0__1.1.4-10.el9.x86_64//rpm", + "@libXinerama-devel-0__1.1.4-10.el9.x86_64//rpm", + "@libXrandr-0__1.5.2-8.el9.x86_64//rpm", + "@libXrandr-devel-0__1.5.2-8.el9.x86_64//rpm", + "@libXrender-0__0.9.10-16.el9.x86_64//rpm", + "@libXrender-devel-0__0.9.10-16.el9.x86_64//rpm", + "@libXtst-0__1.2.3-16.el9.x86_64//rpm", + "@libXtst-devel-0__1.2.3-16.el9.x86_64//rpm", + "@libXxf86vm-0__1.1.4-18.el9.x86_64//rpm", + "@libasyncns-0__0.8-22.el9.x86_64//rpm", + "@libatomic-0__11.5.0-7.el9.x86_64//rpm", + "@libblkid-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libblkio-0__1.5.0-1.el9.x86_64//rpm", + "@libbpf-devel-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libdatrie-0__0.2.13-4.el9.x86_64//rpm", + "@libdatrie-devel-0__0.2.13-4.el9.x86_64//rpm", + "@libdrm-0__2.4.123-2.el9.x86_64//rpm", + "@libedit-0__3.1-38.20210216cvs.el9.x86_64//rpm", + "@libepoxy-0__1.5.5-4.el9.x86_64//rpm", + "@libepoxy-devel-0__1.5.5-4.el9.x86_64//rpm", + "@libffi-devel-0__3.4.2-8.el9.x86_64//rpm", + "@libfontenc-0__1.1.3-17.el9.x86_64//rpm", + "@libglvnd-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-core-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-egl-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-gles-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-glx-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-opengl-1__1.3.4-1.el9.x86_64//rpm", + "@libgusb-0__0.3.8-2.el9.x86_64//rpm", + "@libicu-0__67.1-9.el9.x86_64//rpm", + "@libicu-devel-0__67.1-9.el9.x86_64//rpm", + "@libiscsi-0__1.19.0-5.el9.x86_64//rpm", + "@libjpeg-turbo-0__2.0.90-7.el9.x86_64//rpm", + "@libldac-0__2.0.2.3-10.el9.x86_64//rpm", + "@libmount-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libogg-2__1.3.4-6.el9.x86_64//rpm", + "@libpciaccess-0__0.16-7.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpng-devel-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@librados2-2__16.2.4-5.el9.x86_64//rpm", + "@librbd1-2__16.2.4-5.el9.x86_64//rpm", + "@libsbc-0__1.4-9.el9.x86_64//rpm", + "@libselinux-devel-0__3.6-3.el9.x86_64//rpm", + "@libsepol-devel-0__3.6-3.el9.x86_64//rpm", + "@libsndfile-0__1.0.31-9.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libstemmer-0__0-18.585svn.el9.x86_64//rpm", + "@libthai-0__0.1.28-8.el9.x86_64//rpm", + "@libthai-devel-0__0.1.28-8.el9.x86_64//rpm", + "@libtiff-0__4.4.0-13.el9.x86_64//rpm", + "@libtiff-devel-0__4.4.0-13.el9.x86_64//rpm", + "@libtracker-sparql-0__3.1.2-3.el9.x86_64//rpm", + "@libvorbis-1__1.3.7-5.el9.x86_64//rpm", + "@libwayland-client-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-cursor-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-egl-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-server-0__1.21.0-1.el9.x86_64//rpm", + "@libwebp-0__1.2.0-8.el9.x86_64//rpm", + "@libxcb-0__1.13.1-9.el9.x86_64//rpm", + "@libxcb-devel-0__1.13.1-9.el9.x86_64//rpm", + "@libxdp-0__1.5.3-1.el9.x86_64//rpm", + "@libxdp-devel-0__1.5.3-1.el9.x86_64//rpm", + "@libxkbcommon-0__1.0.3-4.el9.x86_64//rpm", + "@libxkbcommon-devel-0__1.0.3-4.el9.x86_64//rpm", + "@libxml2-devel-0__2.9.13-9.el9.x86_64//rpm", + "@libxshmfence-0__1.3-10.el9.x86_64//rpm", + "@libzstd-devel-0__1.5.5-1.el9.x86_64//rpm", + "@llvm-filesystem-0__20.1.8-1.el9.x86_64//rpm", + "@llvm-libs-0__20.1.8-1.el9.x86_64//rpm", + "@mesa-dri-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-filesystem-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libEGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-devel-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libglapi-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mkfontscale-0__1.2.1-3.el9.x86_64//rpm", + "@openjpeg2-0__2.4.0-8.el9.x86_64//rpm", + "@opus-0__1.3.1-10.el9.x86_64//rpm", + "@pango-0__1.48.7-3.el9.x86_64//rpm", + "@pango-devel-0__1.48.7-3.el9.x86_64//rpm", + "@pcre-cpp-0__8.44-4.el9.x86_64//rpm", + "@pcre-devel-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf16-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf32-0__8.44-4.el9.x86_64//rpm", + "@pcre2-devel-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf16-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf32-0__10.40-6.el9.x86_64//rpm", + "@pipewire-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-alsa-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-media-session-0__0.3.32-3.el9.x86_64//rpm", + "@pipewire-pulseaudio-0__1.0.1-1.el9.x86_64//rpm", + "@pixman-devel-0__0.40.0-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@pulseaudio-libs-0__15.0-3.el9.x86_64//rpm", + "@pulseaudio-libs-glib2-0__15.0-3.el9.x86_64//rpm", + "@rtkit-0__0.11-29.el9.x86_64//rpm", + "@shared-mime-info-0__2.1-5.el9.x86_64//rpm", + "@sound-theme-freedesktop-0__0.8-17.el9.x86_64//rpm", + "@sysprof-capture-devel-0__3.40.1-3.el9.x86_64//rpm", + "@usbutils-0__017-1.el9.x86_64//rpm", + "@vte-profile-0__0.64.2-2.el9.x86_64//rpm", + "@vte291-0__0.64.2-2.el9.x86_64//rpm", + "@vulkan-loader-0__1.4.304.0-1.el9.x86_64//rpm", + "@vulkan-tools-0__1.4.304.0-1.el9.x86_64//rpm", + "@wayland-devel-0__1.21.0-1.el9.x86_64//rpm", + "@webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64//rpm", + "@webrtc-audio-processing-0__0.3.1-8.el9.x86_64//rpm", + "@xdg-dbus-proxy-0__0.1.3-1.el9.x86_64//rpm", + "@xkeyboard-config-0__2.33-2.el9.x86_64//rpm", + "@xml-common-0__0.6.3-58.el9.x86_64//rpm", + "@xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64//rpm", + "@xorg-x11-proto-devel-0__2024.1-1.el9.x86_64//rpm", + "@xz-devel-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-devel-0__1.2.11-41.el9.x86_64//rpm", + # EDV dependency - END + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + # Create a symlink to OVMF binary with SEV support (edk2 rpm does not do that for unknown reason) + "/usr/share/OVMF/OVMF_CODE.cc.fd": "../edk2/ovmf/OVMF_CODE.cc.fd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-5.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-2.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-4.el9.x86_64//rpm", + "@gnutls-0__3.8.3-4.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-2.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.16.el9.x86_64//rpm", + "@iproute-0__6.11.0-1.el9.x86_64//rpm", + "@iproute-tc-0__6.11.0-1.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@less-0__590-5.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-4.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-20.el9.x86_64//rpm", + "@libbpf-2__1.4.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-20.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-4.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-3.el9.x86_64//rpm", + "@libibverbs-0__54.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-20.el9.x86_64//rpm", + "@libnbd-0__1.20.3-1.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__54.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-4.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-20.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-4.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-6.el9.x86_64//rpm", + "@libxslt-0__1.1.34-9.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.9.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-3.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@osinfo-db-0__20240701-3.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-2.1.el9.x86_64//rpm", + "@polkit-0__0.117-13.el9.x86_64//rpm", + "@polkit-libs-0__0.117-13.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-12.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-12.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-36.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-36.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-36.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.51-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.51-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-container-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-20.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-20.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@which-0__2.21-29.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/qemu-kvm": "/usr/libexec/qemu-kvm", + "/etc/ssl/certs/ca-certificates.crt": "/usr/share/pki/ca-trust-source/ca-bundle.trust.p11-kit", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-4.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-20.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-20.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libssh-0__0.10.4-13.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-13.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-devel-0__10.10.0-4.el9.aarch64//rpm", + "@libvirt-libs-0__10.10.0-4.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-6.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@nettle-0__3.9.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-1.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@audit-libs-0__3.1.5-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-4.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libatomic-0__11.5.0-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-20.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-20.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libssh-0__0.10.4-13.el9.s390x//rpm", + "@libssh-config-0__0.10.4-13.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@libuuid-0__2.37.4-20.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-devel-0__10.10.0-4.el9.s390x//rpm", + "@libvirt-libs-0__10.10.0-4.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-6.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@nettle-0__3.9.1-1.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-1.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-4.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-20.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-20.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-devel-0__10.10.0-4.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-4.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-6.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@nettle-0__3.9.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.202-5.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.aarch64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-35.el9.aarch64//rpm", + "@expat-0__2.5.0-4.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-4.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-10.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-20.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libdb-0__5.3.28-55.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-20.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-20.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-4.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-20.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@nettle-0__3.9.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-1.el9.aarch64//rpm", + "@openssl-1__3.2.2-6.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-23.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@qemu-pr-helper-17__9.1.0-12.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-12.el9.aarch64//rpm", + "@systemd-0__252-51.el9.aarch64//rpm", + "@systemd-libs-0__252-51.el9.aarch64//rpm", + "@systemd-pam-0__252-51.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-51.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.aarch64//rpm", + "@util-linux-0__2.37.4-20.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-20.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-5.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.x86_64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-35.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-4.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-20.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-20.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-20.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-4.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-20.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@nettle-0__3.9.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@qemu-pr-helper-17__9.1.0-12.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.x86_64//rpm", + "@util-linux-0__2.37.4-20.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-20.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@binutils-0__2.35.2-60.el9.aarch64//rpm", + "@binutils-gold-0__2.35.2-60.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cpp-0__11.5.0-4.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@elfutils-debuginfod-client-0__0.192-5.el9.aarch64//rpm", + "@elfutils-default-yama-scope-0__0.192-5.el9.aarch64//rpm", + "@elfutils-libelf-0__0.192-5.el9.aarch64//rpm", + "@elfutils-libs-0__0.192-5.el9.aarch64//rpm", + "@expat-0__2.5.0-4.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gcc-0__11.5.0-4.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-devel-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@glibc-static-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@kernel-headers-0__5.14.0-559.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libasan-0__11.5.0-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libdb-0__5.3.28-55.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libgomp-0__11.5.0-4.el9.aarch64//rpm", + "@libmpc-0__1.2.1-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsss_idmap-0__2.9.6-2.el9.aarch64//rpm", + "@libsss_nss_idmap-0__2.9.6-2.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libubsan-0__11.5.0-4.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@make-1__4.3-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@openssl-1__3.2.2-6.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-23.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@python3-0__3.9.21-1.el9.aarch64//rpm", + "@python3-libs-0__3.9.21-1.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.aarch64//rpm", + "@sssd-client-0__2.9.6-2.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@audit-libs-0__3.1.5-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@binutils-0__2.35.2-60.el9.s390x//rpm", + "@binutils-gold-0__2.35.2-60.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cpp-0__11.5.0-4.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@elfutils-debuginfod-client-0__0.192-5.el9.s390x//rpm", + "@elfutils-default-yama-scope-0__0.192-5.el9.s390x//rpm", + "@elfutils-libelf-0__0.192-5.el9.s390x//rpm", + "@elfutils-libs-0__0.192-5.el9.s390x//rpm", + "@expat-0__2.5.0-4.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gcc-0__11.5.0-4.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-devel-0__2.34-160.el9.s390x//rpm", + "@glibc-headers-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@glibc-static-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@kernel-headers-0__5.14.0-559.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libasan-0__11.5.0-4.el9.s390x//rpm", + "@libatomic-0__11.5.0-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libdb-0__5.3.28-55.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libgomp-0__11.5.0-4.el9.s390x//rpm", + "@libmpc-0__1.2.1-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsss_idmap-0__2.9.6-2.el9.s390x//rpm", + "@libsss_nss_idmap-0__2.9.6-2.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libubsan-0__11.5.0-4.el9.s390x//rpm", + "@libuuid-0__2.37.4-20.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@make-1__4.3-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@openssl-1__3.2.2-6.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-23.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@python3-0__3.9.21-1.el9.s390x//rpm", + "@python3-libs-0__3.9.21-1.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-7.el9.s390x//rpm", + "@sssd-client-0__2.9.6-2.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@binutils-0__2.35.2-60.el9.x86_64//rpm", + "@binutils-gold-0__2.35.2-60.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cpp-0__11.5.0-4.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@elfutils-debuginfod-client-0__0.192-5.el9.x86_64//rpm", + "@elfutils-default-yama-scope-0__0.192-5.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@elfutils-libs-0__0.192-5.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gcc-0__11.5.0-4.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-devel-0__2.34-160.el9.x86_64//rpm", + "@glibc-headers-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@glibc-static-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-559.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libgomp-0__11.5.0-4.el9.x86_64//rpm", + "@libmpc-0__1.2.1-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsss_idmap-0__2.9.6-2.el9.x86_64//rpm", + "@libsss_nss_idmap-0__2.9.6-2.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@make-1__4.3-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@python3-0__3.9.21-1.el9.x86_64//rpm", + "@python3-libs-0__3.9.21-1.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@sssd-client-0__2.9.6-2.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@expat-0__2.5.0-4.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@python3-0__3.9.21-1.el9.aarch64//rpm", + "@python3-libs-0__3.9.21-1.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@expat-0__2.5.0-4.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libuuid-0__2.37.4-20.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@python3-0__3.9.21-1.el9.s390x//rpm", + "@python3-libs-0__3.9.21-1.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-7.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@python3-0__3.9.21-1.el9.x86_64//rpm", + "@python3-libs-0__3.9.21-1.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-1.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-26.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-26.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-libs-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.202-5.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.aarch64//rpm", + "@e2fsprogs-0__1.46.5-6.el9.aarch64//rpm", + "@e2fsprogs-libs-0__1.46.5-6.el9.aarch64//rpm", + "@expat-0__2.5.0-4.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@fuse-libs-0__2.9.9-17.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-160.el9.aarch64//rpm", + "@glibc-common-0__2.34-160.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-4.el9.aarch64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iputils-0__20210202-11.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-10.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-4.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-20.el9.aarch64//rpm", + "@libcap-0__2.48-9.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-6.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.aarch64//rpm", + "@libdb-0__5.3.28-55.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-20.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-4.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__54.0-1.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-20.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-4.el9.aarch64//rpm", + "@libsepol-0__3.6-2.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-20.el9.aarch64//rpm", + "@libss-0__1.46.5-6.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-8.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-20.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.aarch64//rpm", + "@nettle-0__3.9.1-1.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-3.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-1.el9.aarch64//rpm", + "@openssl-1__3.2.2-6.el9.aarch64//rpm", + "@openssl-libs-1__3.2.2-6.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-23.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@python3-0__3.9.21-1.el9.aarch64//rpm", + "@python3-configshell-1__1.1.30-1.el9.aarch64//rpm", + "@python3-dbus-0__1.2.18-2.el9.aarch64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.aarch64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64//rpm", + "@python3-kmod-0__0.9-32.el9.aarch64//rpm", + "@python3-libs-0__3.9.21-1.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.aarch64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.aarch64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.aarch64//rpm", + "@python3-six-0__1.15.0-9.el9.aarch64//rpm", + "@python3-urwid-0__2.1.2-4.el9.aarch64//rpm", + "@qemu-img-17__9.1.0-12.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sevctl-0__0.1.0-4.el9.aarch64//rpm", + "@shadow-utils-2__4.9-12.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.aarch64//rpm", + "@systemd-0__252-51.el9.aarch64//rpm", + "@systemd-libs-0__252-51.el9.aarch64//rpm", + "@systemd-pam-0__252-51.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-51.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@target-restore-0__2.1.76-1.el9.aarch64//rpm", + "@targetcli-0__2.1.57-2.el9.aarch64//rpm", + "@tzdata-0__2025a-1.el9.aarch64//rpm", + "@util-linux-0__2.37.4-20.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-20.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.aarch64//rpm", + "@which-0__2.21-29.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-1.el9.s390x//rpm", + "@audit-libs-0__3.1.5-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-26.el9.s390x//rpm", + "@centos-stream-release-0__9.0-26.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-26.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@dbus-libs-1__1.12.20-8.el9.s390x//rpm", + "@device-mapper-9__1.02.202-5.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.s390x//rpm", + "@e2fsprogs-0__1.46.5-6.el9.s390x//rpm", + "@e2fsprogs-libs-0__1.46.5-6.el9.s390x//rpm", + "@expat-0__2.5.0-4.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-160.el9.s390x//rpm", + "@glibc-common-0__2.34-160.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-4.el9.s390x//rpm", + "@gobject-introspection-0__1.68.0-11.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iputils-0__20210202-11.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-10.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-4.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-20.el9.s390x//rpm", + "@libcap-0__2.48-9.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-6.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.s390x//rpm", + "@libdb-0__5.3.28-55.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libfdisk-0__2.37.4-20.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-4.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__54.0-1.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-20.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-4.el9.s390x//rpm", + "@libsepol-0__3.6-2.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-20.el9.s390x//rpm", + "@libss-0__1.46.5-6.el9.s390x//rpm", + "@libtasn1-0__4.16.0-8.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-20.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.s390x//rpm", + "@nettle-0__3.9.1-1.el9.s390x//rpm", + "@nmap-ncat-3__7.92-3.el9.s390x//rpm", + "@openssl-1__3.2.2-6.el9.s390x//rpm", + "@openssl-libs-1__3.2.2-6.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-23.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@python3-0__3.9.21-1.el9.s390x//rpm", + "@python3-configshell-1__1.1.30-1.el9.s390x//rpm", + "@python3-dbus-0__1.2.18-2.el9.s390x//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.s390x//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.s390x//rpm", + "@python3-kmod-0__0.9-32.el9.s390x//rpm", + "@python3-libs-0__3.9.21-1.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.s390x//rpm", + "@python3-pyudev-0__0.22.0-6.el9.s390x//rpm", + "@python3-rtslib-0__2.1.76-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.s390x//rpm", + "@python3-six-0__1.15.0-9.el9.s390x//rpm", + "@python3-urwid-0__2.1.2-4.el9.s390x//rpm", + "@qemu-img-17__9.1.0-12.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sevctl-0__0.1.0-4.el9.s390x//rpm", + "@shadow-utils-2__4.9-12.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-7.el9.s390x//rpm", + "@systemd-0__252-51.el9.s390x//rpm", + "@systemd-libs-0__252-51.el9.s390x//rpm", + "@systemd-pam-0__252-51.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-51.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@target-restore-0__2.1.76-1.el9.s390x//rpm", + "@targetcli-0__2.1.57-2.el9.s390x//rpm", + "@tzdata-0__2025a-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-20.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-20.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-21.el9.s390x//rpm", + "@which-0__2.21-29.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-1.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20240828-2.git626aa59.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-5.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-5.el9.x86_64//rpm", + "@e2fsprogs-0__1.46.5-6.el9.x86_64//rpm", + "@e2fsprogs-libs-0__1.46.5-6.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-160.el9.x86_64//rpm", + "@glibc-common-0__2.34-160.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-160.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-4.el9.x86_64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iputils-0__20210202-11.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-4.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-20.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-6.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-20.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-4.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__54.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-20.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-4.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-20.el9.x86_64//rpm", + "@libss-0__1.46.5-6.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-8.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-20.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@nettle-0__3.9.1-1.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-3.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@python3-0__3.9.21-1.el9.x86_64//rpm", + "@python3-configshell-1__1.1.30-1.el9.x86_64//rpm", + "@python3-dbus-0__1.2.18-2.el9.x86_64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.x86_64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64//rpm", + "@python3-kmod-0__0.9-32.el9.x86_64//rpm", + "@python3-libs-0__3.9.21-1.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.x86_64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.x86_64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-13.el9.x86_64//rpm", + "@python3-six-0__1.15.0-9.el9.x86_64//rpm", + "@python3-urwid-0__2.1.2-4.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-12.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sevctl-0__0.4.2-1.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@target-restore-0__2.1.76-1.el9.x86_64//rpm", + "@targetcli-0__2.1.57-2.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-20.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-20.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@which-0__2.21-29.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_aarch64", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.2.2", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.37.1", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.8", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.8", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.3.1", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.2.2", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.10010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.10010.0", + "libvirt.so.0", + "libvirt.so.0.10010.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_aarch64", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_s390x", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.2.2", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.37.1", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.8", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.8", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.3.1", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.2.2", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.10010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.10010.0", + "libvirt.so.0", + "libvirt.so.0.10010.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_s390x", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_x86_64", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libacl.so.1", + "libacl.so.1.1.2301", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.2.2", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.37.1", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.8", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.8", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.3.1", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.2.2", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.10010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.10010.0", + "libvirt.so.0", + "libvirt.so.0.10010.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_x86_64", + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/kubevirt-patch/v1.7.0/WORKSPACE b/kubevirt-patch/v1.7.0/WORKSPACE new file mode 100644 index 0000000..f4e55bb --- /dev/null +++ b/kubevirt-patch/v1.7.0/WORKSPACE @@ -0,0 +1,9782 @@ +workspace(name = "kubevirt") + +# register crosscompiler toolchains +load("//bazel/toolchain:toolchain.bzl", "register_all_toolchains") + +register_all_toolchains() + +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") +load( + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_archive", + "http_file", +) + +http_archive( + name = "rules_python", + sha256 = "934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + urls = [ + "https://github.com/bazelbuild/rules_python/releases/download/0.3.0/rules_python-0.3.0.tar.gz", + "https://storage.googleapis.com/builddeps/934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + ], +) + +http_archive( + name = "rules_oci", + sha256 = "acbf8f40e062f707f8754e914dcb0013803c6e5e3679d3e05b571a9f5c7e0b43", + strip_prefix = "rules_oci-2.0.1", + urls = [ + "https://github.com/bazel-contrib/rules_oci/releases/download/v2.0.1/rules_oci-v2.0.1.tar.gz", + "https://storage.googleapis.com/builddeps/acbf8f40e062f707f8754e914dcb0013803c6e5e3679d3e05b571a9f5c7e0b43", + ], +) + +load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies") + +rules_oci_dependencies() + +load("@rules_oci//oci:repositories.bzl", "oci_register_toolchains") + +oci_register_toolchains( + name = "oci", +) + +load("@rules_oci//oci:pull.bzl", "oci_pull") + +# Bazel buildtools prebuilt binaries +http_archive( + name = "buildifier_prebuilt", + sha256 = "7f85b688a4b558e2d9099340cfb510ba7179f829454fba842370bccffb67d6cc", + strip_prefix = "buildifier-prebuilt-7.3.1", + urls = [ + "http://github.com/keith/buildifier-prebuilt/archive/7.3.1.tar.gz", + "https://storage.googleapis.com/builddeps/7f85b688a4b558e2d9099340cfb510ba7179f829454fba842370bccffb67d6cc", + ], +) + +load("@buildifier_prebuilt//:deps.bzl", "buildifier_prebuilt_deps") + +buildifier_prebuilt_deps() + +# Additional bazel rules + +http_archive( + name = "platforms", + sha256 = "3384eb1c30762704fbe38e440204e114154086c8fc8a8c2e3e28441028c019a8", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/1.0.0/platforms-1.0.0.tar.gz", + "https://github.com/bazelbuild/platforms/releases/download/1.0.0/platforms-1.0.0.tar.gz", + "https://storage.googleapis.com/builddeps/3384eb1c30762704fbe38e440204e114154086c8fc8a8c2e3e28441028c019a8", + ], +) + +http_archive( + name = "io_bazel_rules_go", + sha256 = "130739704540caa14e77c54810b9f01d6d9ae897d53eedceb40fd6b75efc3c23", + urls = [ + "https://github.com/bazel-contrib/rules_go/releases/download/v0.54.1/rules_go-v0.54.1.zip", + "https://storage.googleapis.com/builddeps/130739704540caa14e77c54810b9f01d6d9ae897d53eedceb40fd6b75efc3c23", + ], +) + +load("@buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains", "buildtools_assets") + +buildifier_prebuilt_register_toolchains( + assets = buildtools_assets( + arches = [ + "amd64", + "arm64", + "s390x", + ], + names = [ + "buildifier", + "buildozer", + ], + platforms = [ + "darwin", + "linux", + "windows", + ], + sha256_values = { + "buildifier_darwin_amd64": "375f823103d01620aaec20a0c29c6cbca99f4fd0725ae30b93655c6704f44d71", + "buildifier_darwin_arm64": "5a6afc6ac7a09f5455ba0b89bd99d5ae23b4174dc5dc9d6c0ed5ce8caac3f813", + "buildifier_linux_amd64": "5474cc5128a74e806783d54081f581662c4be8ae65022f557e9281ed5dc88009", + "buildifier_linux_arm64": "0bf86c4bfffaf4f08eed77bde5b2082e4ae5039a11e2e8b03984c173c34a561c", + "buildifier_linux_s390x": "e2d79ff5885d45274f76531f1adbc7b73a129f59e767f777e8fbde633d9d4e2e", + "buildifier_windows_amd64": "370cd576075ad29930a82f5de132f1a1de4084c784a82514bd4da80c85acf4a8", + "buildozer_darwin_amd64": "854c9583efc166602276802658cef3f224d60898cfaa60630b33d328db3b0de2", + "buildozer_darwin_arm64": "31b1bfe20d7d5444be217af78f94c5c43799cdf847c6ce69794b7bf3319c5364", + "buildozer_linux_amd64": "3305e287b3fcc68b9a35fd8515ee617452cd4e018f9e6886b6c7cdbcba8710d4", + "buildozer_linux_arm64": "0b5a2a717ac4fc911e1fec8d92af71dbb4fe95b10e5213da0cc3d56cea64a328", + "buildozer_linux_s390x": "7e28da8722656e800424989f5cdbc095cb29b2d398d33e6b3d04e0f50bc0bb10", + "buildozer_windows_amd64": "58d41ce53257c5594c9bc86d769f580909269f68de114297f46284fbb9023dcf", + }, + version = "v7.3.1", + ), +) + +http_archive( + name = "bazel_gazelle", + sha256 = "b760f7fe75173886007f7c2e616a21241208f3d90e8657dc65d36a771e916b6a", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.39.1/bazel-gazelle-v0.39.1.tar.gz", + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.39.1/bazel-gazelle-v0.39.1.tar.gz", + "https://storage.googleapis.com/builddeps/b760f7fe75173886007f7c2e616a21241208f3d90e8657dc65d36a771e916b6a", + ], +) + +http_archive( + name = "rules_pkg", + sha256 = "d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz", + "https://github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz", + "https://storage.googleapis.com/builddeps/d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef", + ], +) + +load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") + +rules_pkg_dependencies() + +http_archive( + name = "io_bazel_rules_docker", + sha256 = "95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + strip_prefix = "rules_docker-0.16.0", + urls = [ + "https://github.com/bazelbuild/rules_docker/releases/download/v0.16.0/rules_docker-v0.16.0.tar.gz", + "https://storage.googleapis.com/builddeps/95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + ], +) + +http_archive( + name = "com_github_ash2k_bazel_tools", + sha256 = "46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + strip_prefix = "bazel-tools-19b174803c0db1a01e77f10fa2079c35f54eed6e", + urls = [ + "https://github.com/ash2k/bazel-tools/archive/19b174803c0db1a01e77f10fa2079c35f54eed6e.zip", + "https://storage.googleapis.com/builddeps/46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + ], +) + +# Disk images +http_file( + name = "alpine_image", + sha256 = "f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/x86_64/alpine-virt-3.20.1-x86_64.iso", + "https://storage.googleapis.com/builddeps/f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + ], +) + +http_file( + name = "alpine_image_aarch64", + sha256 = "ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/aarch64/alpine-virt-3.20.1-aarch64.iso", + "https://storage.googleapis.com/builddeps/ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + ], +) + +http_file( + name = "alpine_image_s390x", + sha256 = "4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/s390x/alpine-standard-3.18.8-s390x.iso", + "https://storage.googleapis.com/builddeps/4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + ], +) + +http_file( + name = "cirros_image", + sha256 = "932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-x86_64-disk.img", + "https://storage.googleapis.com/builddeps/932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + ], +) + +http_file( + name = "cirros_image_aarch64", + sha256 = "889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-aarch64-disk.img", + "https://storage.googleapis.com/builddeps/889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + ], +) + +http_file( + name = "virtio_win_image", + sha256 = "57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + urls = [ + "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.266-1/virtio-win-0.1.266.iso", + "https://storage.googleapis.com/builddeps/57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + ], +) + +http_archive( + name = "bazeldnf", + sha256 = "0a4b9740da1839ded674c8f5012c069b235b101f1eaa2552a4721287808541af", + strip_prefix = "bazeldnf-v0.5.9-2", + urls = [ + "https://github.com/brianmcarey/bazeldnf/releases/download/v0.5.9-2/bazeldnf-v0.5.9-2.tar.gz", + "https://storage.googleapis.com/builddeps/0a4b9740da1839ded674c8f5012c069b235b101f1eaa2552a4721287808541af", + ], +) + +load("@bazeldnf//bazeldnf:defs.bzl", "rpm") +load( + "@bazeldnf//bazeldnf:repositories.bzl", + "bazeldnf_dependencies", + "bazeldnf_register_toolchains", +) +load( + "@io_bazel_rules_go//go:deps.bzl", + "go_register_toolchains", + "go_rules_dependencies", +) + +bazeldnf_dependencies() + +bazeldnf_register_toolchains( + name = "bazeldnf_prebuilt", +) + +go_rules_dependencies() + +go_register_toolchains( + go_version = "1.24.9", + nogo = "@//:nogo_vet", +) + +load("@com_github_ash2k_bazel_tools//goimports:deps.bzl", "goimports_dependencies") + +goimports_dependencies() + +load( + "@bazel_gazelle//:deps.bzl", + "gazelle_dependencies", + "go_repository", +) + +gazelle_dependencies(go_sdk = "go_sdk") + +bazeldnf_dependencies() + +# Winrmcli dependencies +go_repository( + name = "com_github_masterzen_winrmcli", + commit = "c85a68ee8b6e3ac95af2a5fd62d2f41c9e9c5f32", + importpath = "github.com/masterzen/winrm-cli", +) + +# Winrmcp deps +go_repository( + name = "com_github_packer_community_winrmcp", + commit = "c76d91c1e7db27b0868c5d09e292bb540616c9a2", + importpath = "github.com/packer-community/winrmcp", +) + +go_repository( + name = "com_github_masterzen_winrm_cli", + commit = "6f0c57dee4569c04f64c44c335752b415e5d73a7", + importpath = "github.com/masterzen/winrm-cli", +) + +go_repository( + name = "com_github_masterzen_winrm", + commit = "1d17eaf15943ca3554cdebb3b1b10aaa543a0b7e", + importpath = "github.com/masterzen/winrm", +) + +go_repository( + name = "com_github_nu7hatch_gouuid", + commit = "179d4d0c4d8d407a32af483c2354df1d2c91e6c3", + importpath = "github.com/nu7hatch/gouuid", +) + +go_repository( + name = "com_github_dylanmei_iso8601", + commit = "2075bf119b58e5576c6ed9f867b8f3d17f2e54d4", + importpath = "github.com/dylanmei/iso8601", +) + +go_repository( + name = "com_github_gofrs_uuid", + commit = "abfe1881e60ef34074c1b8d8c63b42565c356ed6", + importpath = "github.com/gofrs/uuid", +) + +go_repository( + name = "com_github_christrenkamp_goxpath", + commit = "c5096ec8773dd9f554971472081ddfbb0782334e", + importpath = "github.com/ChrisTrenkamp/goxpath", +) + +go_repository( + name = "com_github_azure_go_ntlmssp", + commit = "4a21cbd618b459155f8b8ee7f4491cd54f5efa77", + importpath = "github.com/Azure/go-ntlmssp", +) + +go_repository( + name = "com_github_masterzen_simplexml", + commit = "31eea30827864c9ab643aa5a0d5b2d4988ec8409", + importpath = "github.com/masterzen/simplexml", +) + +go_repository( + name = "org_golang_x_crypto", + commit = "4def268fd1a49955bfb3dda92fe3db4f924f2285", + importpath = "golang.org/x/crypto", +) + +# override rules_docker issue with this dependency +# rules_docker 0.16 uses 0.1.4, let's grab by commit +go_repository( + name = "com_github_google_go_containerregistry", + commit = "8a2841911ffee4f6892ca0083e89752fb46c48dd", # v0.1.4 + importpath = "github.com/google/go-containerregistry", +) + +# Pull go_image_base +oci_pull( + name = "go_image_base", + digest = "sha256:0ba6aa6b538aeae3d0f716ea8837703eb147173cd673241662e89adb794da829", + image = "gcr.io/distroless/base-debian12", +) + +oci_pull( + name = "go_image_base_aarch64", + digest = "sha256:9ee08ca352647dad1511153afb18f4a6dbb4f56bafc7d618d0082c16a14cfdf1", + image = "gcr.io/distroless/base-debian12", +) + +oci_pull( + name = "go_image_base_s390x", + digest = "sha256:6e2e356c462d69668a0313bf45ed3de614e9d4e0b9c03fa081d3bcae143a58ba", + image = "gcr.io/distroless/base-debian12", +) + +# Pull fedora container-disk preconfigured with ci tooling +# like stress and qemu guest agent pre-configured +# TODO build fedora_with_test_tooling for multi-arch +oci_pull( + name = "fedora_with_test_tooling", + digest = "sha256:897af945d1c58366086d5933ae4f341a5f1413b88e6c7f2b659436adc5d0f522", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "alpine_with_test_tooling", + digest = "sha256:51d0011e5684397bbc78d650d4c58412e535ccf4ca7fbe7e720315deedb860b7", + image = "quay.io/kubevirtci/alpine-with-test-tooling-container-disk", +) + +oci_pull( + name = "fedora_with_test_tooling_aarch64", + digest = "sha256:3d5a2a95f7f9382dc6730073fe19a6b1bc668b424c362339c88c6a13dff2ef49", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "fedora_with_test_tooling_s390x", + digest = "sha256:3d9f468750d90845a81608ea13c85237ea295c6295c911a99dc5e0504c8bc05b", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "alpine-ext-kernel-boot-demo-container-base", + digest = "sha256:de4bc8de772ff7570e6dda871ea9cdd502feeeff1973f16f84bfbd60ff8f4149", + image = "quay.io/kubevirt/alpine-ext-kernel-boot-demo", +) + +# TODO build fedora_realtime for multi-arch +oci_pull( + name = "fedora_realtime", + digest = "sha256:f91379d202a5493aba9ce06870b5d1ada2c112f314530c9820a9ad07426aa565", + image = "quay.io/kubevirt/fedora-realtime-container-disk", +) + +oci_pull( + name = "busybox", + digest = "sha256:545e6a6310a27636260920bc07b994a299b6708a1b26910cfefd335fdfb60d2b", + image = "registry.k8s.io/busybox", +) + +http_archive( + name = "io_bazel_rules_container_rpm", + sha256 = "151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + strip_prefix = "rules_container_rpm-0.0.5", + urls = [ + "https://github.com/rmohr/rules_container_rpm/archive/v0.0.5.tar.gz", + "https://storage.googleapis.com/builddeps/151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + ], +) + +http_archive( + name = "libguestfs-appliance-x86_64", + sha256 = "fb6da700eeae24da89aae6516091f7c5f46958b0b7812d2b122dc11dca1ab26a", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.54.0-qcow2-linux-5.14.0-575-centos9-amd64.tar.xz", + ], +) + +http_archive( + name = "libguestfs-appliance-s390x", + sha256 = "532cb951d4245265da645c8cce14033c19ea8f0d163c01e88f4153dae44e0f95", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.54.0-qcow2-linux-5.14.0-575-centos9-s390x.tar.xz", + ], +) + +# Get container-disk-v1alpha RPM's +http_file( + name = "qemu-img", + sha256 = "669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea", + urls = ["https://storage.googleapis.com/builddeps/669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea"], +) + +# some repos which are not part of go_rules anymore +go_repository( + name = "org_golang_x_net", + importpath = "golang.org/x/net", + sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=", + version = "v0.0.0-20190311183353-d8887717615a", +) + +go_repository( + name = "org_golang_x_text", + importpath = "golang.org/x/text", + sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=", + version = "v0.3.0", +) + +register_toolchains("//:py_toolchain") + +go_repository( + name = "org_golang_x_mod", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/mod", + sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", + version = "v0.3.0", +) + +go_repository( + name = "org_golang_x_xerrors", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/xerrors", + sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=", + version = "v0.0.0-20200804184101-5ec99f83aff1", +) + +rpm( + name = "acl-0__2.3.1-4.el9.aarch64", + sha256 = "a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/acl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.s390x", + sha256 = "5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/acl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.x86_64", + sha256 = "dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/acl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.s390x", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.aarch64", + sha256 = "3b8d0d6154ccc1047474072afc94cc1f72b7c234d8cd4e50734c67ca67da4161", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/alternatives-1.24-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b8d0d6154ccc1047474072afc94cc1f72b7c234d8cd4e50734c67ca67da4161", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.s390x", + sha256 = "8eb7ef117114059c44818eec88c4ed06c271a1185be1b1178ad096adcc934f11", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/alternatives-1.24-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8eb7ef117114059c44818eec88c4ed06c271a1185be1b1178ad096adcc934f11", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.x86_64", + sha256 = "1e9effe6f59312207b55f87eaded01e8f238622ad14018ffd33ef49e9ce8d4c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/alternatives-1.24-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1e9effe6f59312207b55f87eaded01e8f238622ad14018ffd33ef49e9ce8d4c6", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-4.el9.x86_64", + sha256 = "d1482f65e84e761f0282e9e2c2a7111f0638dc889d6f34e4cde160e465855d1e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d1482f65e84e761f0282e9e2c2a7111f0638dc889d6f34e4cde160e465855d1e", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-7.el9.aarch64", + sha256 = "0687c4b4d23ad6219bb3d557266b0adad1e9a24c8061e2579bcc285cc53cf106", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/audit-libs-3.1.5-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0687c4b4d23ad6219bb3d557266b0adad1e9a24c8061e2579bcc285cc53cf106", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-7.el9.s390x", + sha256 = "441a308a28b5abdb631284dd849a2a1101d7b1e5034c50db1587e302157cbe48", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/audit-libs-3.1.5-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/441a308a28b5abdb631284dd849a2a1101d7b1e5034c50db1587e302157cbe48", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-7.el9.x86_64", + sha256 = "7d503abfc0f88258b39d518ae9a1e8c25af4c77370c784f37553a2dd18c222e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d503abfc0f88258b39d518ae9a1e8c25af4c77370c784f37553a2dd18c222e5", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-2.el9.x86_64", + sha256 = "f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-3.el9.s390x", + sha256 = "79f80d96c84bcfc0379638eb82862d6217052e8e72cd188b3544c2f7fc059bcc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/augeas-libs-1.14.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/79f80d96c84bcfc0379638eb82862d6217052e8e72cd188b3544c2f7fc059bcc", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-3.el9.x86_64", + sha256 = "3db7a360240d905fa0dda490ac8f00f28553299087dc31a18c9e671616889553", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3db7a360240d905fa0dda490ac8f00f28553299087dc31a18c9e671616889553", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.aarch64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.s390x", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.x86_64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.aarch64", + sha256 = "acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bash-5.1.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.s390x", + sha256 = "7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bash-5.1.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.x86_64", + sha256 = "823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bash-5.1.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + ], +) + +rpm( + name = "binutils-0__2.35.2-67.el9.aarch64", + sha256 = "30587742570a9ef33fdaf35f72c9bca2f6a0953eeb838fab573f6124c9ce4c83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-2.35.2-67.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/30587742570a9ef33fdaf35f72c9bca2f6a0953eeb838fab573f6124c9ce4c83", + ], +) + +rpm( + name = "binutils-0__2.35.2-67.el9.s390x", + sha256 = "b329cdce6b4ce7e2b42054f86aafa7934f80d563155f642a0e9c2733e9d8562c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-2.35.2-67.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b329cdce6b4ce7e2b42054f86aafa7934f80d563155f642a0e9c2733e9d8562c", + ], +) + +rpm( + name = "binutils-0__2.35.2-67.el9.x86_64", + sha256 = "1f8dd90e7b2f751fbb3d0273356856ea5321c9e6e7036e0e83d3545e17a15171", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-2.35.2-67.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f8dd90e7b2f751fbb3d0273356856ea5321c9e6e7036e0e83d3545e17a15171", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-67.el9.aarch64", + sha256 = "1ea4e9788a377bd5adc7370fd855e79fd5e4d5810007b61fae8868fffe5843c8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-gold-2.35.2-67.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1ea4e9788a377bd5adc7370fd855e79fd5e4d5810007b61fae8868fffe5843c8", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-67.el9.s390x", + sha256 = "b59420bf049b2d1b7aa465b7c054b6104ab9ea6507441e85afb1d43c91a521c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-gold-2.35.2-67.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b59420bf049b2d1b7aa465b7c054b6104ab9ea6507441e85afb1d43c91a521c1", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-67.el9.x86_64", + sha256 = "649af3f84b89d91e27d3ed90cc2736ba351842634f006736a1a244887b6127c7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-gold-2.35.2-67.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/649af3f84b89d91e27d3ed90cc2736ba351842634f006736a1a244887b6127c7", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.aarch64", + sha256 = "79f097e912369d002db05995f4ba7b47f83a4fd2c9b5d6b6640066e1961f0f83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-1.0.8-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/79f097e912369d002db05995f4ba7b47f83a4fd2c9b5d6b6640066e1961f0f83", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.s390x", + sha256 = "affd546407a3872a8db4fb0bc98c6c7aa46f59277be6f6bc8097f1709f8ec3d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-1.0.8-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/affd546407a3872a8db4fb0bc98c6c7aa46f59277be6f6bc8097f1709f8ec3d0", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.x86_64", + sha256 = "930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.aarch64", + sha256 = "065787a932991bd8e7a705d8a977658cafab06f78cf2e405b68978a02718998e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/065787a932991bd8e7a705d8a977658cafab06f78cf2e405b68978a02718998e", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.s390x", + sha256 = "26d36d213959fba230d4c8550410d66e04b279ac8ccee7b8600680a87dde2d73", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/26d36d213959fba230d4c8550410d66e04b279ac8ccee7b8600680a87dde2d73", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.x86_64", + sha256 = "84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.aarch64", + sha256 = "fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/capstone-4.0.2-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.s390x", + sha256 = "1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/capstone-4.0.2-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.x86_64", + sha256 = "f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/capstone-4.0.2-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-26.el9.x86_64", + sha256 = "8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-30.el9.aarch64", + sha256 = "2e18189b53560eccc3ce6f987fd64decf8cda84fbd329340e7d2439a7544071a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2e18189b53560eccc3ce6f987fd64decf8cda84fbd329340e7d2439a7544071a", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-30.el9.s390x", + sha256 = "2e18189b53560eccc3ce6f987fd64decf8cda84fbd329340e7d2439a7544071a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2e18189b53560eccc3ce6f987fd64decf8cda84fbd329340e7d2439a7544071a", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-30.el9.x86_64", + sha256 = "2e18189b53560eccc3ce6f987fd64decf8cda84fbd329340e7d2439a7544071a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2e18189b53560eccc3ce6f987fd64decf8cda84fbd329340e7d2439a7544071a", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-26.el9.x86_64", + sha256 = "3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-release-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-30.el9.aarch64", + sha256 = "ddb1a9edc4732ca7f620ac119a5a4d985cadde22ac10a813fbcbb9f20deb43c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-release-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ddb1a9edc4732ca7f620ac119a5a4d985cadde22ac10a813fbcbb9f20deb43c4", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-30.el9.s390x", + sha256 = "ddb1a9edc4732ca7f620ac119a5a4d985cadde22ac10a813fbcbb9f20deb43c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-release-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ddb1a9edc4732ca7f620ac119a5a4d985cadde22ac10a813fbcbb9f20deb43c4", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-30.el9.x86_64", + sha256 = "ddb1a9edc4732ca7f620ac119a5a4d985cadde22ac10a813fbcbb9f20deb43c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-release-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ddb1a9edc4732ca7f620ac119a5a4d985cadde22ac10a813fbcbb9f20deb43c4", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-26.el9.x86_64", + sha256 = "eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-9.0-26.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-30.el9.aarch64", + sha256 = "ead13a28f2b8505a528a7305b52a593825fe6db9ea7eb8734b80cb3beb0f236a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ead13a28f2b8505a528a7305b52a593825fe6db9ea7eb8734b80cb3beb0f236a", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-30.el9.s390x", + sha256 = "ead13a28f2b8505a528a7305b52a593825fe6db9ea7eb8734b80cb3beb0f236a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-repos-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ead13a28f2b8505a528a7305b52a593825fe6db9ea7eb8734b80cb3beb0f236a", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-30.el9.x86_64", + sha256 = "ead13a28f2b8505a528a7305b52a593825fe6db9ea7eb8734b80cb3beb0f236a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-9.0-30.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ead13a28f2b8505a528a7305b52a593825fe6db9ea7eb8734b80cb3beb0f236a", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.aarch64", + sha256 = "ff8039cbb4fc624462abb4f556535fff128c99685834f6137db564d1b5a24c95", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/coreutils-single-8.32-39.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ff8039cbb4fc624462abb4f556535fff128c99685834f6137db564d1b5a24c95", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.s390x", + sha256 = "33f20a9d1a8dcbe9b6e587bda728a91b5b014cd0b0c979c7908135c5fed23115", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/coreutils-single-8.32-39.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/33f20a9d1a8dcbe9b6e587bda728a91b5b014cd0b0c979c7908135c5fed23115", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.x86_64", + sha256 = "09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + ], +) + +rpm( + name = "cpp-0__11.5.0-11.el9.aarch64", + sha256 = "877828f0d889456660d81dcbd39178d3565fb9021fb2193742e3354eeb959eb8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/cpp-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/877828f0d889456660d81dcbd39178d3565fb9021fb2193742e3354eeb959eb8", + ], +) + +rpm( + name = "cpp-0__11.5.0-11.el9.s390x", + sha256 = "ee90a508c6f13246fe30865b23d7c5f63e10955016df477036f8a02172cd0697", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/cpp-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ee90a508c6f13246fe30865b23d7c5f63e10955016df477036f8a02172cd0697", + ], +) + +rpm( + name = "cpp-0__11.5.0-11.el9.x86_64", + sha256 = "cfdf4d60773d0924b21c579b830086be01e8139983ec6b1375becbfefe926fb4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cpp-11.5.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cfdf4d60773d0924b21c579b830086be01e8139983ec6b1375becbfefe926fb4", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.aarch64", + sha256 = "d92900088b558cd3c96c63db24b048a0f3ea575a0f8bfe66c26df4acfcb2f811", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-2.9.6-27.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d92900088b558cd3c96c63db24b048a0f3ea575a0f8bfe66c26df4acfcb2f811", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.s390x", + sha256 = "f090c83e4fa8e5d170aaf13fe5c7795213d9d2ac0af16f92c60d6425a7b23253", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-2.9.6-27.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f090c83e4fa8e5d170aaf13fe5c7795213d9d2ac0af16f92c60d6425a7b23253", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.x86_64", + sha256 = "be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.aarch64", + sha256 = "bfd16ac0aebb165d43d3139448ab8eac66d4d67c9eac506c3f3bef799f1352c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.6-27.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bfd16ac0aebb165d43d3139448ab8eac66d4d67c9eac506c3f3bef799f1352c2", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.s390x", + sha256 = "bac458a7a96be0b856d6c3294c5675fa159694d111fae63819f0a70dc3c6ccf0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-dicts-2.9.6-27.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bac458a7a96be0b856d6c3294c5675fa159694d111fae63819f0a70dc3c6ccf0", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.x86_64", + sha256 = "01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + ], +) + +rpm( + name = "crypto-policies-0__20250128-1.git5269e22.el9.x86_64", + sha256 = "f811d2c848f6f93a188f2d74d4ccd172e1dc88fa7919e8e203cf1df3d93571e1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-20250128-1.git5269e22.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/f811d2c848f6f93a188f2d74d4ccd172e1dc88fa7919e8e203cf1df3d93571e1", + ], +) + +rpm( + name = "crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64", + sha256 = "96f3d4427ff10d17577e4a00d575ff5c35a7df57237dac6bb753fba9c1a0e689", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-20250804-1.git2c74f3d.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/96f3d4427ff10d17577e4a00d575ff5c35a7df57237dac6bb753fba9c1a0e689", + ], +) + +rpm( + name = "crypto-policies-0__20250804-1.git2c74f3d.el9.s390x", + sha256 = "96f3d4427ff10d17577e4a00d575ff5c35a7df57237dac6bb753fba9c1a0e689", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-20250804-1.git2c74f3d.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/96f3d4427ff10d17577e4a00d575ff5c35a7df57237dac6bb753fba9c1a0e689", + ], +) + +rpm( + name = "crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64", + sha256 = "96f3d4427ff10d17577e4a00d575ff5c35a7df57237dac6bb753fba9c1a0e689", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-20250804-1.git2c74f3d.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/96f3d4427ff10d17577e4a00d575ff5c35a7df57237dac6bb753fba9c1a0e689", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-34.el9.aarch64", + sha256 = "a9692e240f7643578ce722bfabb3d8e586822348568776ba62e61c75ea0fc06a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-minimal-7.76.1-34.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a9692e240f7643578ce722bfabb3d8e586822348568776ba62e61c75ea0fc06a", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-34.el9.s390x", + sha256 = "ccc673892f1a770f9b2f328a4165e66f11b35a89a91825f0c73cc4e5159560e1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-minimal-7.76.1-34.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ccc673892f1a770f9b2f328a4165e66f11b35a89a91825f0c73cc4e5159560e1", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-34.el9.x86_64", + sha256 = "824484bb2c6b0a4afd64f05b51f76a7c4804e15e01fe53bd974487e4cb2f2a5b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-34.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/824484bb2c6b0a4afd64f05b51f76a7c4804e15e01fe53bd974487e4cb2f2a5b", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64", + sha256 = "12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x", + sha256 = "0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64", + sha256 = "c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.aarch64", + sha256 = "898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.s390x", + sha256 = "e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.x86_64", + sha256 = "fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + ], +) + +rpm( + name = "daxctl-libs-0__78-2.el9.x86_64", + sha256 = "1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/daxctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.aarch64", + sha256 = "29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.s390x", + sha256 = "a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.x86_64", + sha256 = "d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.aarch64", + sha256 = "28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-broker-28-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.s390x", + sha256 = "d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-broker-28-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.x86_64", + sha256 = "dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-broker-28-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.aarch64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.s390x", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.x86_64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.aarch64", + sha256 = "4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-libs-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.s390x", + sha256 = "03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-libs-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.x86_64", + sha256 = "2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-libs-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + ], +) + +rpm( + name = "device-mapper-9__1.02.202-6.el9.x86_64", + sha256 = "0bf0cd224f72b8c6f3747d8c8d053418b13ff819601cc1293233b31e3a01998b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.202-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0bf0cd224f72b8c6f3747d8c8d053418b13ff819601cc1293233b31e3a01998b", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.aarch64", + sha256 = "3e2ab355c84e3c552f0c801bcf2abfa52d303c8362e64ee1a1b8349ff5de4e58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-1.02.206-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3e2ab355c84e3c552f0c801bcf2abfa52d303c8362e64ee1a1b8349ff5de4e58", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.s390x", + sha256 = "ba1c1a6f529a1700b2c7257baf88ab421770ea2c760889bc74d1e0372ecf6ea8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-1.02.206-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ba1c1a6f529a1700b2c7257baf88ab421770ea2c760889bc74d1e0372ecf6ea8", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.x86_64", + sha256 = "dca7b6ad60c556111c6a2ab198fe7fa802cafb2733183cce831135fedad8a7e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.206-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dca7b6ad60c556111c6a2ab198fe7fa802cafb2733183cce831135fedad8a7e0", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.202-6.el9.x86_64", + sha256 = "8efb6c63cb8dfa44329e6f47cc1f4d97f727ea1b21c619a8cc1244769e692af9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.202-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8efb6c63cb8dfa44329e6f47cc1f4d97f727ea1b21c619a8cc1244769e692af9", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.aarch64", + sha256 = "935550e46fcdabb578ad5373e12f81ed0cadde85b5d7522b1e0d7171eb73c9de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.206-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/935550e46fcdabb578ad5373e12f81ed0cadde85b5d7522b1e0d7171eb73c9de", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.s390x", + sha256 = "61827b1539c7db88538c58fba2a0b95c8cc5ed0f1a696ab26b6acab4cf5c4e67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-libs-1.02.206-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/61827b1539c7db88538c58fba2a0b95c8cc5ed0f1a696ab26b6acab4cf5c4e67", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.x86_64", + sha256 = "2b6ab8f98bed43e79f71d4ac2aeb2ff4d303497f04addbfff74bd2dd6ad71796", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.206-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2b6ab8f98bed43e79f71d4ac2aeb2ff4d303497f04addbfff74bd2dd6ad71796", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-39.el9.aarch64", + sha256 = "f9c0a5fb1dcb14068b87954fcbbdee6185e934718c8662812e5ed7ae03436086", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-multipath-libs-0.8.7-39.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f9c0a5fb1dcb14068b87954fcbbdee6185e934718c8662812e5ed7ae03436086", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-39.el9.x86_64", + sha256 = "856bdb3d6f5f54c0f2b64897608d735c972d6948df0bf3bc8dae38d8e0060119", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-multipath-libs-0.8.7-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/856bdb3d6f5f54c0f2b64897608d735c972d6948df0bf3bc8dae38d8e0060119", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.aarch64", + sha256 = "4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/diffutils-3.7-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.s390x", + sha256 = "e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/diffutils-3.7-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.x86_64", + sha256 = "fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/diffutils-3.7-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + ], +) + +rpm( + name = "dmidecode-1__3.6-1.el9.aarch64", + sha256 = "6cacf42907aaa5bbad69c2ff24eff8b09a1d007a1e630f4b670edb97bbc29bf0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dmidecode-3.6-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6cacf42907aaa5bbad69c2ff24eff8b09a1d007a1e630f4b670edb97bbc29bf0", + ], +) + +rpm( + name = "dmidecode-1__3.6-1.el9.x86_64", + sha256 = "e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.aarch64", + sha256 = "e764033c6a78fba5f7f5a2cfe59d627aa2b6ff4962dee494b33ed7de9ef0ef51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e764033c6a78fba5f7f5a2cfe59d627aa2b6ff4962dee494b33ed7de9ef0ef51", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.s390x", + sha256 = "b9048f417885369956a1668e204ca2499e2d46b2c61f62a34cb8caa7797e2ff1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b9048f417885369956a1668e204ca2499e2d46b2c61f62a34cb8caa7797e2ff1", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.x86_64", + sha256 = "a0b4500adf6c74516aeeb6aa2bf08a5a20508fc7ad4d241c7e686110abe17dbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0b4500adf6c74516aeeb6aa2bf08a5a20508fc7ad4d241c7e686110abe17dbe", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.aarch64", + sha256 = "f8ec39d902f629559a263ff7238192887b8f7cc16815af5a4577b86627599919", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f8ec39d902f629559a263ff7238192887b8f7cc16815af5a4577b86627599919", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.s390x", + sha256 = "d279fad6453b9b5f90fc14181727594fb4aaf980b641976d049448ae978f27c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-libs-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d279fad6453b9b5f90fc14181727594fb4aaf980b641976d049448ae978f27c2", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.x86_64", + sha256 = "28841ef6789b99559061c236b30e680bd045650bd22180133a3815cceb65cc46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/28841ef6789b99559061c236b30e680bd045650bd22180133a3815cceb65cc46", + ], +) + +rpm( + name = "edk2-aarch64-0__20241117-3.el9.aarch64", + sha256 = "5f4f2cf0a8c1271bf32d6534cacaa036d770953a797c82f4a3ab6aae14350a13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/edk2-aarch64-20241117-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/5f4f2cf0a8c1271bf32d6534cacaa036d770953a797c82f4a3ab6aae14350a13", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-2.el9.x86_64", + sha256 = "a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20241117-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-3.el9.s390x", + sha256 = "312b99d64803997220502e652575eceae37bae23dfa42b92dfa393c018b60676", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/edk2-ovmf-20241117-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/312b99d64803997220502e652575eceae37bae23dfa42b92dfa393c018b60676", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-3.el9.x86_64", + sha256 = "312b99d64803997220502e652575eceae37bae23dfa42b92dfa393c018b60676", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20241117-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/312b99d64803997220502e652575eceae37bae23dfa42b92dfa393c018b60676", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.193-1.el9.aarch64", + sha256 = "e72173a25681d4133d15770c263d1bbfcff8ae08a0b606e4af71ed0fb936d678", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.193-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e72173a25681d4133d15770c263d1bbfcff8ae08a0b606e4af71ed0fb936d678", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.193-1.el9.s390x", + sha256 = "04a806ba027541ff665fa3bd39ec10ee0dedf8c85f3bd76f927450574fa9ca18", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-debuginfod-client-0.193-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/04a806ba027541ff665fa3bd39ec10ee0dedf8c85f3bd76f927450574fa9ca18", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.193-1.el9.x86_64", + sha256 = "ed09caa612b06b4f839ec0650d43724ce1f41cbe0a19a289bc91e4d4571c1a10", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.193-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ed09caa612b06b4f839ec0650d43724ce1f41cbe0a19a289bc91e4d4571c1a10", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.193-1.el9.aarch64", + sha256 = "0d8e80edd33e4029c2d8bdfa451ddf49854cc127fa1d59bb158b6b8314a59b6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.193-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/0d8e80edd33e4029c2d8bdfa451ddf49854cc127fa1d59bb158b6b8314a59b6f", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.193-1.el9.s390x", + sha256 = "0d8e80edd33e4029c2d8bdfa451ddf49854cc127fa1d59bb158b6b8314a59b6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-default-yama-scope-0.193-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/0d8e80edd33e4029c2d8bdfa451ddf49854cc127fa1d59bb158b6b8314a59b6f", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.193-1.el9.x86_64", + sha256 = "0d8e80edd33e4029c2d8bdfa451ddf49854cc127fa1d59bb158b6b8314a59b6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.193-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/0d8e80edd33e4029c2d8bdfa451ddf49854cc127fa1d59bb158b6b8314a59b6f", + ], +) + +rpm( + name = "elfutils-libelf-0__0.192-5.el9.x86_64", + sha256 = "be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.192-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + ], +) + +rpm( + name = "elfutils-libelf-0__0.193-1.el9.aarch64", + sha256 = "80458e8bb299d3f73ce8078bfb4f16cf147e69bf59662d24a2f0d15a27f11f4e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libelf-0.193-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/80458e8bb299d3f73ce8078bfb4f16cf147e69bf59662d24a2f0d15a27f11f4e", + ], +) + +rpm( + name = "elfutils-libelf-0__0.193-1.el9.s390x", + sha256 = "7a68c24aec7075d3d260470a4a4e9aa09a684d16a029f5591a66a223adcdd794", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libelf-0.193-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7a68c24aec7075d3d260470a4a4e9aa09a684d16a029f5591a66a223adcdd794", + ], +) + +rpm( + name = "elfutils-libelf-0__0.193-1.el9.x86_64", + sha256 = "9f5169441d8203e1db66199c64a7fbc06b37fb4cc9d5356117262d292f933d12", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.193-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9f5169441d8203e1db66199c64a7fbc06b37fb4cc9d5356117262d292f933d12", + ], +) + +rpm( + name = "elfutils-libs-0__0.193-1.el9.aarch64", + sha256 = "955844015d2f660b66eba54ad4dcf47b848eb6e57a1e60f96cb721be4d1faeb9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libs-0.193-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/955844015d2f660b66eba54ad4dcf47b848eb6e57a1e60f96cb721be4d1faeb9", + ], +) + +rpm( + name = "elfutils-libs-0__0.193-1.el9.s390x", + sha256 = "772735b1002acc39f008f21b99886ce45ea0918b3bdb42b40312df54779385c5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libs-0.193-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/772735b1002acc39f008f21b99886ce45ea0918b3bdb42b40312df54779385c5", + ], +) + +rpm( + name = "elfutils-libs-0__0.193-1.el9.x86_64", + sha256 = "83577daeda825a338d8b1285048b0b55dd99a4a3d4f935c866e9ffc1cb8639dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libs-0.193-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/83577daeda825a338d8b1285048b0b55dd99a4a3d4f935c866e9ffc1cb8639dc", + ], +) + +rpm( + name = "ethtool-2__6.15-1.el9.aarch64", + sha256 = "9a9ed274e3991f6dde60a086c253a2c18b02d65cd6529e8cc7d091a5773d53e4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ethtool-6.15-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9a9ed274e3991f6dde60a086c253a2c18b02d65cd6529e8cc7d091a5773d53e4", + ], +) + +rpm( + name = "ethtool-2__6.15-1.el9.s390x", + sha256 = "a8db9f23cec8ee373691dbf4b20e3c7d7c26faab911d58de29d6e1a964b557db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ethtool-6.15-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a8db9f23cec8ee373691dbf4b20e3c7d7c26faab911d58de29d6e1a964b557db", + ], +) + +rpm( + name = "ethtool-2__6.15-1.el9.x86_64", + sha256 = "255d4a3cd216303e65b8d7953af198ccd4eb555e0820ed9c071e9a00fc9c1403", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ethtool-6.15-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/255d4a3cd216303e65b8d7953af198ccd4eb555e0820ed9c071e9a00fc9c1403", + ], +) + +rpm( + name = "expat-0__2.5.0-4.el9.x86_64", + sha256 = "360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + ], +) + +rpm( + name = "expat-0__2.5.0-5.el9.aarch64", + sha256 = "8d533bfa2656c45a8d159314e9447492442db5705a1cd73033b8dad720f33b46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/expat-2.5.0-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8d533bfa2656c45a8d159314e9447492442db5705a1cd73033b8dad720f33b46", + ], +) + +rpm( + name = "expat-0__2.5.0-5.el9.s390x", + sha256 = "3ea924e01856fa990e48e54665947f51630411ff1b71edd7f65a198e1a9d3f1f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/expat-2.5.0-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3ea924e01856fa990e48e54665947f51630411ff1b71edd7f65a198e1a9d3f1f", + ], +) + +rpm( + name = "expat-0__2.5.0-5.el9.x86_64", + sha256 = "fe45d00a4d532178c552cd62b49e9d56514afc6ef29403eb1625340ab173d163", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fe45d00a4d532178c552cd62b49e9d56514afc6ef29403eb1625340ab173d163", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.aarch64", + sha256 = "c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/filesystem-3.16-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.s390x", + sha256 = "67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/filesystem-3.16-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.x86_64", + sha256 = "da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/filesystem-3.16-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.aarch64", + sha256 = "de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/findutils-4.8.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.s390x", + sha256 = "627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/findutils-4.8.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.x86_64", + sha256 = "393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/findutils-4.8.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-5.el9.s390x", + sha256 = "51bb0013066a0d83f2cc2df63eb2b7d1dcfe5dafb4054f62143768f682df3c1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/fips-provider-next-1.2.0-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/51bb0013066a0d83f2cc2df63eb2b7d1dcfe5dafb4054f62143768f682df3c1a", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-5.el9.x86_64", + sha256 = "efb7823a54b75b86faf6344f8ddf7da965f35b16e5d40c2032e6d75d4fbc6897", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fips-provider-next-1.2.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/efb7823a54b75b86faf6344f8ddf7da965f35b16e5d40c2032e6d75d4fbc6897", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.s390x", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.x86_64", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.s390x", + sha256 = "4f5532023b6272eb79706c080fce40a5f083398820bfbbfaa7116243c6a93bc0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4f5532023b6272eb79706c080fce40a5f083398820bfbbfaa7116243c6a93bc0", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.x86_64", + sha256 = "8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.s390x", + sha256 = "18de6b2985152ae3b3f1e72d90591543362c09e71ccb749a3adb63099c37496e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-common-3.10.2-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18de6b2985152ae3b3f1e72d90591543362c09e71ccb749a3adb63099c37496e", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.x86_64", + sha256 = "ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-common-3.10.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.aarch64", + sha256 = "5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/fuse-libs-2.9.9-17.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.s390x", + sha256 = "89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-libs-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.x86_64", + sha256 = "a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-libs-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.aarch64", + sha256 = "656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gawk-5.1.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.s390x", + sha256 = "acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gawk-5.1.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.x86_64", + sha256 = "6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gawk-5.1.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + ], +) + +rpm( + name = "gcc-0__11.5.0-11.el9.aarch64", + sha256 = "da7237a7951b9f86eb147f4d369005f9b39025de9101656090a36ea1a6cd3eaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gcc-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da7237a7951b9f86eb147f4d369005f9b39025de9101656090a36ea1a6cd3eaa", + ], +) + +rpm( + name = "gcc-0__11.5.0-11.el9.s390x", + sha256 = "1caea51972aaf4864c131bd26d4cfc0a7cd16aa41ed32f092e4c32716e59ce11", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gcc-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1caea51972aaf4864c131bd26d4cfc0a7cd16aa41ed32f092e4c32716e59ce11", + ], +) + +rpm( + name = "gcc-0__11.5.0-11.el9.x86_64", + sha256 = "750debb1d5e6d319df6057dc56b19b8ab9c814c80be5f3576e9a3c960fa007cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gcc-11.5.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/750debb1d5e6d319df6057dc56b19b8ab9c814c80be5f3576e9a3c960fa007cf", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.aarch64", + sha256 = "69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gdbm-libs-1.23-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.s390x", + sha256 = "29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gdbm-libs-1.23-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.x86_64", + sha256 = "cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gdbm-libs-1.23-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.aarch64", + sha256 = "66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.s390x", + sha256 = "369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.x86_64", + sha256 = "1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.aarch64", + sha256 = "f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-libs-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.s390x", + sha256 = "d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-libs-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.x86_64", + sha256 = "5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-libs-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.s390x", + sha256 = "f5d013624d04c2f1ec232a59e46342b4c52688c29c2a43304e52456a63408667", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib-networking-2.68.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5d013624d04c2f1ec232a59e46342b4c52688c29c2a43304e52456a63408667", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.x86_64", + sha256 = "ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib-networking-2.68.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.aarch64", + sha256 = "6d47f73da8f765a536e2647b611017afc13ea5da440efcd9d8d92820e51320b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glib2-2.68.4-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6d47f73da8f765a536e2647b611017afc13ea5da440efcd9d8d92820e51320b9", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.s390x", + sha256 = "4199c2ee05b0e4338d43903665b7f5f02bc04d3fbdf8a5cdcc33ee7ca2ef5d11", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib2-2.68.4-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4199c2ee05b0e4338d43903665b7f5f02bc04d3fbdf8a5cdcc33ee7ca2ef5d11", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.x86_64", + sha256 = "793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib2-2.68.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + ], +) + +rpm( + name = "glibc-0__2.34-168.el9.x86_64", + sha256 = "e06212b1cac1d9fd9857a00ddefefe9fb9f406199cb84fdd1153589c15e16289", + urls = ["https://storage.googleapis.com/builddeps/e06212b1cac1d9fd9857a00ddefefe9fb9f406199cb84fdd1153589c15e16289"], +) + +rpm( + name = "glibc-0__2.34-231.el9.aarch64", + sha256 = "9bc50345462446062c947d848f548ea4e8f1af8e6b820d5cac82d2f421dce723", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-2.34-231.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9bc50345462446062c947d848f548ea4e8f1af8e6b820d5cac82d2f421dce723", + ], +) + +rpm( + name = "glibc-0__2.34-231.el9.s390x", + sha256 = "03efd62aa2d4e02592cc3e40a7aec9c462accb1c5efeb2fb281f99170e300556", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-2.34-231.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/03efd62aa2d4e02592cc3e40a7aec9c462accb1c5efeb2fb281f99170e300556", + ], +) + +rpm( + name = "glibc-0__2.34-231.el9.x86_64", + sha256 = "690526dfe8d7c83b41e5dfefdb686f5e174da9335dad36600ee83ce107d1e4a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-2.34-231.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/690526dfe8d7c83b41e5dfefdb686f5e174da9335dad36600ee83ce107d1e4a0", + ], +) + +rpm( + name = "glibc-0__2.34-232.el9.aarch64", + sha256 = "7d9aee5e4366a3292614e36f67978d874e71d09ea9772a6ff165a173d2341f23", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-2.34-232.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7d9aee5e4366a3292614e36f67978d874e71d09ea9772a6ff165a173d2341f23", + ], +) + +rpm( + name = "glibc-0__2.34-232.el9.s390x", + sha256 = "d5b2164551c29776f5587f20333602dfe4898c4624e64cbcdb806dec87996cb8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-2.34-232.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d5b2164551c29776f5587f20333602dfe4898c4624e64cbcdb806dec87996cb8", + ], +) + +rpm( + name = "glibc-0__2.34-232.el9.x86_64", + sha256 = "c53b60cac3a94588f6cb22ed53e786474304c40f378e5bd474f435e6b9814ae2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-2.34-232.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c53b60cac3a94588f6cb22ed53e786474304c40f378e5bd474f435e6b9814ae2", + ], +) + +rpm( + name = "glibc-common-0__2.34-168.el9.x86_64", + sha256 = "531650744909efd0284bf6c16a45dbaf455b214c0cac4197cf6d43e8c7d83af8", + urls = ["https://storage.googleapis.com/builddeps/531650744909efd0284bf6c16a45dbaf455b214c0cac4197cf6d43e8c7d83af8"], +) + +rpm( + name = "glibc-common-0__2.34-231.el9.aarch64", + sha256 = "9215622fa63928b492a411d9e70578c95b1f236c3e13eead0e77772012759a95", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-common-2.34-231.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9215622fa63928b492a411d9e70578c95b1f236c3e13eead0e77772012759a95", + ], +) + +rpm( + name = "glibc-common-0__2.34-231.el9.s390x", + sha256 = "689fb39f1651f315d77596d82a74a100369c011d5f6a0e38566819c9ce02364c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-common-2.34-231.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/689fb39f1651f315d77596d82a74a100369c011d5f6a0e38566819c9ce02364c", + ], +) + +rpm( + name = "glibc-common-0__2.34-231.el9.x86_64", + sha256 = "a6c74e091da8051094c5109b69e22f8954f6d8bf19de30770e46e00ba117e81e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-common-2.34-231.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a6c74e091da8051094c5109b69e22f8954f6d8bf19de30770e46e00ba117e81e", + ], +) + +rpm( + name = "glibc-common-0__2.34-232.el9.aarch64", + sha256 = "e9a480fc146dc98495d753d57f7466c9732b01c0fd627650ad0e007896b56d13", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-common-2.34-232.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e9a480fc146dc98495d753d57f7466c9732b01c0fd627650ad0e007896b56d13", + ], +) + +rpm( + name = "glibc-common-0__2.34-232.el9.s390x", + sha256 = "fe27caf0453fc36207051570a47c9c8aba0101241a368aafb020fa9bf04cd57f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-common-2.34-232.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fe27caf0453fc36207051570a47c9c8aba0101241a368aafb020fa9bf04cd57f", + ], +) + +rpm( + name = "glibc-common-0__2.34-232.el9.x86_64", + sha256 = "d73a83b08e7f58d9e69ba23500c595b43dc4c3dea1a39ba78690715a3b9f8a05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-common-2.34-232.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d73a83b08e7f58d9e69ba23500c595b43dc4c3dea1a39ba78690715a3b9f8a05", + ], +) + +rpm( + name = "glibc-devel-0__2.34-231.el9.aarch64", + sha256 = "8135b4500cc3379936f58a993f56585b327ad78eb0c5c67a4b57af76b2921b52", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/glibc-devel-2.34-231.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8135b4500cc3379936f58a993f56585b327ad78eb0c5c67a4b57af76b2921b52", + ], +) + +rpm( + name = "glibc-devel-0__2.34-231.el9.s390x", + sha256 = "3c4ab0e24fbbb647bb95742a4ac6f226c41bad490158e1ac115bd26a2cef4d5a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-devel-2.34-231.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3c4ab0e24fbbb647bb95742a4ac6f226c41bad490158e1ac115bd26a2cef4d5a", + ], +) + +rpm( + name = "glibc-devel-0__2.34-231.el9.x86_64", + sha256 = "016670a3b75f93c1e5e67f61adc3d36f57c0c752308cf4f52037bcf299a7ceff", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-devel-2.34-231.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/016670a3b75f93c1e5e67f61adc3d36f57c0c752308cf4f52037bcf299a7ceff", + ], +) + +rpm( + name = "glibc-headers-0__2.34-231.el9.s390x", + sha256 = "404e5a9881bc854197868564a1f58e8d4559743ee528f69d7937edd3ed9ce0ea", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-headers-2.34-231.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/404e5a9881bc854197868564a1f58e8d4559743ee528f69d7937edd3ed9ce0ea", + ], +) + +rpm( + name = "glibc-headers-0__2.34-231.el9.x86_64", + sha256 = "a70818489d1f8dff23208cf84c9a78d1a50dd02cd8438752f8b1421c19fe6861", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-headers-2.34-231.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a70818489d1f8dff23208cf84c9a78d1a50dd02cd8438752f8b1421c19fe6861", + ], +) + +rpm( + name = "glibc-langpack-dz-0__2.34-232.el9.aarch64", + sha256 = "65b32cd679cd0d2727b8777d44f9eeeb1da3a2a8e33f0bf84c171d46ced35ec7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-langpack-dz-2.34-232.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65b32cd679cd0d2727b8777d44f9eeeb1da3a2a8e33f0bf84c171d46ced35ec7", + ], +) + +rpm( + name = "glibc-langpack-dz-0__2.34-232.el9.s390x", + sha256 = "ce69d9a42ea3b8bb39ee36220e31793d1e7529d4ae9c8212de365fa4956c99c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-langpack-dz-2.34-232.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ce69d9a42ea3b8bb39ee36220e31793d1e7529d4ae9c8212de365fa4956c99c0", + ], +) + +rpm( + name = "glibc-langpack-en-0__2.34-232.el9.x86_64", + sha256 = "17bbe58f642abff1f0be28b3755234ac200005153572f830f115343559aac644", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.34-232.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/17bbe58f642abff1f0be28b3755234ac200005153572f830f115343559aac644", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-168.el9.x86_64", + sha256 = "991b6d7370b237a3d576536a517d01a1ccc997959f4ea30ba07bd779641f79e8", + urls = ["https://storage.googleapis.com/builddeps/991b6d7370b237a3d576536a517d01a1ccc997959f4ea30ba07bd779641f79e8"], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-231.el9.aarch64", + sha256 = "7b96058b823dbfbce39b93a7a976f9852ef3a8cbca84a1cff1b309302593f59c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-minimal-langpack-2.34-231.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b96058b823dbfbce39b93a7a976f9852ef3a8cbca84a1cff1b309302593f59c", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-231.el9.s390x", + sha256 = "99e262fe6958af24c4991c34c76327fece09b9d92b3d4be7b025f9e72b8d08fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-minimal-langpack-2.34-231.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/99e262fe6958af24c4991c34c76327fece09b9d92b3d4be7b025f9e72b8d08fa", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-231.el9.x86_64", + sha256 = "3b2eaba200c415b0f6c4805ed06c53c2b8d043faf20bdd79da9b24ba1c5d07fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-minimal-langpack-2.34-231.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3b2eaba200c415b0f6c4805ed06c53c2b8d043faf20bdd79da9b24ba1c5d07fc", + ], +) + +rpm( + name = "glibc-static-0__2.34-231.el9.aarch64", + sha256 = "b074d26e76d1121b3db16a619ecc30ec93e58eb8c6f12718a795dc19684e0b92", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/glibc-static-2.34-231.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b074d26e76d1121b3db16a619ecc30ec93e58eb8c6f12718a795dc19684e0b92", + ], +) + +rpm( + name = "glibc-static-0__2.34-231.el9.s390x", + sha256 = "95fa0686ce954844d35026382b9dcbfba711ee489a68109841c96950679f781d", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/glibc-static-2.34-231.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/95fa0686ce954844d35026382b9dcbfba711ee489a68109841c96950679f781d", + ], +) + +rpm( + name = "glibc-static-0__2.34-231.el9.x86_64", + sha256 = "39ace79e38fac8f19d7abd74f4fe07611982374adff32e8887244876d48eb175", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/glibc-static-2.34-231.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/39ace79e38fac8f19d7abd74f4fe07611982374adff32e8887244876d48eb175", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.aarch64", + sha256 = "01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gmp-6.2.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.s390x", + sha256 = "c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gmp-6.2.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.x86_64", + sha256 = "b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gmp-6.2.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-4.el9.s390x", + sha256 = "79f4d4ce2953babbca0f5ba558b633e8e2a03bb5745f6e9340dfe83c7181c782", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnupg2-2.3.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/79f4d4ce2953babbca0f5ba558b633e8e2a03bb5745f6e9340dfe83c7181c782", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-4.el9.x86_64", + sha256 = "03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnupg2-2.3.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + ], +) + +rpm( + name = "gnutls-0__3.8.3-6.el9.x86_64", + sha256 = "97364bd099856650cdbcc18448e85a3cc6a3cebc9513190a1b4d7016132920d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.3-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/97364bd099856650cdbcc18448e85a3cc6a3cebc9513190a1b4d7016132920d9", + ], +) + +rpm( + name = "gnutls-0__3.8.3-9.el9.aarch64", + sha256 = "2a1e4a460877321ba6602ebb5499c834a70689f05fa3dc1cfd785f9e7e6ebc94", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gnutls-3.8.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2a1e4a460877321ba6602ebb5499c834a70689f05fa3dc1cfd785f9e7e6ebc94", + ], +) + +rpm( + name = "gnutls-0__3.8.3-9.el9.s390x", + sha256 = "4bcd428ca57933db99d36597b27d2fb60d0b4798251697ad28da067472ecf0b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnutls-3.8.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4bcd428ca57933db99d36597b27d2fb60d0b4798251697ad28da067472ecf0b5", + ], +) + +rpm( + name = "gnutls-0__3.8.3-9.el9.x86_64", + sha256 = "b57ef295c364898e57e50f6026bc7a840bb50e883c1be44f8de293b756d962f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b57ef295c364898e57e50f6026bc7a840bb50e883c1be44f8de293b756d962f8", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.3-9.el9.aarch64", + sha256 = "11dd9396567e69ebc701e42ae5b31fd493d02b9365231da0df12f40b13b64ab2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-dane-3.8.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/11dd9396567e69ebc701e42ae5b31fd493d02b9365231da0df12f40b13b64ab2", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.3-9.el9.s390x", + sha256 = "af10664e5f111210d46cf65732d8c61b1c8a9c35067af475d7b5e5db48e3be67", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-dane-3.8.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/af10664e5f111210d46cf65732d8c61b1c8a9c35067af475d7b5e5db48e3be67", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.3-9.el9.x86_64", + sha256 = "0b032153df2d35959328b7b9521ecb481a144f19fb748ee991d156f299368667", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-dane-3.8.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0b032153df2d35959328b7b9521ecb481a144f19fb748ee991d156f299368667", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.3-9.el9.aarch64", + sha256 = "65a5f914bf46d7f0de517eae01709335b0cdfcc10dcbfc815c69beeefae920d5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-utils-3.8.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65a5f914bf46d7f0de517eae01709335b0cdfcc10dcbfc815c69beeefae920d5", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.3-9.el9.s390x", + sha256 = "82b7fdcaa84b7e843b45fe75165456be6a6bcff5f2bf573432ffe795488cbc44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-utils-3.8.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/82b7fdcaa84b7e843b45fe75165456be6a6bcff5f2bf573432ffe795488cbc44", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.3-9.el9.x86_64", + sha256 = "e8837d0e6ccdccacfef65fabf35348ad40fd41ba5d80dcd94336a1276d013fed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-utils-3.8.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e8837d0e6ccdccacfef65fabf35348ad40fd41ba5d80dcd94336a1276d013fed", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.aarch64", + sha256 = "bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gobject-introspection-1.68.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.s390x", + sha256 = "27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gobject-introspection-1.68.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.x86_64", + sha256 = "d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gobject-introspection-1.68.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.aarch64", + sha256 = "33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/grep-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.s390x", + sha256 = "b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/grep-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.x86_64", + sha256 = "10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/grep-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-6.el9.x86_64", + sha256 = "9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-7.el9.s390x", + sha256 = "9ad1ecd00da76a6060811009e556834523d09f737180c1ba1266df718126198f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gsettings-desktop-schemas-40.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9ad1ecd00da76a6060811009e556834523d09f737180c1ba1266df718126198f", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-7.el9.x86_64", + sha256 = "46fba7d8587623fc2e09a472a79706b30a41e820dfd4c25c0de708316f07807d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46fba7d8587623fc2e09a472a79706b30a41e820dfd4c25c0de708316f07807d", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-2.el9.x86_64", + sha256 = "2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-5.el9.s390x", + sha256 = "09f07a0309459e9aeaa0d4004496a4bbbd10dc1ebf2ea0b97187a8a27020c08e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/guestfs-tools-1.52.2-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09f07a0309459e9aeaa0d4004496a4bbbd10dc1ebf2ea0b97187a8a27020c08e", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-5.el9.x86_64", + sha256 = "0d4ff23abb20c16245b8452201cd693aa864ba609f4fea36ba23612011c2a9bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0d4ff23abb20c16245b8452201cd693aa864ba609f4fea36ba23612011c2a9bf", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.aarch64", + sha256 = "5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gzip-1.12-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.s390x", + sha256 = "72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gzip-1.12-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.x86_64", + sha256 = "e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gzip-1.12-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.s390x", + sha256 = "d6a58dc3d17cad456ea20945a93ccca5bae70620a1d16ac059c9c8554337b33a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/hexedit-1.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6a58dc3d17cad456ea20945a93ccca5bae70620a1d16ac059c9c8554337b33a", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.x86_64", + sha256 = "8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hexedit-1.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.s390x", + sha256 = "1976d559fb2ad7ae330a7265d2ff03d59ca1726637db13a54bceba2be08d9920", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/hivex-libs-1.3.24-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1976d559fb2ad7ae330a7265d2ff03d59ca1726637db13a54bceba2be08d9920", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.x86_64", + sha256 = "f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hivex-libs-1.3.24-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + ], +) + +rpm( + name = "hwdata-0__0.348-9.18.el9.x86_64", + sha256 = "b25f5743e2f54a34d41bb6b37602b301260629ef91713f0b894c8ed9dd37c137", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.18.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/b25f5743e2f54a34d41bb6b37602b301260629ef91713f0b894c8ed9dd37c137", + ], +) + +rpm( + name = "hwdata-0__0.348-9.20.el9.s390x", + sha256 = "d3534dc363e33be8d80843498fd445a5361e7c81c8b9d49d56483946ef01dc78", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/hwdata-0.348-9.20.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d3534dc363e33be8d80843498fd445a5361e7c81c8b9d49d56483946ef01dc78", + ], +) + +rpm( + name = "hwdata-0__0.348-9.20.el9.x86_64", + sha256 = "d3534dc363e33be8d80843498fd445a5361e7c81c8b9d49d56483946ef01dc78", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.20.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d3534dc363e33be8d80843498fd445a5361e7c81c8b9d49d56483946ef01dc78", + ], +) + +rpm( + name = "iproute-0__6.11.0-1.el9.x86_64", + sha256 = "3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + ], +) + +rpm( + name = "iproute-0__6.14.0-2.el9.aarch64", + sha256 = "2607dcb5c8a6f51f2e1fd8ba04b37210bad581a01c5eb1fc539eb8b84f48dc79", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-6.14.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2607dcb5c8a6f51f2e1fd8ba04b37210bad581a01c5eb1fc539eb8b84f48dc79", + ], +) + +rpm( + name = "iproute-0__6.14.0-2.el9.s390x", + sha256 = "19f8a011bf43882fcca623d2d1b22e29b3307a0df2da4fbbb12f78c47677787a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-6.14.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/19f8a011bf43882fcca623d2d1b22e29b3307a0df2da4fbbb12f78c47677787a", + ], +) + +rpm( + name = "iproute-0__6.14.0-2.el9.x86_64", + sha256 = "6bc374c73aa5a03bdcb27190ba8d4f4f4e584ac4706eb6e8c25f27ebc140df8a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.14.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6bc374c73aa5a03bdcb27190ba8d4f4f4e584ac4706eb6e8c25f27ebc140df8a", + ], +) + +rpm( + name = "iproute-tc-0__6.11.0-1.el9.x86_64", + sha256 = "0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + ], +) + +rpm( + name = "iproute-tc-0__6.14.0-2.el9.aarch64", + sha256 = "f1c18b06f17542075d053954d7d49189a752b5a9d5de00b47b4e5b1150e65064", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-tc-6.14.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f1c18b06f17542075d053954d7d49189a752b5a9d5de00b47b4e5b1150e65064", + ], +) + +rpm( + name = "iproute-tc-0__6.14.0-2.el9.s390x", + sha256 = "e029e4ede9cd762d6ee93d49058b65d0f44241b2a4a8a473a01ad8d0a6b2db04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-tc-6.14.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e029e4ede9cd762d6ee93d49058b65d0f44241b2a4a8a473a01ad8d0a6b2db04", + ], +) + +rpm( + name = "iproute-tc-0__6.14.0-2.el9.x86_64", + sha256 = "760b372a609fd5cb492362dd1b62b6d70643f651119b1aa39164f0d388b642d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.14.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/760b372a609fd5cb492362dd1b62b6d70643f651119b1aa39164f0d388b642d4", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.aarch64", + sha256 = "097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iptables-libs-1.8.10-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.s390x", + sha256 = "469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iptables-libs-1.8.10-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.x86_64", + sha256 = "7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iptables-libs-1.8.10-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + ], +) + +rpm( + name = "iputils-0__20210202-14.el9.aarch64", + sha256 = "a4d56a5f1a0bef2596da749ea6cf93eb71f042cc8df5193982ff5410d235582e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iputils-20210202-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a4d56a5f1a0bef2596da749ea6cf93eb71f042cc8df5193982ff5410d235582e", + ], +) + +rpm( + name = "iputils-0__20210202-14.el9.s390x", + sha256 = "cddb4e5f970aa9133e32bb0e70ffb9120c286e2aa33f504379b90c80c209ca4a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iputils-20210202-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cddb4e5f970aa9133e32bb0e70ffb9120c286e2aa33f504379b90c80c209ca4a", + ], +) + +rpm( + name = "iputils-0__20210202-14.el9.x86_64", + sha256 = "17a37730e29a061b682c63f8af1c56394c19f7941da02075dc349f99e91e2b72", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iputils-20210202-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/17a37730e29a061b682c63f8af1c56394c19f7941da02075dc349f99e91e2b72", + ], +) + +rpm( + name = "ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64", + sha256 = "fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/ipxe-roms-qemu-20200823-9.git4bd064de.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.aarch64", + sha256 = "23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/jansson-2.14-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.s390x", + sha256 = "ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/jansson-2.14-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.x86_64", + sha256 = "c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/jansson-2.14-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.aarch64", + sha256 = "65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-c-0.14-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.s390x", + sha256 = "224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-c-0.14-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.x86_64", + sha256 = "1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-c-0.14-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.aarch64", + sha256 = "04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-glib-1.6.6-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.s390x", + sha256 = "5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-glib-1.6.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.x86_64", + sha256 = "d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-glib-1.6.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-611.el9.aarch64", + sha256 = "bbfb330afff55f27f749e9f8206e5234c9f78a47719f1685c9214a4d22d6ef50", + urls = ["https://storage.googleapis.com/builddeps/bbfb330afff55f27f749e9f8206e5234c9f78a47719f1685c9214a4d22d6ef50"], +) + +rpm( + name = "kernel-headers-0__5.14.0-611.el9.s390x", + sha256 = "7d4bb2984b2d7de5a788945048906fa52624a151d6af18d66e0c9c7333f2456c", + urls = ["https://storage.googleapis.com/builddeps/7d4bb2984b2d7de5a788945048906fa52624a151d6af18d66e0c9c7333f2456c"], +) + +rpm( + name = "kernel-headers-0__5.14.0-611.el9.x86_64", + sha256 = "a95df6688cdc6d5b8991f930cca8d42ed3431393847a300aeba305ff5e0f4cef", + urls = ["https://storage.googleapis.com/builddeps/a95df6688cdc6d5b8991f930cca8d42ed3431393847a300aeba305ff5e0f4cef"], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.aarch64", + sha256 = "5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/keyutils-libs-1.6.3-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.s390x", + sha256 = "954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/keyutils-libs-1.6.3-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.x86_64", + sha256 = "aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/keyutils-libs-1.6.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + ], +) + +rpm( + name = "kmod-libs-0__28-10.el9.x86_64", + sha256 = "79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.aarch64", + sha256 = "68bd119a65b2d37388623c0e4a0a717b74787e1243244c8ffa0a448f42718ee4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/kmod-libs-28-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/68bd119a65b2d37388623c0e4a0a717b74787e1243244c8ffa0a448f42718ee4", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.s390x", + sha256 = "e04b90f099224b2cb1dd28df4ff45aaa1982d26b2e2f04cb7bdcdf9b5a1306c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/kmod-libs-28-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e04b90f099224b2cb1dd28df4ff45aaa1982d26b2e2f04cb7bdcdf9b5a1306c4", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.x86_64", + sha256 = "29d2fd267498f3e12d420a3d867483d32ce97d544327de983872f8ee89ec02b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/29d2fd267498f3e12d420a3d867483d32ce97d544327de983872f8ee89ec02b3", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-6.el9.x86_64", + sha256 = "50edf4089d0480048aeba2bfd736b93aa89dc25735cd02e80bad57e562e1e001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/50edf4089d0480048aeba2bfd736b93aa89dc25735cd02e80bad57e562e1e001", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.aarch64", + sha256 = "7671147fe79cb1fa2fd011cee451be325a8e4aca6290ff67eb9e4d01f0c1edfd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/krb5-libs-1.21.1-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7671147fe79cb1fa2fd011cee451be325a8e4aca6290ff67eb9e4d01f0c1edfd", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.s390x", + sha256 = "ea2d05d119e5b9072dd4c58d74079accfd24bae196d012e0de105ab3e0bcc892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/krb5-libs-1.21.1-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ea2d05d119e5b9072dd4c58d74079accfd24bae196d012e0de105ab3e0bcc892", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.x86_64", + sha256 = "d5d3473637d3453c3216b1f14fef500e10bd8158c99bbadb48b788b88d92786f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5d3473637d3453c3216b1f14fef500e10bd8158c99bbadb48b788b88d92786f", + ], +) + +rpm( + name = "less-0__590-5.el9.x86_64", + sha256 = "46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + ], +) + +rpm( + name = "less-0__590-6.el9.s390x", + sha256 = "0f83cc72b28298a902ac58ab5e0a0dfb092a9a218a00f5baaa45f07ec0fbc09d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/less-590-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0f83cc72b28298a902ac58ab5e0a0dfb092a9a218a00f5baaa45f07ec0fbc09d", + ], +) + +rpm( + name = "less-0__590-6.el9.x86_64", + sha256 = "c6d44d94d48746cb6a909c5a929f69c86db83aef59635cbabfc5a4a176a388a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c6d44d94d48746cb6a909c5a929f69c86db83aef59635cbabfc5a4a176a388a0", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.aarch64", + sha256 = "90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libacl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.s390x", + sha256 = "bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libacl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.x86_64", + sha256 = "60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libacl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.aarch64", + sha256 = "1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libaio-0.3.111-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.s390x", + sha256 = "b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libaio-0.3.111-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.x86_64", + sha256 = "7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libaio-0.3.111-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + ], +) + +rpm( + name = "libarchive-0__3.5.3-4.el9.x86_64", + sha256 = "4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.aarch64", + sha256 = "737b5493221fbebb7d6578de00ccf9ee29a2685ef6cb6bc4705a4680384b63ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libarchive-3.5.3-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/737b5493221fbebb7d6578de00ccf9ee29a2685ef6cb6bc4705a4680384b63ae", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.s390x", + sha256 = "343b64738033626728e908dc8c3e186c64fb9eb1752f35a2cf5fefa5156fa593", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libarchive-3.5.3-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/343b64738033626728e908dc8c3e186c64fb9eb1752f35a2cf5fefa5156fa593", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.x86_64", + sha256 = "a8f609bd9ce84d600fd4b6843c93025569cec32e3006d065a5e4323d2ff5696a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a8f609bd9ce84d600fd4b6843c93025569cec32e3006d065a5e4323d2ff5696a", + ], +) + +rpm( + name = "libasan-0__11.5.0-11.el9.aarch64", + sha256 = "16746f944b00fd5cc0854b95b25a819dd7f9e989a40ad5d97edd9838445dea15", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libasan-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/16746f944b00fd5cc0854b95b25a819dd7f9e989a40ad5d97edd9838445dea15", + ], +) + +rpm( + name = "libasan-0__11.5.0-11.el9.s390x", + sha256 = "a48848862138f5b9fe458626dbee5369046ff4761c43302a42b48d3e5355480d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libasan-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a48848862138f5b9fe458626dbee5369046ff4761c43302a42b48d3e5355480d", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.s390x", + sha256 = "56a2e5e9e6c2fde071486b174eeecec2631d3b40a6bfc036019e5cd6e590a49c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libassuan-2.5.5-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56a2e5e9e6c2fde071486b174eeecec2631d3b40a6bfc036019e5cd6e590a49c", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.x86_64", + sha256 = "3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libassuan-2.5.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + ], +) + +rpm( + name = "libatomic-0__11.5.0-11.el9.aarch64", + sha256 = "9459c323763f38fa2cfaba97c3c2f91427debc589b0fbbd5f72db275dceb09cb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libatomic-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9459c323763f38fa2cfaba97c3c2f91427debc589b0fbbd5f72db275dceb09cb", + ], +) + +rpm( + name = "libatomic-0__11.5.0-11.el9.s390x", + sha256 = "cb922cfcac8994cdb3db1966cd1c2549c8bbf2bfe0efb6c84325f5d02569b35c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libatomic-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cb922cfcac8994cdb3db1966cd1c2549c8bbf2bfe0efb6c84325f5d02569b35c", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.aarch64", + sha256 = "a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libattr-2.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.s390x", + sha256 = "c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libattr-2.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.x86_64", + sha256 = "d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libattr-2.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + ], +) + +rpm( + name = "libblkid-0__2.37.4-21.el9.aarch64", + sha256 = "ddbde77138e33d01fe88e275f351f8f31754eb26ac5665190437049e867f2b17", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libblkid-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ddbde77138e33d01fe88e275f351f8f31754eb26ac5665190437049e867f2b17", + ], +) + +rpm( + name = "libblkid-0__2.37.4-21.el9.s390x", + sha256 = "28b355ddec6b299b6526c80032cd3f9a74fbf7f965bb3c425352a7e616cab287", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libblkid-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/28b355ddec6b299b6526c80032cd3f9a74fbf7f965bb3c425352a7e616cab287", + ], +) + +rpm( + name = "libblkid-0__2.37.4-21.el9.x86_64", + sha256 = "2433f8829f894c7c5ba0639eb37a18a92632d4f9383551c901434b4353f96fc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libblkid-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2433f8829f894c7c5ba0639eb37a18a92632d4f9383551c901434b4353f96fc4", + ], +) + +rpm( + name = "libbpf-2__1.5.0-1.el9.x86_64", + sha256 = "5280ff8fe8a1f217b54abeed8b357c4c3fd47fbcfa928483806effac723accba", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.5.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5280ff8fe8a1f217b54abeed8b357c4c3fd47fbcfa928483806effac723accba", + ], +) + +rpm( + name = "libbpf-2__1.5.0-2.el9.aarch64", + sha256 = "eede04a7e26feb286a3a17cab7aaf01cdf6ddae9378cff982f199b79eeb42264", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libbpf-1.5.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eede04a7e26feb286a3a17cab7aaf01cdf6ddae9378cff982f199b79eeb42264", + ], +) + +rpm( + name = "libbpf-2__1.5.0-2.el9.s390x", + sha256 = "380207ccf32b96564ae6e12154a502decb48503a691ba6375ae62adfb5cd31fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbpf-1.5.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/380207ccf32b96564ae6e12154a502decb48503a691ba6375ae62adfb5cd31fa", + ], +) + +rpm( + name = "libbpf-2__1.5.0-2.el9.x86_64", + sha256 = "54a493d2ab456cf6d6d4bb77b3aae748f2089641470bbfcbb810ddb62f978df4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.5.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/54a493d2ab456cf6d6d4bb77b3aae748f2089641470bbfcbb810ddb62f978df4", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-7.el9.s390x", + sha256 = "72b4b9ce9df8c2e4fa515af25a8ea3f3cf8ee92572226551c2852b03392c5b63", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbrotli-1.0.9-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/72b4b9ce9df8c2e4fa515af25a8ea3f3cf8ee92572226551c2852b03392c5b63", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-7.el9.x86_64", + sha256 = "5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbrotli-1.0.9-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.aarch64", + sha256 = "acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.s390x", + sha256 = "a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.x86_64", + sha256 = "356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.aarch64", + sha256 = "7159fe4c1e6be9c8324632bfabcbc86ad8b7cb5105acb0b8a5c35774c93470f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-2.48-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7159fe4c1e6be9c8324632bfabcbc86ad8b7cb5105acb0b8a5c35774c93470f2", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.s390x", + sha256 = "2883f350016ef87b8f6aa33966023cb0f3c789bdcb36374037fc94096ee61bf7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-2.48-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2883f350016ef87b8f6aa33966023cb0f3c789bdcb36374037fc94096ee61bf7", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.x86_64", + sha256 = "bda5d981249ac16603228a4f544a15a140e1eed105ab1206da6bef9705cddee7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bda5d981249ac16603228a4f544a15a140e1eed105ab1206da6bef9705cddee7", + ], +) + +rpm( + name = "libcap-0__2.48-9.el9.x86_64", + sha256 = "7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.aarch64", + sha256 = "1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-ng-0.8.2-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.s390x", + sha256 = "9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-ng-0.8.2-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.x86_64", + sha256 = "62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-ng-0.8.2-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-7.el9.x86_64", + sha256 = "d11e18dbfddd56538c476851d98bd96795f34045e14ebe7b3285f225c4b4b189", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d11e18dbfddd56538c476851d98bd96795f34045e14ebe7b3285f225c4b4b189", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.aarch64", + sha256 = "7bf194e4f69e548566ff21b178ae1f47d5e00f064bfa492616e4dd42f812f2a7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcom_err-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7bf194e4f69e548566ff21b178ae1f47d5e00f064bfa492616e4dd42f812f2a7", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.s390x", + sha256 = "b8aa8922757718f85c31dfc7c333434e576a52f9425e91f51db8fb082661c3ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcom_err-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8aa8922757718f85c31dfc7c333434e576a52f9425e91f51db8fb082661c3ff", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.x86_64", + sha256 = "ef43794f39d49b69e12506722e432a497e7f96038e26cab2c34476aad4b3d413", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef43794f39d49b69e12506722e432a497e7f96038e26cab2c34476aad4b3d413", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.s390x", + sha256 = "6000e568152331fe40da9b244e579aa22c404bed59b4f33b08de2c962f5849b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libconfig-1.7.2-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6000e568152331fe40da9b244e579aa22c404bed59b4f33b08de2c962f5849b4", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.x86_64", + sha256 = "e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libconfig-1.7.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-34.el9.aarch64", + sha256 = "7c70d38897efd1ff96122507d361cf85c21c3e2ee1840437b4627ee55d45f3ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcurl-minimal-7.76.1-34.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7c70d38897efd1ff96122507d361cf85c21c3e2ee1840437b4627ee55d45f3ba", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-34.el9.s390x", + sha256 = "6636cd67e28fb2c2da58573dcdcdbfc080a6bf20fb6254a4fe51edf2bbab8826", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcurl-minimal-7.76.1-34.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6636cd67e28fb2c2da58573dcdcdbfc080a6bf20fb6254a4fe51edf2bbab8826", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-34.el9.x86_64", + sha256 = "a30f4b1174d70515777eba3096c2fd9505f52c4a1ed3d298ef5d7028d00a6cc3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-34.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a30f4b1174d70515777eba3096c2fd9505f52c4a1ed3d298ef5d7028d00a6cc3", + ], +) + +rpm( + name = "libdb-0__5.3.28-55.el9.x86_64", + sha256 = "e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.aarch64", + sha256 = "32cfcb3dbd040c206ead6aae6bb3378246af95ab2c7ba18a9db7ec0cec649f34", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libdb-5.3.28-57.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/32cfcb3dbd040c206ead6aae6bb3378246af95ab2c7ba18a9db7ec0cec649f34", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.s390x", + sha256 = "5bae96e362fb4731b841f84d22b8ec876eeca2519404625afc51b5ae9fcd6326", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libdb-5.3.28-57.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5bae96e362fb4731b841f84d22b8ec876eeca2519404625afc51b5ae9fcd6326", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.x86_64", + sha256 = "17f7fd8c15436826da5ac9d0428ecb83feec18c01b6c5057ab9b85ab97314c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-57.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/17f7fd8c15436826da5ac9d0428ecb83feec18c01b6c5057ab9b85ab97314c96", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.aarch64", + sha256 = "c221c71bfd8f6692e305a4e0c0025c4789ab04661c11a1a18c34c3f873f1276f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libeconf-0.4.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c221c71bfd8f6692e305a4e0c0025c4789ab04661c11a1a18c34c3f873f1276f", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.s390x", + sha256 = "1ee2d8e7b48a5e9616c1f7a5b019e0aa054a80b5962d972104d78d095b2e926d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libeconf-0.4.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1ee2d8e7b48a5e9616c1f7a5b019e0aa054a80b5962d972104d78d095b2e926d", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.x86_64", + sha256 = "ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libeconf-0.4.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.aarch64", + sha256 = "abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libevent-2.1.12-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.s390x", + sha256 = "5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libevent-2.1.12-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.x86_64", + sha256 = "5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libevent-2.1.12-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-21.el9.aarch64", + sha256 = "e8c908711f60ab15256f368ee1a5d9b4570e2c19139ec52bb73876d379f98f7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libfdisk-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e8c908711f60ab15256f368ee1a5d9b4570e2c19139ec52bb73876d379f98f7a", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-21.el9.s390x", + sha256 = "67f5d8d46714139b75cd84941201e0fa0e1eebd0b26762accfb11d6b4c8b51bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libfdisk-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67f5d8d46714139b75cd84941201e0fa0e1eebd0b26762accfb11d6b4c8b51bb", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-21.el9.x86_64", + sha256 = "9a594c51e3bf09cb5016485ee2f143de6db960ff1c7e135c0097f59fa51b2edb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libfdisk-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9a594c51e3bf09cb5016485ee2f143de6db960ff1c7e135c0097f59fa51b2edb", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.aarch64", + sha256 = "19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libfdt-1.6.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.s390x", + sha256 = "fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libfdt-1.6.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.x86_64", + sha256 = "a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfdt-1.6.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.aarch64", + sha256 = "da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libffi-3.4.2-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.s390x", + sha256 = "25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libffi-3.4.2-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.x86_64", + sha256 = "110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libffi-3.4.2-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + ], +) + +rpm( + name = "libgcc-0__11.5.0-11.el9.aarch64", + sha256 = "15a092304284044140344654776281f26ebb8a11d252de71fed7e49bc9b51663", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcc-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/15a092304284044140344654776281f26ebb8a11d252de71fed7e49bc9b51663", + ], +) + +rpm( + name = "libgcc-0__11.5.0-11.el9.s390x", + sha256 = "316a66f4f9c655bae9bed5e96ce5cdb436e171f9b69067512f69acbc4b278e7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcc-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/316a66f4f9c655bae9bed5e96ce5cdb436e171f9b69067512f69acbc4b278e7c", + ], +) + +rpm( + name = "libgcc-0__11.5.0-11.el9.x86_64", + sha256 = "405ee42b5de5be323e9e95be3ef806f22ee6d375e15158eb7819895cb163594f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/405ee42b5de5be323e9e95be3ef806f22ee6d375e15158eb7819895cb163594f", + ], +) + +rpm( + name = "libgcc-0__11.5.0-5.el9.x86_64", + sha256 = "442c065a815212ac21760ff9f0bd93e9f5d5972925d9e987a421cbf6ebba41d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/442c065a815212ac21760ff9f0bd93e9f5d5972925d9e987a421cbf6ebba41d2", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.aarch64", + sha256 = "932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcrypt-1.10.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.s390x", + sha256 = "cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcrypt-1.10.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.x86_64", + sha256 = "0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcrypt-1.10.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + ], +) + +rpm( + name = "libgomp-0__11.5.0-11.el9.aarch64", + sha256 = "547f30984df19fa2b1474d879fbd7aaace72edf437ca1abefc0a18870695c652", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgomp-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/547f30984df19fa2b1474d879fbd7aaace72edf437ca1abefc0a18870695c652", + ], +) + +rpm( + name = "libgomp-0__11.5.0-11.el9.s390x", + sha256 = "807b5bcccd97aada0869e52b946fd93a9e05e00d271fefb0caeaa02492908b4b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgomp-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/807b5bcccd97aada0869e52b946fd93a9e05e00d271fefb0caeaa02492908b4b", + ], +) + +rpm( + name = "libgomp-0__11.5.0-11.el9.x86_64", + sha256 = "0b6631f8c2ad4b05e9412ff685843c27bedb59e0f6505df41f80dade96aee7c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0b6631f8c2ad4b05e9412ff685843c27bedb59e0f6505df41f80dade96aee7c9", + ], +) + +rpm( + name = "libgomp-0__11.5.0-5.el9.x86_64", + sha256 = "0158d5640d1f4b3841b681fa26a17361c56d7b1231e64eb163e3d75155913053", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0158d5640d1f4b3841b681fa26a17361c56d7b1231e64eb163e3d75155913053", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.aarch64", + sha256 = "ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgpg-error-1.42-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.s390x", + sha256 = "655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgpg-error-1.42-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.x86_64", + sha256 = "a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgpg-error-1.42-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-3.el9.x86_64", + sha256 = "1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86", + urls = ["https://storage.googleapis.com/builddeps/1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86"], +) + +rpm( + name = "libguestfs-1__1.54.0-9.el9.s390x", + sha256 = "612deb549f07c32689421856afa195f003ec9fb2ac9161dfa8b4f631348cdaef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libguestfs-1.54.0-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/612deb549f07c32689421856afa195f003ec9fb2ac9161dfa8b4f631348cdaef", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-9.el9.x86_64", + sha256 = "262f8449b469e08285e008ac903a02da4587560e3c3c11f695f0abc4870ee627", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libguestfs-1.54.0-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/262f8449b469e08285e008ac903a02da4587560e3c3c11f695f0abc4870ee627", + ], +) + +rpm( + name = "libibverbs-0__54.0-1.el9.x86_64", + sha256 = "b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + ], +) + +rpm( + name = "libibverbs-0__57.0-1.el9.aarch64", + sha256 = "7327af9842e18e1e2cfc84b2954f16126cb6e97a53301f0c0ed20434ac403dd2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libibverbs-57.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7327af9842e18e1e2cfc84b2954f16126cb6e97a53301f0c0ed20434ac403dd2", + ], +) + +rpm( + name = "libibverbs-0__57.0-1.el9.s390x", + sha256 = "fa103d8e9699a79e840a7cb993aff7bd33fec192ae53e1b717c33b6626a8c81d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libibverbs-57.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fa103d8e9699a79e840a7cb993aff7bd33fec192ae53e1b717c33b6626a8c81d", + ], +) + +rpm( + name = "libibverbs-0__57.0-1.el9.x86_64", + sha256 = "3a5f96f34c362f458d3430061d88be0d242a6f524cf5c09fe1386f2b4367c06b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-57.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a5f96f34c362f458d3430061d88be0d242a6f524cf5c09fe1386f2b4367c06b", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.aarch64", + sha256 = "6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libidn2-2.3.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.s390x", + sha256 = "716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libidn2-2.3.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.x86_64", + sha256 = "f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libidn2-2.3.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.aarch64", + sha256 = "1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisoburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.s390x", + sha256 = "0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisoburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.x86_64", + sha256 = "ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisoburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.aarch64", + sha256 = "0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisofs-1.5.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.s390x", + sha256 = "d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisofs-1.5.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.x86_64", + sha256 = "78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisofs-1.5.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.s390x", + sha256 = "10e17f1f886f90259f915e855389f3e3852fddd52be35110ebe0d0f4b9b4f51a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libksba-1.5.1-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/10e17f1f886f90259f915e855389f3e3852fddd52be35110ebe0d0f4b9b4f51a", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.x86_64", + sha256 = "8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libksba-1.5.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.aarch64", + sha256 = "c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmnl-1.0.4-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.s390x", + sha256 = "344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmnl-1.0.4-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.x86_64", + sha256 = "e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmnl-1.0.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + ], +) + +rpm( + name = "libmount-0__2.37.4-21.el9.aarch64", + sha256 = "84c61be8eee5f148ece4b17cab7b9774bd4e5e51377ff459c278dadc99d733d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmount-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/84c61be8eee5f148ece4b17cab7b9774bd4e5e51377ff459c278dadc99d733d6", + ], +) + +rpm( + name = "libmount-0__2.37.4-21.el9.s390x", + sha256 = "d7f982570169708f7ff3ba976dd3df4c64cf1d9a197f5da98d7dae2e9f5f2cb2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmount-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d7f982570169708f7ff3ba976dd3df4c64cf1d9a197f5da98d7dae2e9f5f2cb2", + ], +) + +rpm( + name = "libmount-0__2.37.4-21.el9.x86_64", + sha256 = "d8bfc70d1a9a594569c8c95bda682804a20bb4ee602db3efa7b6e76d289ecc66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmount-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8bfc70d1a9a594569c8c95bda682804a20bb4ee602db3efa7b6e76d289ecc66", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.aarch64", + sha256 = "489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libmpc-1.2.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.s390x", + sha256 = "3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libmpc-1.2.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.x86_64", + sha256 = "207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmpc-1.2.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + ], +) + +rpm( + name = "libnbd-0__1.20.3-1.el9.x86_64", + sha256 = "4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.aarch64", + sha256 = "7c9bb6872b93d95b2a2bf729793b50848cde216089293010197471146d23d9a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libnbd-1.20.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7c9bb6872b93d95b2a2bf729793b50848cde216089293010197471146d23d9a4", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.s390x", + sha256 = "d73945914b3ea835369f64416cf111fcf527775d70e35109f2a270763328e6ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libnbd-1.20.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d73945914b3ea835369f64416cf111fcf527775d70e35109f2a270763328e6ce", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.x86_64", + sha256 = "d74d51b389dcf44bd2e10e76085dc41db925debee2ce33b721c554a9dd1f40af", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d74d51b389dcf44bd2e10e76085dc41db925debee2ce33b721c554a9dd1f40af", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.aarch64", + sha256 = "6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.s390x", + sha256 = "803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.x86_64", + sha256 = "f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.aarch64", + sha256 = "8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.1-23.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.s390x", + sha256 = "1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnfnetlink-1.0.1-23.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.x86_64", + sha256 = "c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.aarch64", + sha256 = "59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnftnl-1.2.6-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.s390x", + sha256 = "1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnftnl-1.2.6-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.x86_64", + sha256 = "45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnftnl-1.2.6-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.aarch64", + sha256 = "b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnghttp2-1.43.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.s390x", + sha256 = "6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnghttp2-1.43.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.x86_64", + sha256 = "fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnghttp2-1.43.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.aarch64", + sha256 = "931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnl3-3.11.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.s390x", + sha256 = "af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnl3-3.11.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.x86_64", + sha256 = "8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnl3-3.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.s390x", + sha256 = "f7704e01f4ab1315cf32f5e2f8d2bb33411e403fdbd4398ea1d76eb4f90550a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libosinfo-1.10.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7704e01f4ab1315cf32f5e2f8d2bb33411e403fdbd4398ea1d76eb4f90550a1", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.x86_64", + sha256 = "ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libosinfo-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.aarch64", + sha256 = "c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpcap-1.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.s390x", + sha256 = "ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpcap-1.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.x86_64", + sha256 = "c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpcap-1.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.s390x", + sha256 = "56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + ], +) + +rpm( + name = "libpmem-0__1.12.1-1.el9.x86_64", + sha256 = "5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpmem-1.12.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.aarch64", + sha256 = "99f9eca159e41e315b9fe48ec6c6d1d7a944bd5d8fc0b308aba779a6608b3777", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpng-1.6.37-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99f9eca159e41e315b9fe48ec6c6d1d7a944bd5d8fc0b308aba779a6608b3777", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.s390x", + sha256 = "add58062b5ed4b22af0c1d6d5702260b2bc7c27cd08f298e908ac40a9df2f3f7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libpng-1.6.37-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/add58062b5ed4b22af0c1d6d5702260b2bc7c27cd08f298e908ac40a9df2f3f7", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.x86_64", + sha256 = "b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpng-1.6.37-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.s390x", + sha256 = "1ce49253ec771fbeefb6fa26ae07707fe0039e7f393cf24845d88f2453b7c116", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libproxy-0.4.15-35.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1ce49253ec771fbeefb6fa26ae07707fe0039e7f393cf24845d88f2453b7c116", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.x86_64", + sha256 = "0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libproxy-0.4.15-35.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.s390x", + sha256 = "d54f8e3050d403352fe6afcf6aa34838017b2d56026625ea29f5307fc2ce173c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpsl-0.21.1-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d54f8e3050d403352fe6afcf6aa34838017b2d56026625ea29f5307fc2ce173c", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.x86_64", + sha256 = "42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpsl-0.21.1-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.aarch64", + sha256 = "3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpwquality-1.4.4-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.s390x", + sha256 = "b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpwquality-1.4.4-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.x86_64", + sha256 = "93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + ], +) + +rpm( + name = "librdmacm-0__54.0-1.el9.x86_64", + sha256 = "82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + ], +) + +rpm( + name = "librdmacm-0__57.0-1.el9.aarch64", + sha256 = "e2fe7eab05e974a945143f100d59da6c1da551f9d2b7c4cb0e6044ae7d3a3854", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/librdmacm-57.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e2fe7eab05e974a945143f100d59da6c1da551f9d2b7c4cb0e6044ae7d3a3854", + ], +) + +rpm( + name = "librdmacm-0__57.0-1.el9.x86_64", + sha256 = "4db1806c8bb261e96d3e7a02871e1c85a5333dc4e4e6b8414045d05bc8284f36", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-57.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4db1806c8bb261e96d3e7a02871e1c85a5333dc4e4e6b8414045d05bc8284f36", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.aarch64", + sha256 = "ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libseccomp-2.5.2-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.s390x", + sha256 = "1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libseccomp-2.5.2-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.x86_64", + sha256 = "d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libseccomp-2.5.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.aarch64", + sha256 = "42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.s390x", + sha256 = "16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.x86_64", + sha256 = "79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.aarch64", + sha256 = "5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-utils-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.s390x", + sha256 = "05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-utils-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.x86_64", + sha256 = "f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-utils-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.aarch64", + sha256 = "f5402c7056dc92ea2e52ad436c6eece8c18040ac77141e5f0ffe01eea209dfe7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsemanage-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f5402c7056dc92ea2e52ad436c6eece8c18040ac77141e5f0ffe01eea209dfe7", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.s390x", + sha256 = "888a4ef687c43c03324bfe3c5815810d48322478cd966b4bcb1d237a16b3a0b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsemanage-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/888a4ef687c43c03324bfe3c5815810d48322478cd966b4bcb1d237a16b3a0b0", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.x86_64", + sha256 = "3dcf6e7f2779434d9dc7aef0065c3a2977792170264a60d4324f6625bb9cd69a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsemanage-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3dcf6e7f2779434d9dc7aef0065c3a2977792170264a60d4324f6625bb9cd69a", + ], +) + +rpm( + name = "libsepol-0__3.6-2.el9.x86_64", + sha256 = "7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.aarch64", + sha256 = "2cd63ed497af8a202c79790b04362ba224b50ec7c377abb21901160e4000e07d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsepol-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2cd63ed497af8a202c79790b04362ba224b50ec7c377abb21901160e4000e07d", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.s390x", + sha256 = "c1246f8553c2aec3ca86721f8bd77fab4f4fcd22527bb6a6e494b4046ee17461", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsepol-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c1246f8553c2aec3ca86721f8bd77fab4f4fcd22527bb6a6e494b4046ee17461", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.x86_64", + sha256 = "6d3d16c3121ccf989f8a123812e524cb1fc098fb01ec9f1c6327544e85aaf84d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6d3d16c3121ccf989f8a123812e524cb1fc098fb01ec9f1c6327544e85aaf84d", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.aarch64", + sha256 = "097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsigsegv-2.13-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.s390x", + sha256 = "730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsigsegv-2.13-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.x86_64", + sha256 = "931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsigsegv-2.13-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.aarch64", + sha256 = "52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libslirp-4.4.0-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.s390x", + sha256 = "d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libslirp-4.4.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.x86_64", + sha256 = "aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libslirp-4.4.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-21.el9.aarch64", + sha256 = "022b23b2500972666db40ab9d5278ca704c54600e8443dea8e327910afa5b411", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsmartcols-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/022b23b2500972666db40ab9d5278ca704c54600e8443dea8e327910afa5b411", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-21.el9.s390x", + sha256 = "94929db8ee7027fca21e8ac17519dfcf9366a5a7ba8c8ba627dcb5976b199036", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsmartcols-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/94929db8ee7027fca21e8ac17519dfcf9366a5a7ba8c8ba627dcb5976b199036", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-21.el9.x86_64", + sha256 = "30e2a071ad6f1939f14fc89c827d61ccb28a6cbf6e443db39e8019a18c7e18d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30e2a071ad6f1939f14fc89c827d61ccb28a6cbf6e443db39e8019a18c7e18d4", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.s390x", + sha256 = "5c157ebfd258aaa833701f0e48d2a8e54064d5e9fbcdae9f4e426ef84efa1a75", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libsoup-2.72.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c157ebfd258aaa833701f0e48d2a8e54064d5e9fbcdae9f4e426ef84efa1a75", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.x86_64", + sha256 = "e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsoup-2.72.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.aarch64", + sha256 = "52ba79e72eb6feef925cd94e1989b879750a33a5f926cc48f576368211799796", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libss-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52ba79e72eb6feef925cd94e1989b879750a33a5f926cc48f576368211799796", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.s390x", + sha256 = "95a10e09d72daebb2cdae054cadd8e9ef3c3689dade4236723e8e69fdd674d3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libss-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/95a10e09d72daebb2cdae054cadd8e9ef3c3689dade4236723e8e69fdd674d3a", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.x86_64", + sha256 = "095ae726757b2e9a0c17f4391b9667210c84f4fa72dbd65f006db78e47f3915d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libss-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/095ae726757b2e9a0c17f4391b9667210c84f4fa72dbd65f006db78e47f3915d", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.aarch64", + sha256 = "81d3f1d8489d3330065c24604c0e994cb9f8aa653e6859512beeabaa64b8f6c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-0.10.4-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/81d3f1d8489d3330065c24604c0e994cb9f8aa653e6859512beeabaa64b8f6c3", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.s390x", + sha256 = "dac9ce73baa7946783ef8a277a8a28e6d8f6ef3375126d47cf57bcffd29e77a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-0.10.4-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dac9ce73baa7946783ef8a277a8a28e6d8f6ef3375126d47cf57bcffd29e77a4", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.x86_64", + sha256 = "08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-0.10.4-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.aarch64", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.s390x", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.x86_64", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.7-4.el9.aarch64", + sha256 = "15f487e8347e80200c8db61382335d0c7c68faefa1885f6c6f1184048a77b46f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_idmap-2.9.7-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/15f487e8347e80200c8db61382335d0c7c68faefa1885f6c6f1184048a77b46f", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.7-4.el9.s390x", + sha256 = "99c0c35b0fe3f80d6eb4e4cc123bac33f76fd0b972794a796ebecec09545df26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_idmap-2.9.7-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/99c0c35b0fe3f80d6eb4e4cc123bac33f76fd0b972794a796ebecec09545df26", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.7-4.el9.x86_64", + sha256 = "0d49fbbcfb125f8e737aff2136e03b899535a0c0cc696f359d009a509e2d067e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_idmap-2.9.7-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0d49fbbcfb125f8e737aff2136e03b899535a0c0cc696f359d009a509e2d067e", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.7-4.el9.aarch64", + sha256 = "4c7ebb72cf299cf837d57b2523712c3fda9d50787b6fda7ee51be4c40aa18e08", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.9.7-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4c7ebb72cf299cf837d57b2523712c3fda9d50787b6fda7ee51be4c40aa18e08", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.7-4.el9.s390x", + sha256 = "b0485f309200942e0e0b534691966b9207fdaded61578d1823c6139047608491", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_nss_idmap-2.9.7-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b0485f309200942e0e0b534691966b9207fdaded61578d1823c6139047608491", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.7-4.el9.x86_64", + sha256 = "307122e0b2660ccd00f7cacce4c32ed41f0a1b97be0a4587e788e951b5066199", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.9.7-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/307122e0b2660ccd00f7cacce4c32ed41f0a1b97be0a4587e788e951b5066199", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-11.el9.aarch64", + sha256 = "902d9be36b2954dae978a7f78437a1d69ead7c5a5e5e8d50c0bf187bf7aa6e8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libstdc++-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/902d9be36b2954dae978a7f78437a1d69ead7c5a5e5e8d50c0bf187bf7aa6e8e", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-11.el9.s390x", + sha256 = "176dd19894e427809c56d07ccb0a1f32392993a7fe6ef80ada55bbbe7132d1db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libstdc++-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/176dd19894e427809c56d07ccb0a1f32392993a7fe6ef80ada55bbbe7132d1db", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-11.el9.x86_64", + sha256 = "b17a28146ed5785049f59c22c7c93839f3d8f9c0ea860d8a5657c2d006c09718", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b17a28146ed5785049f59c22c7c93839f3d8f9c0ea860d8a5657c2d006c09718", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-5.el9.x86_64", + sha256 = "6628a0027a113c8687d0cd52ed5725ee6cb1ee2a02897349289d683fc6453223", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6628a0027a113c8687d0cd52ed5725ee6cb1ee2a02897349289d683fc6453223", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.aarch64", + sha256 = "7b99e8f1081ba2c511021b666b9f8176abb31168920e86c392cd45299f400b59", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtasn1-4.16.0-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b99e8f1081ba2c511021b666b9f8176abb31168920e86c392cd45299f400b59", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.s390x", + sha256 = "0ebbc12c3ae3f270efef2965bb77d6e806733eb07505ec7a33468f0fd72360bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtasn1-4.16.0-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0ebbc12c3ae3f270efef2965bb77d6e806733eb07505ec7a33468f0fd72360bd", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.x86_64", + sha256 = "addd155d4abc41529d7e8588f442e50a87db3a1314bd2162fbb4950d898a2e28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtasn1-4.16.0-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/addd155d4abc41529d7e8588f442e50a87db3a1314bd2162fbb4950d898a2e28", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.aarch64", + sha256 = "a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtirpc-1.3.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.s390x", + sha256 = "59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtirpc-1.3.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.x86_64", + sha256 = "b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtirpc-1.3.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.s390x", + sha256 = "548a2de100fb988854c4e3e814314eb03c8645f7a6e9f658b61adbed81c8251e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtool-ltdl-2.4.6-46.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/548a2de100fb988854c4e3e814314eb03c8645f7a6e9f658b61adbed81c8251e", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.x86_64", + sha256 = "a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtool-ltdl-2.4.6-46.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.aarch64", + sha256 = "299e63f64347c8738e7d86d0c3410362d98866d68617b0f6f9247295347d89f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libtpms-0.9.6-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/299e63f64347c8738e7d86d0c3410362d98866d68617b0f6f9247295347d89f2", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.s390x", + sha256 = "0ec765f3f074c28652b8aabb010d4e64b4d2b1cb254c25e893be2af828c98687", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libtpms-0.9.6-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0ec765f3f074c28652b8aabb010d4e64b4d2b1cb254c25e893be2af828c98687", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.x86_64", + sha256 = "e5863ebf4aad8570d7cd58a65b854de53df4ca366244bb65521c9fb96099f1da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtpms-0.9.6-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5863ebf4aad8570d7cd58a65b854de53df4ca366244bb65521c9fb96099f1da", + ], +) + +rpm( + name = "libubsan-0__11.5.0-11.el9.aarch64", + sha256 = "0973db486af78d4f95b2b9958d1bb55e1e88cfcfefd071ab9fa2d8263c805ce4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libubsan-11.5.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0973db486af78d4f95b2b9958d1bb55e1e88cfcfefd071ab9fa2d8263c805ce4", + ], +) + +rpm( + name = "libubsan-0__11.5.0-11.el9.s390x", + sha256 = "d23d1fc7228d7742b917d41ffb51a85a554d10f37411b556577dcaa8feab01d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libubsan-11.5.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d23d1fc7228d7742b917d41ffb51a85a554d10f37411b556577dcaa8feab01d8", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.aarch64", + sha256 = "09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libunistring-0.9.10-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.s390x", + sha256 = "029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libunistring-0.9.10-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.x86_64", + sha256 = "11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libunistring-0.9.10-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.aarch64", + sha256 = "12f91bd14e1eb7e2b37783561c1a0658d85c7ee2a9259391ed15e01bf4186649", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/liburing-2.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12f91bd14e1eb7e2b37783561c1a0658d85c7ee2a9259391ed15e01bf4186649", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.s390x", + sha256 = "f45d4fcccfd217d5aa394a317d4d2645b79edb50cd7ad01dc14ad0d1b1bdb2f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/liburing-2.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f45d4fcccfd217d5aa394a317d4d2645b79edb50cd7ad01dc14ad0d1b1bdb2f0", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.x86_64", + sha256 = "12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/liburing-2.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.aarch64", + sha256 = "f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libusbx-1.0.26-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.s390x", + sha256 = "d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libusbx-1.0.26-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.x86_64", + sha256 = "bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libusbx-1.0.26-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.aarch64", + sha256 = "65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libutempter-1.2.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.s390x", + sha256 = "6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libutempter-1.2.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.x86_64", + sha256 = "fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libutempter-1.2.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + ], +) + +rpm( + name = "libuuid-0__2.37.4-21.el9.aarch64", + sha256 = "9ef80033bf2bbba7aca3a8f789a48a7597f2113271c6da9d9f71bca213aae259", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libuuid-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9ef80033bf2bbba7aca3a8f789a48a7597f2113271c6da9d9f71bca213aae259", + ], +) + +rpm( + name = "libuuid-0__2.37.4-21.el9.s390x", + sha256 = "b604d6ef2f49c29d93601f6cad1ac04d83f14ec719ba0f561d6912948d6f2b56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libuuid-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b604d6ef2f49c29d93601f6cad1ac04d83f14ec719ba0f561d6912948d6f2b56", + ], +) + +rpm( + name = "libuuid-0__2.37.4-21.el9.x86_64", + sha256 = "be4793be5af11772206abe023746ec4021a8b7bc124fdc7e7cdb92b57c46d125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libuuid-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be4793be5af11772206abe023746ec4021a8b7bc124fdc7e7cdb92b57c46d125", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.aarch64", + sha256 = "1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libverto-0.3.2-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.s390x", + sha256 = "3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libverto-0.3.2-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.x86_64", + sha256 = "c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libverto-0.3.2-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + ], +) + +rpm( + name = "libvirt-client-0__10.10.0-13.el9.aarch64", + sha256 = "40ef751232331f32f16dd2905767ff0b32cca0ebfb47813ea0371a3c1ddf2699", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-client-10.10.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/40ef751232331f32f16dd2905767ff0b32cca0ebfb47813ea0371a3c1ddf2699", + ], +) + +rpm( + name = "libvirt-client-0__10.10.0-13.el9.s390x", + sha256 = "04d94d28abda653680b8fdc608212dabd3e1b4c68d11796515ebb185c5e990d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-client-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/04d94d28abda653680b8fdc608212dabd3e1b4c68d11796515ebb185c5e990d6", + ], +) + +rpm( + name = "libvirt-client-0__10.10.0-13.el9.x86_64", + sha256 = "56b926345002ba7b51c5217e00a144f0fe768675f7dc93a5d98814a529d0f949", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-client-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/56b926345002ba7b51c5217e00a144f0fe768675f7dc93a5d98814a529d0f949", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-13.el9.aarch64", + sha256 = "6e131f3c777a0c1bf89e687cb549249a1b8243eee3739ad425b6d33dd9302622", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-common-10.10.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6e131f3c777a0c1bf89e687cb549249a1b8243eee3739ad425b6d33dd9302622", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-13.el9.s390x", + sha256 = "8a364e6ffef1cba91da795fa38761eebb7b8d56ea5ce8ba84a28cd0aec686197", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-common-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8a364e6ffef1cba91da795fa38761eebb7b8d56ea5ce8ba84a28cd0aec686197", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-13.el9.x86_64", + sha256 = "70c6ba85fca29812dcae142efa5ee2007cadcc72d9d065bba0f8b25c0d4b9227", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-common-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/70c6ba85fca29812dcae142efa5ee2007cadcc72d9d065bba0f8b25c0d4b9227", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-7.el9.x86_64", + sha256 = "ce303675dd62e81a3d946c15e2938373be0988d9d64e62e620ef846a98be87af", + urls = ["https://storage.googleapis.com/builddeps/ce303675dd62e81a3d946c15e2938373be0988d9d64e62e620ef846a98be87af"], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-13.el9.aarch64", + sha256 = "7b12ad04be34565a2d01763b8d8101c7b7cce81b0a74dbb5359e4f74f3defddb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-driver-qemu-10.10.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b12ad04be34565a2d01763b8d8101c7b7cce81b0a74dbb5359e4f74f3defddb", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-13.el9.s390x", + sha256 = "8b0a0da052c3ca3d17b9f9ab05fa91746719789ef188c4dbf13887780aa426cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-qemu-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8b0a0da052c3ca3d17b9f9ab05fa91746719789ef188c4dbf13887780aa426cf", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-13.el9.x86_64", + sha256 = "576df107c4f55d316d857333147937cbcfe26c402bca415947be36fc1dc2cdf6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-qemu-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/576df107c4f55d316d857333147937cbcfe26c402bca415947be36fc1dc2cdf6", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-7.el9.x86_64", + sha256 = "13031a6b2bae44c50808b89b820e47879ef6b7884e21e2a0c0e8aba52accd0b1", + urls = ["https://storage.googleapis.com/builddeps/13031a6b2bae44c50808b89b820e47879ef6b7884e21e2a0c0e8aba52accd0b1"], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__10.10.0-13.el9.s390x", + sha256 = "8dd19607375a4b92aacbf05fe03f6fdc4443ed58b1d2b7c6e47c8da47ebe5741", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-secret-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8dd19607375a4b92aacbf05fe03f6fdc4443ed58b1d2b7c6e47c8da47ebe5741", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__10.10.0-13.el9.x86_64", + sha256 = "675391f529e4552d77ad0fca655ab84bb622d2935ae53552a0db055e2d06f6a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-secret-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/675391f529e4552d77ad0fca655ab84bb622d2935ae53552a0db055e2d06f6a1", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__10.10.0-7.el9.x86_64", + sha256 = "8d6d2229cde16e57787fd0125ca75dca31d89008446ff344d577ef3eaefcd0f3", + urls = ["https://storage.googleapis.com/builddeps/8d6d2229cde16e57787fd0125ca75dca31d89008446ff344d577ef3eaefcd0f3"], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__10.10.0-13.el9.s390x", + sha256 = "bd2f997a9832a9979631a949914a81f69d9e76ce2a596be1bcaf8b9a8b513b30", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-storage-core-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bd2f997a9832a9979631a949914a81f69d9e76ce2a596be1bcaf8b9a8b513b30", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__10.10.0-13.el9.x86_64", + sha256 = "dd93b98f8f66eeab93d7cd5527b0f253471174db51f74106099187b85514fbf0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-storage-core-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd93b98f8f66eeab93d7cd5527b0f253471174db51f74106099187b85514fbf0", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__10.10.0-7.el9.x86_64", + sha256 = "a95615f05b0ca4349c571b5a25c2e7151ae7a2d6e7205b5e5c3be26c89a98067", + urls = ["https://storage.googleapis.com/builddeps/a95615f05b0ca4349c571b5a25c2e7151ae7a2d6e7205b5e5c3be26c89a98067"], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-13.el9.aarch64", + sha256 = "95bb112d12bdb61fc1693610c4148699c154b2601f5dda61491a1f242f749ba2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-log-10.10.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/95bb112d12bdb61fc1693610c4148699c154b2601f5dda61491a1f242f749ba2", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-13.el9.s390x", + sha256 = "8096e3a5998474b4082f668a9858fbf8193d4638d8fc5137bbfe1bceace7e0a7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-log-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8096e3a5998474b4082f668a9858fbf8193d4638d8fc5137bbfe1bceace7e0a7", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-13.el9.x86_64", + sha256 = "641753baa06e7894b58e95f6a6036e2f243edf4c8c25cf67fbfc43013b2bea3c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-log-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/641753baa06e7894b58e95f6a6036e2f243edf4c8c25cf67fbfc43013b2bea3c", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-7.el9.x86_64", + sha256 = "7fa94e83fcae83614c5c4c95a92f4cb3f0065d8971f4a4025c9fd262e68cddff", + urls = ["https://storage.googleapis.com/builddeps/7fa94e83fcae83614c5c4c95a92f4cb3f0065d8971f4a4025c9fd262e68cddff"], +) + +rpm( + name = "libvirt-devel-0__10.10.0-13.el9.aarch64", + sha256 = "eacbe6b2bf1642fe798f6916fd1cbd1c371b09bf229d59e68fc1fe8806117e12", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libvirt-devel-10.10.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eacbe6b2bf1642fe798f6916fd1cbd1c371b09bf229d59e68fc1fe8806117e12", + ], +) + +rpm( + name = "libvirt-devel-0__10.10.0-13.el9.s390x", + sha256 = "c2ee97220ea918c34ada85dfddc7535cb296fc3e2697c649cc764d593d281fb4", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libvirt-devel-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c2ee97220ea918c34ada85dfddc7535cb296fc3e2697c649cc764d593d281fb4", + ], +) + +rpm( + name = "libvirt-devel-0__10.10.0-13.el9.x86_64", + sha256 = "6d29b2fa42d3f07704c0556b3f0ed72253ddb273e183b7e8778d640e66e89f55", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libvirt-devel-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6d29b2fa42d3f07704c0556b3f0ed72253ddb273e183b7e8778d640e66e89f55", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-13.el9.aarch64", + sha256 = "ab827dbe53e0cb0ae5bad881cd8164f2d95aa23bdd8498760d3c1d08cb912144", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-libs-10.10.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ab827dbe53e0cb0ae5bad881cd8164f2d95aa23bdd8498760d3c1d08cb912144", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-13.el9.s390x", + sha256 = "7d169dbc46a99050ea85bb68133e37dc2aad07e8bfd4018f666a4477b8ecacf1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-libs-10.10.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7d169dbc46a99050ea85bb68133e37dc2aad07e8bfd4018f666a4477b8ecacf1", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-13.el9.x86_64", + sha256 = "16bfc41c7df521e374cdf140aec9e0a6b3fdb49b085c8c71f5333e6427f968cd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-libs-10.10.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/16bfc41c7df521e374cdf140aec9e0a6b3fdb49b085c8c71f5333e6427f968cd", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-7.el9.x86_64", + sha256 = "72e64da467f4afbff2c96b6e46c779fa3abfaba2ddaf85ad0de6087c3d5ccc39", + urls = ["https://storage.googleapis.com/builddeps/72e64da467f4afbff2c96b6e46c779fa3abfaba2ddaf85ad0de6087c3d5ccc39"], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.aarch64", + sha256 = "f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxcrypt-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.s390x", + sha256 = "dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxcrypt-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.x86_64", + sha256 = "97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxcrypt-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.aarch64", + sha256 = "4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.s390x", + sha256 = "bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxcrypt-devel-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.x86_64", + sha256 = "162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.aarch64", + sha256 = "34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libxcrypt-static-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.s390x", + sha256 = "32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libxcrypt-static-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.x86_64", + sha256 = "251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxcrypt-static-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + ], +) + +rpm( + name = "libxml2-0__2.9.13-12.el9.aarch64", + sha256 = "01ebae89e76e7d1b6a6604a6c7d24f32e396766ac6252a7e62ff355dd7728cf2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxml2-2.9.13-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01ebae89e76e7d1b6a6604a6c7d24f32e396766ac6252a7e62ff355dd7728cf2", + ], +) + +rpm( + name = "libxml2-0__2.9.13-12.el9.s390x", + sha256 = "c2324530864ef0fcf48cdd0376faea219762f5cd9132f2c21b190d6a44e880e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxml2-2.9.13-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c2324530864ef0fcf48cdd0376faea219762f5cd9132f2c21b190d6a44e880e7", + ], +) + +rpm( + name = "libxml2-0__2.9.13-12.el9.x86_64", + sha256 = "e3952c1046d38a3a2928b58202d34b0067ed67a0fad6688b8d44aae033e837bc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e3952c1046d38a3a2928b58202d34b0067ed67a0fad6688b8d44aae033e837bc", + ], +) + +rpm( + name = "libxml2-0__2.9.13-9.el9.x86_64", + sha256 = "70b74fdfab02d40caad350cf83bc676a782de69b25beb3d37dc193aaf381d9e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/70b74fdfab02d40caad350cf83bc676a782de69b25beb3d37dc193aaf381d9e0", + ], +) + +rpm( + name = "libxslt-0__1.1.34-12.el9.s390x", + sha256 = "d2a72b102141ce337c5dab51985071e29bc2e1a00008f866c1cfd265c49c5d65", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxslt-1.1.34-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2a72b102141ce337c5dab51985071e29bc2e1a00008f866c1cfd265c49c5d65", + ], +) + +rpm( + name = "libxslt-0__1.1.34-12.el9.x86_64", + sha256 = "d14a14cb0ab0be6864c26d26d2e0c580fdf50b534cf79f23cc7677d51ddb2adc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d14a14cb0ab0be6864c26d26d2e0c580fdf50b534cf79f23cc7677d51ddb2adc", + ], +) + +rpm( + name = "libxslt-0__1.1.34-9.el9.x86_64", + sha256 = "576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.aarch64", + sha256 = "49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libzstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.s390x", + sha256 = "720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libzstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.x86_64", + sha256 = "3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libzstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.aarch64", + sha256 = "bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lua-libs-5.4.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.s390x", + sha256 = "616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lua-libs-5.4.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.x86_64", + sha256 = "a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lua-libs-5.4.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.aarch64", + sha256 = "9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lz4-libs-1.9.3-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.s390x", + sha256 = "358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lz4-libs-1.9.3-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.x86_64", + sha256 = "cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lz4-libs-1.9.3-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.aarch64", + sha256 = "eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzo-2.10-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.s390x", + sha256 = "d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzo-2.10-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.x86_64", + sha256 = "7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzo-2.10-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.aarch64", + sha256 = "ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzop-1.04-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.s390x", + sha256 = "f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzop-1.04-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.x86_64", + sha256 = "ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzop-1.04-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + ], +) + +rpm( + name = "make-1__4.3-8.el9.aarch64", + sha256 = "65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/make-4.3-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + ], +) + +rpm( + name = "make-1__4.3-8.el9.s390x", + sha256 = "b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/make-4.3-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + ], +) + +rpm( + name = "make-1__4.3-8.el9.x86_64", + sha256 = "3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/make-4.3-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.aarch64", + sha256 = "f3bd8510505a53450abe05dc34edbc5313fe89a6f88d0252624205dc7bb884c7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/mpfr-4.1.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f3bd8510505a53450abe05dc34edbc5313fe89a6f88d0252624205dc7bb884c7", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.s390x", + sha256 = "7297fc0b6869453925eed12b13c17ed76379352f63e0303644bef64386b034f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/mpfr-4.1.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7297fc0b6869453925eed12b13c17ed76379352f63e0303644bef64386b034f1", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.x86_64", + sha256 = "179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/mpfr-4.1.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + ], +) + +rpm( + name = "ncurses-base-0__6.2-10.20210508.el9.x86_64", + sha256 = "00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-10.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.aarch64", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.s390x", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.x86_64", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-10.20210508.el9.x86_64", + sha256 = "f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-10.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.aarch64", + sha256 = "7b61d1dab8d4113a6ad015c083ac3053ec9db1f2503527d547ba7c741d54e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b61d1dab8d4113a6ad015c083ac3053ec9db1f2503527d547ba7c741d54e57a", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.s390x", + sha256 = "d2a6307a398b9cde8f0a83fff92c3b31f5f6c4c15f911f64ff84168a7cd060a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-libs-6.2-12.20210508.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2a6307a398b9cde8f0a83fff92c3b31f5f6c4c15f911f64ff84168a7cd060a4", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.x86_64", + sha256 = "7b396883232158d4f9a6977bcd72b5e6f7fa6bc34a51030379833d4c0d24ab6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b396883232158d4f9a6977bcd72b5e6f7fa6bc34a51030379833d4c0d24ab6f", + ], +) + +rpm( + name = "ndctl-libs-0__78-2.el9.x86_64", + sha256 = "6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ndctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.aarch64", + sha256 = "caf6dda4eaf3c7e3061ec335d45176ebfcaa72ed583df59c32c9dffc00a24ad9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nettle-3.10.1-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/caf6dda4eaf3c7e3061ec335d45176ebfcaa72ed583df59c32c9dffc00a24ad9", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.s390x", + sha256 = "d05a33e0b673bc34580c443f7d7c28b50f8b4fd77ad87ed3cef30f991d7cbf09", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nettle-3.10.1-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d05a33e0b673bc34580c443f7d7c28b50f8b4fd77ad87ed3cef30f991d7cbf09", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.x86_64", + sha256 = "aa28996450c98399099cfcc0fb722723b5821edff27cff53288e1c0298a98190", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nettle-3.10.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa28996450c98399099cfcc0fb722723b5821edff27cff53288e1c0298a98190", + ], +) + +rpm( + name = "nftables-1__1.0.9-4.el9.aarch64", + sha256 = "98d8d68631ccbf041d7069fa6c1f8ac500aae1bfdc5c899b555a684049b6ed36", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nftables-1.0.9-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/98d8d68631ccbf041d7069fa6c1f8ac500aae1bfdc5c899b555a684049b6ed36", + ], +) + +rpm( + name = "nftables-1__1.0.9-4.el9.s390x", + sha256 = "a836fbc79366f335ff13b6bdbee0e119e1bc64f910cdd64aa0d44b395e9b03c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nftables-1.0.9-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a836fbc79366f335ff13b6bdbee0e119e1bc64f910cdd64aa0d44b395e9b03c9", + ], +) + +rpm( + name = "nftables-1__1.0.9-4.el9.x86_64", + sha256 = "c75b14d92af48c07b167e3b81eab5393748f23afc497e780d8509661ab139d0b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nftables-1.0.9-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c75b14d92af48c07b167e3b81eab5393748f23afc497e780d8509661ab139d0b", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-3.el9.aarch64", + sha256 = "8501b68c6a67b0a34f36b9c125fe5a1a71b6500460c160c1acc02131eaa280b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/nmap-ncat-7.92-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8501b68c6a67b0a34f36b9c125fe5a1a71b6500460c160c1acc02131eaa280b3", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-3.el9.s390x", + sha256 = "0e3b53ac9a6711647f92c744038eca3ababd57253eb397d24fc8af2bebdd3e32", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/nmap-ncat-7.92-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e3b53ac9a6711647f92c744038eca3ababd57253eb397d24fc8af2bebdd3e32", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-3.el9.x86_64", + sha256 = "6126169e5ba3c3acc5fe8c458b425adb7beeeadf21177a5e3204931b9333b2ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/nmap-ncat-7.92-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6126169e5ba3c3acc5fe8c458b425adb7beeeadf21177a5e3204931b9333b2ef", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.s390x", + sha256 = "f66f12068208409067e6c342e6c0f4f0646fe527dbb7d5bc3d41adb4d9802b52", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/npth-1.6-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f66f12068208409067e6c342e6c0f4f0646fe527dbb7d5bc3d41adb4d9802b52", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.x86_64", + sha256 = "a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/npth-1.6-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-1.el9.x86_64", + sha256 = "3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.aarch64", + sha256 = "ff63cef9b42cbc82149a6bc6970c20c9e781016dbb3eadd03effa330cb3b2bdd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numactl-libs-2.0.19-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ff63cef9b42cbc82149a6bc6970c20c9e781016dbb3eadd03effa330cb3b2bdd", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.s390x", + sha256 = "43de4c5b609d2914a7fd27937b3baf15a988be1c891ee17e1395cae2232a06c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/numactl-libs-2.0.19-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/43de4c5b609d2914a7fd27937b3baf15a988be1c891ee17e1395cae2232a06c4", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.x86_64", + sha256 = "ad52833edf28b5bf2053bd96d96b211de4c6b11376978379dae211460c4596d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad52833edf28b5bf2053bd96d96b211de4c6b11376978379dae211460c4596d8", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.aarch64", + sha256 = "c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numad-0.5-37.20150602git.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.x86_64", + sha256 = "82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numad-0.5-37.20150602git.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + ], +) + +rpm( + name = "openldap-0__2.6.8-4.el9.s390x", + sha256 = "67a9f53b14250f7934faebcc7961b2f9c06875b9c8fb16d4ac19c0e110d0e446", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openldap-2.6.8-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a9f53b14250f7934faebcc7961b2f9c06875b9c8fb16d4ac19c0e110d0e446", + ], +) + +rpm( + name = "openldap-0__2.6.8-4.el9.x86_64", + sha256 = "606794339fa964e9c68a94fe756566e0651c52da47ebe7df5fb66f700c6a0421", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openldap-2.6.8-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/606794339fa964e9c68a94fe756566e0651c52da47ebe7df5fb66f700c6a0421", + ], +) + +rpm( + name = "openssl-1__3.2.2-6.el9.x86_64", + sha256 = "3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a", + urls = ["https://storage.googleapis.com/builddeps/3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a"], +) + +rpm( + name = "openssl-1__3.5.1-3.el9.aarch64", + sha256 = "c1ad2b820c41d6473496d80d7a839243d6982be6d5bb03f7f6902457655f20ab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-3.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c1ad2b820c41d6473496d80d7a839243d6982be6d5bb03f7f6902457655f20ab", + ], +) + +rpm( + name = "openssl-1__3.5.1-3.el9.s390x", + sha256 = "a15931a1c441c9180b0a2145ec13a18b36d3280046ea034b85c8b279945701fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-3.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a15931a1c441c9180b0a2145ec13a18b36d3280046ea034b85c8b279945701fd", + ], +) + +rpm( + name = "openssl-1__3.5.1-3.el9.x86_64", + sha256 = "9477f0b717ae5113a49087a76dc70eedbc1cd4dfaa5ef1339e3b73e59ffbc9a2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-3.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9477f0b717ae5113a49087a76dc70eedbc1cd4dfaa5ef1339e3b73e59ffbc9a2", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.1-3.el9.aarch64", + sha256 = "1f2c9629e22d0f7f5cb530b928865b7d2ec1fbb5a2d41a62bce803fd56b40864", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-fips-provider-3.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1f2c9629e22d0f7f5cb530b928865b7d2ec1fbb5a2d41a62bce803fd56b40864", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.1-3.el9.s390x", + sha256 = "1038f1688f625579ed8b8c3df1cf21b85df13aa30832df31e5ace3e8a5a8ffb8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-fips-provider-3.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1038f1688f625579ed8b8c3df1cf21b85df13aa30832df31e5ace3e8a5a8ffb8", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.1-3.el9.x86_64", + sha256 = "14c26ea430d8f4118753c39393ea8ef2552cd363b8df7ddb3ec5bf2bf21cbb85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-fips-provider-3.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/14c26ea430d8f4118753c39393ea8ef2552cd363b8df7ddb3ec5bf2bf21cbb85", + ], +) + +rpm( + name = "openssl-libs-1__3.2.2-6.el9.x86_64", + sha256 = "4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738", + urls = ["https://storage.googleapis.com/builddeps/4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738"], +) + +rpm( + name = "openssl-libs-1__3.5.1-3.el9.aarch64", + sha256 = "0d5b74df380e7d2606d56749bcc21590add0e7911e079b2fa9f8d2370dbf7227", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-libs-3.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0d5b74df380e7d2606d56749bcc21590add0e7911e079b2fa9f8d2370dbf7227", + ], +) + +rpm( + name = "openssl-libs-1__3.5.1-3.el9.s390x", + sha256 = "30e17c31d2ccce0412dbef3b7093f222bd346858c2da31c5920dfc585f5ad1a9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-libs-3.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/30e17c31d2ccce0412dbef3b7093f222bd346858c2da31c5920dfc585f5ad1a9", + ], +) + +rpm( + name = "openssl-libs-1__3.5.1-3.el9.x86_64", + sha256 = "efab736fa398caa99b3dd9e510d2523c771a138cff9e98e5c6cc4f1ec4e26da2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-libs-3.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/efab736fa398caa99b3dd9e510d2523c771a138cff9e98e5c6cc4f1ec4e26da2", + ], +) + +rpm( + name = "osinfo-db-0__20240701-3.el9.x86_64", + sha256 = "cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20240701-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el9.s390x", + sha256 = "78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/osinfo-db-20250606-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el9.x86_64", + sha256 = "78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20250606-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.s390x", + sha256 = "2df9abce1b172c03c768b4f7ea7befe0c2e4d6647447d5b729caa061fdbf3803", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/osinfo-db-tools-1.10.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2df9abce1b172c03c768b4f7ea7befe0c2e4d6647447d5b729caa061fdbf3803", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.x86_64", + sha256 = "2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-tools-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.aarch64", + sha256 = "6a255062581be1ba36a33d1b22b46f129fc42d20e0e300c0e8f57639f2951266", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-0.25.3-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6a255062581be1ba36a33d1b22b46f129fc42d20e0e300c0e8f57639f2951266", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.s390x", + sha256 = "11c4d8edac3f3944104ba989ee9460efc1ba6a8bf79a3bae49b395c0cc7fd5dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-0.25.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/11c4d8edac3f3944104ba989ee9460efc1ba6a8bf79a3bae49b395c0cc7fd5dc", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.x86_64", + sha256 = "2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.aarch64", + sha256 = "6edd6a98ba08cf62dfe98fca9d16337808321504c778165cf8aff055b63dcd06", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-trust-0.25.3-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6edd6a98ba08cf62dfe98fca9d16337808321504c778165cf8aff055b63dcd06", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.s390x", + sha256 = "7aa852f515edcc3056bbf35e208bd8f57f68577bff047e54337fa87e0505057a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-trust-0.25.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7aa852f515edcc3056bbf35e208bd8f57f68577bff047e54337fa87e0505057a", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.x86_64", + sha256 = "f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + ], +) + +rpm( + name = "pam-0__1.5.1-23.el9.x86_64", + sha256 = "fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + ], +) + +rpm( + name = "pam-0__1.5.1-26.el9.aarch64", + sha256 = "55c182d47d27731e28dd8e028b69b803a10ce6c770ed7f83edca33dbe6ce60ee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pam-1.5.1-26.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/55c182d47d27731e28dd8e028b69b803a10ce6c770ed7f83edca33dbe6ce60ee", + ], +) + +rpm( + name = "pam-0__1.5.1-26.el9.s390x", + sha256 = "51064a32328eddf31c70e3ba620f3d7038686e004b2f3d93b47fb2e053a8a51b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pam-1.5.1-26.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/51064a32328eddf31c70e3ba620f3d7038686e004b2f3d93b47fb2e053a8a51b", + ], +) + +rpm( + name = "pam-0__1.5.1-26.el9.x86_64", + sha256 = "fdd386099ce03cf4a54c76d677450f067405a2171a78c75bed056419db1b3078", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-26.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fdd386099ce03cf4a54c76d677450f067405a2171a78c75bed056419db1b3078", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.s390x", + sha256 = "e328d103fa4e64fa6558998d79b42bb37882d068b9251fc3301b1001b7f01936", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/parted-3.5-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e328d103fa4e64fa6558998d79b42bb37882d068b9251fc3301b1001b7f01936", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.x86_64", + sha256 = "77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/parted-3.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64", + sha256 = "b25fd3d6395c66279b57f2c6cafa51d487b40cf7b3caa16915c7e702c5495679", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b25fd3d6395c66279b57f2c6cafa51d487b40cf7b3caa16915c7e702c5495679", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.s390x", + sha256 = "ee4e4896389277f09db8e3a112e83e83be80d1401b43a9993137c12c004bdafc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ee4e4896389277f09db8e3a112e83e83be80d1401b43a9993137c12c004bdafc", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64", + sha256 = "27818a1904c1d1e39890abe239ea156a29c3e548e83941d7696e0cd3113abfdd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27818a1904c1d1e39890abe239ea156a29c3e548e83941d7696e0cd3113abfdd", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.aarch64", + sha256 = "dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre-8.44-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.s390x", + sha256 = "e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre-8.44-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.x86_64", + sha256 = "7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre-8.44-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.aarch64", + sha256 = "c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-10.40-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.s390x", + sha256 = "f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-10.40-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.x86_64", + sha256 = "bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-10.40-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.aarch64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.s390x", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.x86_64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.aarch64", + sha256 = "949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/pixman-0.40.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.s390x", + sha256 = "8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/pixman-0.40.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.x86_64", + sha256 = "e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-0.40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.s390x", + sha256 = "18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.aarch64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.s390x", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.x86_64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.aarch64", + sha256 = "d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.s390x", + sha256 = "d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.x86_64", + sha256 = "e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + ], +) + +rpm( + name = "policycoreutils-0__3.6-2.1.el9.x86_64", + sha256 = "a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-2.1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + ], +) + +rpm( + name = "policycoreutils-0__3.6-3.el9.aarch64", + sha256 = "e9f13425f0a7f4900d971ffaa2363bb6353b1990dac260bbbf6c2bbda5d6e83d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/policycoreutils-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e9f13425f0a7f4900d971ffaa2363bb6353b1990dac260bbbf6c2bbda5d6e83d", + ], +) + +rpm( + name = "policycoreutils-0__3.6-3.el9.s390x", + sha256 = "02dd6d0f44100d9c5f73a8102a0b3dbdc90c0fa142b78ab10a9dd8eb93cfd725", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/policycoreutils-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/02dd6d0f44100d9c5f73a8102a0b3dbdc90c0fa142b78ab10a9dd8eb93cfd725", + ], +) + +rpm( + name = "policycoreutils-0__3.6-3.el9.x86_64", + sha256 = "6a108397ed0aa3a7ad3be130c11e48c4f234316c64a97061a665480eb210cc04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6a108397ed0aa3a7ad3be130c11e48c4f234316c64a97061a665480eb210cc04", + ], +) + +rpm( + name = "polkit-0__0.117-13.el9.x86_64", + sha256 = "81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.aarch64", + sha256 = "9b756ae0148672fd428182ecbfae0e6d4fe249ad41cddb5f99ef2868b1b07c27", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-0.117-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9b756ae0148672fd428182ecbfae0e6d4fe249ad41cddb5f99ef2868b1b07c27", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.s390x", + sha256 = "8d97919e210f66f10b8f4faad916eb21b9e33c3cdb088638bc6a1dd5efa75b9d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-0.117-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8d97919e210f66f10b8f4faad916eb21b9e33c3cdb088638bc6a1dd5efa75b9d", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.x86_64", + sha256 = "30f3a75427f33cd136ffbacbb01d4570a62a15b6da4ecb005a0e1da25f0ca57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30f3a75427f33cd136ffbacbb01d4570a62a15b6da4ecb005a0e1da25f0ca57a", + ], +) + +rpm( + name = "polkit-libs-0__0.117-13.el9.x86_64", + sha256 = "127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.aarch64", + sha256 = "a2021169f907a5cf2ac57193ff1d32d9df514db03a12aa5842ae7d358d66c20f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-libs-0.117-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a2021169f907a5cf2ac57193ff1d32d9df514db03a12aa5842ae7d358d66c20f", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.s390x", + sha256 = "475daa3f2f4890182b4aac23ca2fa0c071c536fbe5c7a1f17b5bf555d71eda26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-libs-0.117-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/475daa3f2f4890182b4aac23ca2fa0c071c536fbe5c7a1f17b5bf555d71eda26", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.x86_64", + sha256 = "b2acb122a1cbadef39c62cdbd34781aa094a07ee9fafc61f987dd43ea09f182f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b2acb122a1cbadef39c62cdbd34781aa094a07ee9fafc61f987dd43ea09f182f", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.aarch64", + sha256 = "032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/popt-1.18-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.s390x", + sha256 = "b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/popt-1.18-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.x86_64", + sha256 = "d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/popt-1.18-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.aarch64", + sha256 = "a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/procps-ng-3.3.17-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.s390x", + sha256 = "3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/procps-ng-3.3.17-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.x86_64", + sha256 = "e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/procps-ng-3.3.17-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.aarch64", + sha256 = "7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/protobuf-c-1.3.3-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.s390x", + sha256 = "a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/protobuf-c-1.3.3-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.x86_64", + sha256 = "3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/protobuf-c-1.3.3-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.aarch64", + sha256 = "4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/psmisc-23.4-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.s390x", + sha256 = "2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/psmisc-23.4-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.x86_64", + sha256 = "e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/psmisc-23.4-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.s390x", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.x86_64", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "python3-0__3.9.23-2.el9.aarch64", + sha256 = "3cd7b56e5348cf7821d541555535408aa0bfae46f4da953666ae674cd594fd5d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-3.9.23-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3cd7b56e5348cf7821d541555535408aa0bfae46f4da953666ae674cd594fd5d", + ], +) + +rpm( + name = "python3-0__3.9.23-2.el9.s390x", + sha256 = "c5ec4d68c5e1f39a6829999d31ef71b8e619ed13d307ad14e352429ad43a1706", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-3.9.23-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c5ec4d68c5e1f39a6829999d31ef71b8e619ed13d307ad14e352429ad43a1706", + ], +) + +rpm( + name = "python3-0__3.9.23-2.el9.x86_64", + sha256 = "22663971c4c994a0ed925569d933aad73e3d2b2474480f389d5a83beb69a8769", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-3.9.23-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/22663971c4c994a0ed925569d933aad73e3d2b2474480f389d5a83beb69a8769", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.aarch64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.s390x", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.x86_64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.aarch64", + sha256 = "ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-dbus-1.2.18-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.s390x", + sha256 = "6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-dbus-1.2.18-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.x86_64", + sha256 = "8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-dbus-1.2.18-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.aarch64", + sha256 = "815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-3.40.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.s390x", + sha256 = "7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-3.40.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.x86_64", + sha256 = "bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-3.40.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.s390x", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.aarch64", + sha256 = "600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-kmod-0.9-32.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.s390x", + sha256 = "d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-kmod-0.9-32.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.x86_64", + sha256 = "e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-kmod-0.9-32.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + ], +) + +rpm( + name = "python3-libs-0__3.9.23-2.el9.aarch64", + sha256 = "d356e1d3534758624c54b2eea4c0eb02ce88213f7dc79a3cece3b66aba4aa3ab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-libs-3.9.23-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d356e1d3534758624c54b2eea4c0eb02ce88213f7dc79a3cece3b66aba4aa3ab", + ], +) + +rpm( + name = "python3-libs-0__3.9.23-2.el9.s390x", + sha256 = "9566892e2a8c8632b1ea24607b0523eb51392888f976ed621e4bb215fddd2c66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-libs-3.9.23-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9566892e2a8c8632b1ea24607b0523eb51392888f976ed621e4bb215fddd2c66", + ], +) + +rpm( + name = "python3-libs-0__3.9.23-2.el9.x86_64", + sha256 = "0cabbeebbd7bd7dfce4b7b10984afc4dca55b53f2f554a5f2a9256000cf86243", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-libs-3.9.23-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0cabbeebbd7bd7dfce4b7b10984afc4dca55b53f2f554a5f2a9256000cf86243", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.aarch64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.s390x", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.x86_64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.aarch64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.s390x", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.x86_64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.aarch64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.s390x", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.x86_64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.aarch64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.s390x", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.x86_64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.aarch64", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.s390x", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.x86_64", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.aarch64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.s390x", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.x86_64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.aarch64", + sha256 = "a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-urwid-2.1.2-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.s390x", + sha256 = "8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-urwid-2.1.2-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.x86_64", + sha256 = "b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-urwid-2.1.2-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + ], +) + +rpm( + name = "qemu-img-17__9.1.0-15.el9.x86_64", + sha256 = "6149224d6968142db7c12330dd4d9f6882af2ad73a97e591214a3869603b663f", + urls = ["https://storage.googleapis.com/builddeps/6149224d6968142db7c12330dd4d9f6882af2ad73a97e591214a3869603b663f"], +) + +rpm( + name = "qemu-img-17__9.1.0-20.el9.aarch64", + sha256 = "95157124d7345883693dc63a176318fa43946bf98dffa09fa1d21489878044d2", + urls = ["https://storage.googleapis.com/builddeps/95157124d7345883693dc63a176318fa43946bf98dffa09fa1d21489878044d2"], +) + +rpm( + name = "qemu-img-17__9.1.0-20.el9.s390x", + sha256 = "d05428a92c9e5f7583327e464587aa9b358ab563b85b8f6d641e0e3e61c6d7ec", + urls = ["https://storage.googleapis.com/builddeps/d05428a92c9e5f7583327e464587aa9b358ab563b85b8f6d641e0e3e61c6d7ec"], +) + +rpm( + name = "qemu-img-17__9.1.0-20.el9.x86_64", + sha256 = "c47d98eeaae4be3329bc2eb602f3f57ea4b3614d0e36ef5a652eb331d9027ece", + urls = ["https://storage.googleapis.com/builddeps/c47d98eeaae4be3329bc2eb602f3f57ea4b3614d0e36ef5a652eb331d9027ece"], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-15.el9.x86_64", + sha256 = "345b3dae626a756f160321e025774d3d3e193a767388e69ffc832ea75988b166", + urls = ["https://storage.googleapis.com/builddeps/345b3dae626a756f160321e025774d3d3e193a767388e69ffc832ea75988b166"], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-20.el9.aarch64", + sha256 = "865a1fccb9d240f7e5255399c3d709082f77fe329305a704785a55e2aac6ef54", + urls = ["https://storage.googleapis.com/builddeps/865a1fccb9d240f7e5255399c3d709082f77fe329305a704785a55e2aac6ef54"], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-20.el9.s390x", + sha256 = "e440d0aac5d67bea837dce039b762786018323233629f475b9a4b0acd65b84a4", + urls = ["https://storage.googleapis.com/builddeps/e440d0aac5d67bea837dce039b762786018323233629f475b9a4b0acd65b84a4"], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-20.el9.x86_64", + sha256 = "7a62368c3bc8c2367425002bcaf34eb3d56b234c1ce88499367b401075ed04b3", + urls = ["https://storage.googleapis.com/builddeps/7a62368c3bc8c2367425002bcaf34eb3d56b234c1ce88499367b401075ed04b3"], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-15.el9.x86_64", + sha256 = "aa36521b947a78d2d06d90e1a8f5d74bab5ffbbb6d8ca8d939497477c4878565", + urls = ["https://storage.googleapis.com/builddeps/aa36521b947a78d2d06d90e1a8f5d74bab5ffbbb6d8ca8d939497477c4878565"], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-20.el9.aarch64", + sha256 = "54259ae53e355a2a90c15dac5879c7a4cacec054b09653b28f5953aed1c3f7ae", + urls = ["https://storage.googleapis.com/builddeps/54259ae53e355a2a90c15dac5879c7a4cacec054b09653b28f5953aed1c3f7ae"], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-20.el9.s390x", + sha256 = "f23a67b6797e5fb2dbcb0187c7b688457d81d4c136d55a27ce6e6a9571d668eb", + urls = ["https://storage.googleapis.com/builddeps/f23a67b6797e5fb2dbcb0187c7b688457d81d4c136d55a27ce6e6a9571d668eb"], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-20.el9.x86_64", + sha256 = "21b3afb5d512b67a8d7aa42bc112c873591ad0c9346a7773d8b6aca063a9c348", + urls = ["https://storage.googleapis.com/builddeps/21b3afb5d512b67a8d7aa42bc112c873591ad0c9346a7773d8b6aca063a9c348"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__9.1.0-20.el9.aarch64", + sha256 = "673f96f12fb96c90d439680cb8295cb8a862f8230a1f8f4a01e86aaf567d62aa", + urls = ["https://storage.googleapis.com/builddeps/673f96f12fb96c90d439680cb8295cb8a862f8230a1f8f4a01e86aaf567d62aa"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__9.1.0-20.el9.s390x", + sha256 = "4d443a16e9874d553320cbf9fd80eee02a77eb79028f276873ac541eb322bbed", + urls = ["https://storage.googleapis.com/builddeps/4d443a16e9874d553320cbf9fd80eee02a77eb79028f276873ac541eb322bbed"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__9.1.0-20.el9.x86_64", + sha256 = "ab61eead74eb82aa58ed79b74622c1e517f7b5e2712200e601a550ecd3e04bb0", + urls = ["https://storage.googleapis.com/builddeps/ab61eead74eb82aa58ed79b74622c1e517f7b5e2712200e601a550ecd3e04bb0"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-ccw-17__9.1.0-20.el9.s390x", + sha256 = "fbe73915c84e33be1733b5d65e9894631aea8850ef187d2f621dc588762e3fd8", + urls = ["https://storage.googleapis.com/builddeps/fbe73915c84e33be1733b5d65e9894631aea8850ef187d2f621dc588762e3fd8"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-20.el9.aarch64", + sha256 = "d8acd12a3a2b287b391435e44c10ba2d986431f42b8854d9ddf406353c158b3c", + urls = ["https://storage.googleapis.com/builddeps/d8acd12a3a2b287b391435e44c10ba2d986431f42b8854d9ddf406353c158b3c"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-20.el9.x86_64", + sha256 = "9a4b180ea3862bd089b25ea74c776cef6ded0b97f94665577a91a877f3872c87", + urls = ["https://storage.googleapis.com/builddeps/9a4b180ea3862bd089b25ea74c776cef6ded0b97f94665577a91a877f3872c87"], +) + +rpm( + name = "qemu-kvm-device-display-virtio-vga-17__9.1.0-20.el9.x86_64", + sha256 = "e1bc196a8e585687a7f62079a9d4c7b722545b17f72498eb152568d28e53a202", + urls = ["https://storage.googleapis.com/builddeps/e1bc196a8e585687a7f62079a9d4c7b722545b17f72498eb152568d28e53a202"], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__9.1.0-20.el9.aarch64", + sha256 = "deb691a4bb294c4e7d4456d2c2dea52d473e8ae3279a39178f414390a33050ff", + urls = ["https://storage.googleapis.com/builddeps/deb691a4bb294c4e7d4456d2c2dea52d473e8ae3279a39178f414390a33050ff"], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__9.1.0-20.el9.s390x", + sha256 = "0ff05bf439d0fc558da462b462b896ce28d236b66743d473e1067b113de12880", + urls = ["https://storage.googleapis.com/builddeps/0ff05bf439d0fc558da462b462b896ce28d236b66743d473e1067b113de12880"], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__9.1.0-20.el9.x86_64", + sha256 = "5bd87713b32cdb8821ff12d12302a4d591b82ce57702371044d97fae8346c636", + urls = ["https://storage.googleapis.com/builddeps/5bd87713b32cdb8821ff12d12302a4d591b82ce57702371044d97fae8346c636"], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__9.1.0-20.el9.aarch64", + sha256 = "cbb4130755b59afbe8beb307d92fa5ebd33c7607e41b3574f6f297d5d69a738c", + urls = ["https://storage.googleapis.com/builddeps/cbb4130755b59afbe8beb307d92fa5ebd33c7607e41b3574f6f297d5d69a738c"], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__9.1.0-20.el9.x86_64", + sha256 = "5aab7c035b528ca64a2b4e0eb60ff1e10bfcd5f65954f9f2b36041d672d22ed9", + urls = ["https://storage.googleapis.com/builddeps/5aab7c035b528ca64a2b4e0eb60ff1e10bfcd5f65954f9f2b36041d672d22ed9"], +) + +rpm( + name = "qemu-pr-helper-17__9.1.0-26.el9.aarch64", + sha256 = "fb9b6ea6fd9bc0dd23b68dbf796353f6df6077c510d18511b730d58994e4b777", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-pr-helper-9.1.0-26.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fb9b6ea6fd9bc0dd23b68dbf796353f6df6077c510d18511b730d58994e4b777", + ], +) + +rpm( + name = "qemu-pr-helper-17__9.1.0-26.el9.x86_64", + sha256 = "5f59ff0dd548a84f167a6542a91a0dbd4376489401fa467583e9f586e9130ef4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-pr-helper-9.1.0-26.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5f59ff0dd548a84f167a6542a91a0dbd4376489401fa467583e9f586e9130ef4", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.aarch64", + sha256 = "2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/readline-8.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.s390x", + sha256 = "7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/readline-8.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.x86_64", + sha256 = "49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/readline-8.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-37.el9.x86_64", + sha256 = "84caf776cfb5175fbe960dd8bb4bd10d799c45c3c0fd9d6b01bdf4d0c254d40d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84caf776cfb5175fbe960dd8bb4bd10d799c45c3c0fd9d6b01bdf4d0c254d40d", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-39.el9.aarch64", + sha256 = "b2626fd2f0d8012f8f99bce76da841920a26bb452679b8dd74991296b80740e2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-4.16.1.3-39.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b2626fd2f0d8012f8f99bce76da841920a26bb452679b8dd74991296b80740e2", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-39.el9.s390x", + sha256 = "e34d8077b54f886e8db97f1d203a3dd4b6d03cdb9c0997e174743f7c70f6daf1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-4.16.1.3-39.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e34d8077b54f886e8db97f1d203a3dd4b6d03cdb9c0997e174743f7c70f6daf1", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-39.el9.x86_64", + sha256 = "cca77ed4f3683bc6501de9f6eba7bc694a69b34bd52bd575f78a69703f86d0b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cca77ed4f3683bc6501de9f6eba7bc694a69b34bd52bd575f78a69703f86d0b4", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-37.el9.x86_64", + sha256 = "ff504743e1b532c3825d1c6d4d72109a998de862f3d8e4896b49aecd3f33d3ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff504743e1b532c3825d1c6d4d72109a998de862f3d8e4896b49aecd3f33d3ed", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-39.el9.aarch64", + sha256 = "e5b57bb78d0113be625d0feca709028772bb3ed04884b6dcdbff1de82035092e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-libs-4.16.1.3-39.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e5b57bb78d0113be625d0feca709028772bb3ed04884b6dcdbff1de82035092e", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-39.el9.s390x", + sha256 = "eafd627df8add5efa755151c1985eda163f83ec8aec73a8b581edb4425b51573", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-libs-4.16.1.3-39.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/eafd627df8add5efa755151c1985eda163f83ec8aec73a8b581edb4425b51573", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-39.el9.x86_64", + sha256 = "ab6e7992ba36d3a346b46f8efe3d423bf197a8b060005d30c5c9105e925acb81", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ab6e7992ba36d3a346b46f8efe3d423bf197a8b060005d30c5c9105e925acb81", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-37.el9.x86_64", + sha256 = "0abb8313e99600887e851d249d914968a0b5623aead736831077f7d53be25837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0abb8313e99600887e851d249d914968a0b5623aead736831077f7d53be25837", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-39.el9.aarch64", + sha256 = "e91895bd6377c2393f910abcba3be188f5019b99e0554c79be8f11a43766144c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-plugin-selinux-4.16.1.3-39.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e91895bd6377c2393f910abcba3be188f5019b99e0554c79be8f11a43766144c", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-39.el9.s390x", + sha256 = "3afa405ddc764725cbac6c71763f305d30ff1050ec028b7915d3c4b198460c2c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-plugin-selinux-4.16.1.3-39.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3afa405ddc764725cbac6c71763f305d30ff1050ec028b7915d3c4b198460c2c", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-39.el9.x86_64", + sha256 = "141cc9810101b8760d6c08f3dc8fae72661a0d36f3f2db8d32a174345e05595b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/141cc9810101b8760d6c08f3dc8fae72661a0d36f3f2db8d32a174345e05595b", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.s390x", + sha256 = "eadebb92f9a6955e7f3391ea9964c1e66f84afeeff1abd23b1c4137fdc21625c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/scrub-2.6.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/eadebb92f9a6955e7f3391ea9964c1e66f84afeeff1abd23b1c4137fdc21625c", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.x86_64", + sha256 = "cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/scrub-2.6.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + ], +) + +rpm( + name = "seabios-0__1.16.3-4.el9.x86_64", + sha256 = "017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-1.16.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + ], +) + +rpm( + name = "seabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + ], +) + +rpm( + name = "seavgabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seavgabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.aarch64", + sha256 = "cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sed-4.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.s390x", + sha256 = "7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sed-4.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.x86_64", + sha256 = "a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sed-4.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + ], +) + +rpm( + name = "selinux-policy-0__38.1.53-2.el9.x86_64", + sha256 = "6840efbf87f7f4782c332e0e0a3e3567075a804c070b1d501ff7e7a44a09448c", + urls = ["https://storage.googleapis.com/builddeps/6840efbf87f7f4782c332e0e0a3e3567075a804c070b1d501ff7e7a44a09448c"], +) + +rpm( + name = "selinux-policy-0__38.1.65-1.el9.aarch64", + sha256 = "5db81b82bc33a234c1d558ff0113272930511216356e92b892a8339b8e6995de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-38.1.65-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/5db81b82bc33a234c1d558ff0113272930511216356e92b892a8339b8e6995de", + ], +) + +rpm( + name = "selinux-policy-0__38.1.65-1.el9.s390x", + sha256 = "5db81b82bc33a234c1d558ff0113272930511216356e92b892a8339b8e6995de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-38.1.65-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/5db81b82bc33a234c1d558ff0113272930511216356e92b892a8339b8e6995de", + ], +) + +rpm( + name = "selinux-policy-0__38.1.65-1.el9.x86_64", + sha256 = "5db81b82bc33a234c1d558ff0113272930511216356e92b892a8339b8e6995de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-38.1.65-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/5db81b82bc33a234c1d558ff0113272930511216356e92b892a8339b8e6995de", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.53-2.el9.x86_64", + sha256 = "b9f921bdc764af3b8c5c8580fc9db4f75b0fb3b2c0a3ea1f541536de091664b1", + urls = ["https://storage.googleapis.com/builddeps/b9f921bdc764af3b8c5c8580fc9db4f75b0fb3b2c0a3ea1f541536de091664b1"], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.65-1.el9.aarch64", + sha256 = "070261abdff939e4ad7b8034ef82ab33c4f2d2869919a027f76a2fc18cddea40", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-targeted-38.1.65-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/070261abdff939e4ad7b8034ef82ab33c4f2d2869919a027f76a2fc18cddea40", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.65-1.el9.s390x", + sha256 = "070261abdff939e4ad7b8034ef82ab33c4f2d2869919a027f76a2fc18cddea40", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-targeted-38.1.65-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/070261abdff939e4ad7b8034ef82ab33c4f2d2869919a027f76a2fc18cddea40", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.65-1.el9.x86_64", + sha256 = "070261abdff939e4ad7b8034ef82ab33c4f2d2869919a027f76a2fc18cddea40", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-targeted-38.1.65-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/070261abdff939e4ad7b8034ef82ab33c4f2d2869919a027f76a2fc18cddea40", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.aarch64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.s390x", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.x86_64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.aarch64", + sha256 = "10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/sevctl-0.1.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.s390x", + sha256 = "1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/sevctl-0.1.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + ], +) + +rpm( + name = "sevctl-0__0.4.2-1.el9.x86_64", + sha256 = "3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sevctl-0.4.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + ], +) + +rpm( + name = "shadow-utils-2__4.9-12.el9.x86_64", + sha256 = "23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + ], +) + +rpm( + name = "shadow-utils-2__4.9-15.el9.aarch64", + sha256 = "38b1cb04bae73579e77183d3ed41ca4344a0c69217c6daddaf624bc78041dad5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/shadow-utils-4.9-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/38b1cb04bae73579e77183d3ed41ca4344a0c69217c6daddaf624bc78041dad5", + ], +) + +rpm( + name = "shadow-utils-2__4.9-15.el9.s390x", + sha256 = "c1a0d4fe270728669d7ff521155dc9d4567a1365c55c1b4d9782388f2076d14b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/shadow-utils-4.9-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c1a0d4fe270728669d7ff521155dc9d4567a1365c55c1b4d9782388f2076d14b", + ], +) + +rpm( + name = "shadow-utils-2__4.9-15.el9.x86_64", + sha256 = "775e77363052588ab86c1a4db967d230a86997552958ba418ab763a161561053", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/775e77363052588ab86c1a4db967d230a86997552958ba418ab763a161561053", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.aarch64", + sha256 = "02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/snappy-1.1.8-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.s390x", + sha256 = "e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/snappy-1.1.8-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.x86_64", + sha256 = "10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/snappy-1.1.8-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-7.el9.x86_64", + sha256 = "eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-8.el9.aarch64", + sha256 = "9fe7fee63ca05f390da0efc7d80d7395322b646e67fa20cd74bc09a930a05103", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sqlite-libs-3.34.1-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9fe7fee63ca05f390da0efc7d80d7395322b646e67fa20cd74bc09a930a05103", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-8.el9.s390x", + sha256 = "ecd0187ec3eb76967cedd6a6fb18d1ea2f8871fcb8eb0bab571daebb25d008b8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sqlite-libs-3.34.1-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ecd0187ec3eb76967cedd6a6fb18d1ea2f8871fcb8eb0bab571daebb25d008b8", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-8.el9.x86_64", + sha256 = "c5f5c7b797740bcc5252bbc49ce90b283e2eb8be56fa28b875068d03aec4cfb2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c5f5c7b797740bcc5252bbc49ce90b283e2eb8be56fa28b875068d03aec4cfb2", + ], +) + +rpm( + name = "sssd-client-0__2.9.7-4.el9.aarch64", + sha256 = "25b3355ed6c9f7d4bcdaa86d655b7f96a0a986ee3ff6ef0bd027bb194bca9937", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sssd-client-2.9.7-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/25b3355ed6c9f7d4bcdaa86d655b7f96a0a986ee3ff6ef0bd027bb194bca9937", + ], +) + +rpm( + name = "sssd-client-0__2.9.7-4.el9.s390x", + sha256 = "66873b5bca064971328ecb1bfde99cf79ba7b2c47093478535516d4eb43a5087", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sssd-client-2.9.7-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/66873b5bca064971328ecb1bfde99cf79ba7b2c47093478535516d4eb43a5087", + ], +) + +rpm( + name = "sssd-client-0__2.9.7-4.el9.x86_64", + sha256 = "09162b2842d3fdd5ce5d6b72f319e513a0eaba46742fbac2ba51f827c5ed18fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sssd-client-2.9.7-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/09162b2842d3fdd5ce5d6b72f319e513a0eaba46742fbac2ba51f827c5ed18fe", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.aarch64", + sha256 = "54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.s390x", + sha256 = "2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.x86_64", + sha256 = "e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.aarch64", + sha256 = "da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-libs-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.s390x", + sha256 = "2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-libs-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.x86_64", + sha256 = "732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-libs-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.aarch64", + sha256 = "35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-tools-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.s390x", + sha256 = "81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-tools-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.x86_64", + sha256 = "8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-tools-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + ], +) + +rpm( + name = "systemd-0__252-51.el9.x86_64", + sha256 = "c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0", + urls = ["https://storage.googleapis.com/builddeps/c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0"], +) + +rpm( + name = "systemd-0__252-55.el9.aarch64", + sha256 = "2b81407b3a55cff44909fdd1da7b6b97d8bc6544a077e71b0536ad6a35627320", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-252-55.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2b81407b3a55cff44909fdd1da7b6b97d8bc6544a077e71b0536ad6a35627320", + ], +) + +rpm( + name = "systemd-0__252-55.el9.s390x", + sha256 = "0e42b2cf901dec330b129e8d9d7f517edf06a4ef4022fc1dc9ebc5b4a5e7ba86", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-252-55.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e42b2cf901dec330b129e8d9d7f517edf06a4ef4022fc1dc9ebc5b4a5e7ba86", + ], +) + +rpm( + name = "systemd-0__252-55.el9.x86_64", + sha256 = "7a848164ed52648654ee2823733659bfe93e06b72ab9678d2a6f6ef8595f16bc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-252-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7a848164ed52648654ee2823733659bfe93e06b72ab9678d2a6f6ef8595f16bc", + ], +) + +rpm( + name = "systemd-container-0__252-51.el9.x86_64", + sha256 = "653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde", + urls = ["https://storage.googleapis.com/builddeps/653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde"], +) + +rpm( + name = "systemd-container-0__252-55.el9.aarch64", + sha256 = "412d9c62161c92a649f3193a084f04aca7db6763a23608e87167e6e7fbec0556", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-container-252-55.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/412d9c62161c92a649f3193a084f04aca7db6763a23608e87167e6e7fbec0556", + ], +) + +rpm( + name = "systemd-container-0__252-55.el9.s390x", + sha256 = "dd9a75218c94ca62de51815c18df3ca7b4b0f5201dc3a0ba1d500408dd4d16d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-container-252-55.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dd9a75218c94ca62de51815c18df3ca7b4b0f5201dc3a0ba1d500408dd4d16d0", + ], +) + +rpm( + name = "systemd-container-0__252-55.el9.x86_64", + sha256 = "5343ba94771f403903cc8345450887cc68843ab2b1fe3f57f57e3e573bc3738f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-container-252-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5343ba94771f403903cc8345450887cc68843ab2b1fe3f57f57e3e573bc3738f", + ], +) + +rpm( + name = "systemd-libs-0__252-51.el9.x86_64", + sha256 = "a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f", + urls = ["https://storage.googleapis.com/builddeps/a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f"], +) + +rpm( + name = "systemd-libs-0__252-55.el9.aarch64", + sha256 = "6be15967fffe22a2bf605fa449b795319fca0f0380596f14ee1edb6570c62205", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-libs-252-55.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6be15967fffe22a2bf605fa449b795319fca0f0380596f14ee1edb6570c62205", + ], +) + +rpm( + name = "systemd-libs-0__252-55.el9.s390x", + sha256 = "e766cf31f63c9235686f87d361aaa76c30815b8af7e10ec031d7469e10d7f7c7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-libs-252-55.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e766cf31f63c9235686f87d361aaa76c30815b8af7e10ec031d7469e10d7f7c7", + ], +) + +rpm( + name = "systemd-libs-0__252-55.el9.x86_64", + sha256 = "f6f54ea82d58cc5a1c766ce2f48222c637b3561a3abc4ece334e2acf160b16ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-libs-252-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6f54ea82d58cc5a1c766ce2f48222c637b3561a3abc4ece334e2acf160b16ca", + ], +) + +rpm( + name = "systemd-pam-0__252-51.el9.x86_64", + sha256 = "26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03", + urls = ["https://storage.googleapis.com/builddeps/26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03"], +) + +rpm( + name = "systemd-pam-0__252-55.el9.aarch64", + sha256 = "98085f79ae9122c70c03841f1140fdeb2a5eace8bf94174ad700bf8433054df8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-pam-252-55.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/98085f79ae9122c70c03841f1140fdeb2a5eace8bf94174ad700bf8433054df8", + ], +) + +rpm( + name = "systemd-pam-0__252-55.el9.s390x", + sha256 = "8d0cb62e41dda7d78f9d0e23dbe86cf8ea11bc556725b084621dedcc64d61858", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-pam-252-55.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8d0cb62e41dda7d78f9d0e23dbe86cf8ea11bc556725b084621dedcc64d61858", + ], +) + +rpm( + name = "systemd-pam-0__252-55.el9.x86_64", + sha256 = "2c228d3ca5663203b003924c4551f2b7361c798c108d8370e9dd7a54683d51c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-pam-252-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2c228d3ca5663203b003924c4551f2b7361c798c108d8370e9dd7a54683d51c4", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-51.el9.x86_64", + sha256 = "afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + urls = ["https://storage.googleapis.com/builddeps/afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c"], +) + +rpm( + name = "systemd-rpm-macros-0__252-55.el9.aarch64", + sha256 = "724cfb8f079fde8033f885a433b2070704b8a5dcf7025d02fc66a7d17d1049fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-rpm-macros-252-55.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/724cfb8f079fde8033f885a433b2070704b8a5dcf7025d02fc66a7d17d1049fc", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-55.el9.s390x", + sha256 = "724cfb8f079fde8033f885a433b2070704b8a5dcf7025d02fc66a7d17d1049fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-rpm-macros-252-55.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/724cfb8f079fde8033f885a433b2070704b8a5dcf7025d02fc66a7d17d1049fc", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-55.el9.x86_64", + sha256 = "724cfb8f079fde8033f885a433b2070704b8a5dcf7025d02fc66a7d17d1049fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-rpm-macros-252-55.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/724cfb8f079fde8033f885a433b2070704b8a5dcf7025d02fc66a7d17d1049fc", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.aarch64", + sha256 = "e3ee12a44a68c84627e43c2512ad8904a4778a82b274d0e8147ca46645f4a1fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tar-1.34-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e3ee12a44a68c84627e43c2512ad8904a4778a82b274d0e8147ca46645f4a1fb", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.s390x", + sha256 = "304bca9dd546a39a59bd50b8ec5fb3f42898138f92e49945be09cab503cdf1a2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tar-1.34-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/304bca9dd546a39a59bd50b8ec5fb3f42898138f92e49945be09cab503cdf1a2", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.x86_64", + sha256 = "b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tar-1.34-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.aarch64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.s390x", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.x86_64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "targetcli-0__2.1.57-2.el9.aarch64", + sha256 = "41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/targetcli-2.1.57-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + ], +) + +rpm( + name = "targetcli-0__2.1.57-2.el9.s390x", + sha256 = "41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/targetcli-2.1.57-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + ], +) + +rpm( + name = "targetcli-0__2.1.57-2.el9.x86_64", + sha256 = "41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/targetcli-2.1.57-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/41b6ff3fc0e6ce313a60b07e5f80c5217cb6177c414a97439d78cf8c94bf547b", + ], +) + +rpm( + name = "tzdata-0__2025a-1.el9.x86_64", + sha256 = "655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025a-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + ], +) + +rpm( + name = "tzdata-0__2025b-2.el9.aarch64", + sha256 = "45afb63925e75626cdaf62a3fd81cdc85c38a97f9bc1460d5f8c69ff1c619c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tzdata-2025b-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/45afb63925e75626cdaf62a3fd81cdc85c38a97f9bc1460d5f8c69ff1c619c57", + ], +) + +rpm( + name = "tzdata-0__2025b-2.el9.s390x", + sha256 = "45afb63925e75626cdaf62a3fd81cdc85c38a97f9bc1460d5f8c69ff1c619c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tzdata-2025b-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/45afb63925e75626cdaf62a3fd81cdc85c38a97f9bc1460d5f8c69ff1c619c57", + ], +) + +rpm( + name = "tzdata-0__2025b-2.el9.x86_64", + sha256 = "45afb63925e75626cdaf62a3fd81cdc85c38a97f9bc1460d5f8c69ff1c619c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025b-2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/45afb63925e75626cdaf62a3fd81cdc85c38a97f9bc1460d5f8c69ff1c619c57", + ], +) + +rpm( + name = "unbound-libs-0__1.16.2-21.el9.aarch64", + sha256 = "e4c297f0ae8bf2bef17963dd92918f0729ae791904794a8abe59e208faf0438b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/unbound-libs-1.16.2-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e4c297f0ae8bf2bef17963dd92918f0729ae791904794a8abe59e208faf0438b", + ], +) + +rpm( + name = "unbound-libs-0__1.16.2-21.el9.s390x", + sha256 = "7fd0c0f79bf8594dc6a9167da17134685cff110c38180da73e9fac168d1b82b6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/unbound-libs-1.16.2-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7fd0c0f79bf8594dc6a9167da17134685cff110c38180da73e9fac168d1b82b6", + ], +) + +rpm( + name = "unbound-libs-0__1.16.2-21.el9.x86_64", + sha256 = "3881a51e94f20f61ceba02129090659d866b4eecbe34ef756c2783d5b31e3cb3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/unbound-libs-1.16.2-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3881a51e94f20f61ceba02129090659d866b4eecbe34ef756c2783d5b31e3cb3", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.aarch64", + sha256 = "3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/usbredir-0.13.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.x86_64", + sha256 = "7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/usbredir-0.13.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.aarch64", + sha256 = "5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/userspace-rcu-0.12.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.x86_64", + sha256 = "119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/userspace-rcu-0.12.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + ], +) + +rpm( + name = "util-linux-0__2.37.4-21.el9.aarch64", + sha256 = "434fe9c8a283246524ced5b6637ef2f95ad0e1ab20cbeabc582592b30f69b0b8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/434fe9c8a283246524ced5b6637ef2f95ad0e1ab20cbeabc582592b30f69b0b8", + ], +) + +rpm( + name = "util-linux-0__2.37.4-21.el9.s390x", + sha256 = "bc5501f5a26586828a30cc97870f2f907d44c6107d7974c620ff920718b4d6bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bc5501f5a26586828a30cc97870f2f907d44c6107d7974c620ff920718b4d6bd", + ], +) + +rpm( + name = "util-linux-0__2.37.4-21.el9.x86_64", + sha256 = "77f5aa59c85c1231bde7f64a7e348bb7b4675a04e385e219275abbd748037075", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77f5aa59c85c1231bde7f64a7e348bb7b4675a04e385e219275abbd748037075", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-21.el9.aarch64", + sha256 = "1066ec56c02d69030fb95b0749f8d21e7748449ffa95bba4fb0e12ec938ca1d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-core-2.37.4-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1066ec56c02d69030fb95b0749f8d21e7748449ffa95bba4fb0e12ec938ca1d8", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-21.el9.s390x", + sha256 = "62553c85f62156441de1b4e5da924182b3bafabef47fe803539396fd44fadb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-core-2.37.4-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/62553c85f62156441de1b4e5da924182b3bafabef47fe803539396fd44fadb43", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-21.el9.x86_64", + sha256 = "1858fbea657a9edce414fd98b8260b37ef521769f06830fccc7831094ec04154", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1858fbea657a9edce414fd98b8260b37ef521769f06830fccc7831094ec04154", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-21.el9.x86_64", + sha256 = "1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-22.el9.aarch64", + sha256 = "321cbfe7e8a5354bdc99c56b3fed34dca626c7d0337bb5505c1d7302f87f8677", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/vim-minimal-8.2.2637-22.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/321cbfe7e8a5354bdc99c56b3fed34dca626c7d0337bb5505c1d7302f87f8677", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-22.el9.s390x", + sha256 = "96950333e54291cb96add201bd335581722e753221b4c1eee447a02838041984", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/vim-minimal-8.2.2637-22.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/96950333e54291cb96add201bd335581722e753221b4c1eee447a02838041984", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-22.el9.x86_64", + sha256 = "471e89c0410ca9204cabe323435b7fc787fffc8ef28734e324130f969caca462", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-22.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/471e89c0410ca9204cabe323435b7fc787fffc8ef28734e324130f969caca462", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.aarch64", + sha256 = "7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/virtiofsd-1.13.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.s390x", + sha256 = "4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/virtiofsd-1.13.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.x86_64", + sha256 = "531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/virtiofsd-1.13.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + ], +) + +rpm( + name = "which-0__2.21-29.el9.x86_64", + sha256 = "c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-29.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + ], +) + +rpm( + name = "which-0__2.21-30.el9.aarch64", + sha256 = "e31074fa3d7bbfb387f7d6d2c97988069594a6cd6c0bd7c798036a4f8ed7ab48", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/which-2.21-30.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e31074fa3d7bbfb387f7d6d2c97988069594a6cd6c0bd7c798036a4f8ed7ab48", + ], +) + +rpm( + name = "which-0__2.21-30.el9.s390x", + sha256 = "671cebde29b96ff50fd35e09b867505721144b4507c1c81ee60276f7c14f8723", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/which-2.21-30.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/671cebde29b96ff50fd35e09b867505721144b4507c1c81ee60276f7c14f8723", + ], +) + +rpm( + name = "which-0__2.21-30.el9.x86_64", + sha256 = "d602350243d5950c473624788e78e783461e5db242cc0a2d7a988e1b9a3e079b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-30.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d602350243d5950c473624788e78e783461e5db242cc0a2d7a988e1b9a3e079b", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.aarch64", + sha256 = "e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/xorriso-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.s390x", + sha256 = "35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/xorriso-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.x86_64", + sha256 = "15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorriso-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.aarch64", + sha256 = "c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.s390x", + sha256 = "e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.x86_64", + sha256 = "159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.aarch64", + sha256 = "99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-libs-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.s390x", + sha256 = "f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-libs-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.x86_64", + sha256 = "ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-libs-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.aarch64", + sha256 = "c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zlib-1.2.11-41.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.s390x", + sha256 = "bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zlib-1.2.11-41.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.x86_64", + sha256 = "370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zlib-1.2.11-41.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.aarch64", + sha256 = "bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.s390x", + sha256 = "09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.x86_64", + sha256 = "6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + ], +) + +# EDV dependency - START +http_file( + name = "custom-qemu", + downloaded_file_path = "qemu-kvm", + sha256 = "", + urls = [ + "file:///root/go/src/kubevirt.io/kubevirt/build/qemu-system-x86_64", + ], +) + +rpm( + name = "SDL2-0__2.26.0-1.el9.x86_64", + sha256 = "554ca63ca5c87170e907ae2f5182ea62e637006a8c5df229a4b4f9270ac23bd7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/SDL2-2.26.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "adwaita-cursor-theme-0__40.1.1-3.el9.x86_64", + sha256 = "709ea6715775ca94032d8b49148894185263397eaaea147a15da917556da3ea6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-cursor-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "adwaita-icon-theme-0__40.1.1-3.el9.x86_64", + sha256 = "a27bbc0988dd63b0ba8af01f42f2f6486cab6bf9a13077e6c5e542efaf5c793b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-icon-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "alsa-lib-0__1.2.13-2.el9.x86_64", + sha256 = "7b8bca6c63f0e08f6f06b941b073db319de2278fb7b2b99676a3261ac5d51e30", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/alsa-lib-1.2.13-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-0__2.38.0-4.el9.x86_64", + sha256 = "03e55a72bfb0776ba6a37dbc983ca25967ebc90da13022c1d159c47984284c6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-devel-0__2.38.0-4.el9.x86_64", + sha256 = "9d253f023dbdd8c52a300c44edd06b0d67ad2c72f76d02bdc5d94687d7277aa4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-devel-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-0__2.40.3-1.el9.x86_64", + sha256 = "df9b259bf65606248af738a8a70c35d7612e6ed9ba0cf3935930e35c7882bae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-devel-0__2.40.3-1.el9.x86_64", + sha256 = "d6410a0eeacb9e6bd22e891d1803fe838b339e0d91fe0068a11d94eb1d4262db", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-devel-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-0__2.36.0-5.el9.x86_64", + sha256 = "e0d28335d140043d1f2c7b052fdaad8428b1deacbfac3d1174890a176312bdd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-devel-0__2.36.0-5.el9.x86_64", + sha256 = "36bd7fda07c3f65e5daab91fc9ab2936b95f3f141d9522795820601ad9df18a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-devel-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "avahi-libs-0__0.8-22.el9.x86_64", + sha256 = "a50f286097400810fa026edd4128acd9e162d8209dbb4d90caa8661ce1bad7e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/avahi-libs-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "bluez-libs-0__5.72-4.el9.x86_64", + sha256 = "db99a11d01ee64912bad50211e5ce75f9c7a8101e8ca7a3c22ea1f33df14d6eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bluez-libs-5.72-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-iostreams-0__1.75.0-11.el9.x86_64", + sha256 = "569e83f709ee0f507adaa9aefb455945742c2007fb8707c9e6b18467cc85a4ea", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-iostreams-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-system-0__1.75.0-11.el9.x86_64", + sha256 = "5f69c1f1086c06e1aa2c7935197097fc82fcd2736f254dfaf0789038d1725716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-system-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-thread-0__1.75.0-11.el9.x86_64", + sha256 = "cf64248b3e12185189abdc16c6f65bdfa991d183c917603968e54d1146177e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-thread-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "brlapi-0__0.8.2-4.el9.x86_64", + sha256 = "0db4f2ec753e47873a49ab907838cee0f815b74989425a6dc124406002a47c8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brlapi-0.8.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-0__1.0.9-7.el9.x86_64", + sha256 = "6f3aeb611b3d80a031592d7eb54e1606100d4fdf3c94c368784c79b6cfd52d96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-devel-0__1.0.9-7.el9.x86_64", + sha256 = "40ee3f8fe83b5e16d6797f0cd4a3722c41c8fd4a5a2d0a2c6b41622cf29f87c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-devel-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "bzip2-devel-0__1.0.8-10.el9.x86_64", + sha256 = "1a9ddc7fb11abbb14f3b53697808aab021934800f0fd5947ecdcc560c70d625a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/bzip2-devel-1.0.8-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-0__1.17.4-7.el9.x86_64", + sha256 = "5f5177fd5b3ed4ffdf218f730e85af73c223b09f759e47b1c7f2df05d8f87655", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-devel-0__1.17.4-7.el9.x86_64", + sha256 = "e34ac60cd4006a904a835be11aa0849fcce7b3c53219b7dddc8f4b007b1302da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-0__1.17.4-7.el9.x86_64", + sha256 = "2329c39bdde48e1c2f0f64cfebb7edd92ea5188be374396402e03e876d06ad02", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-devel-0__1.17.4-7.el9.x86_64", + sha256 = "77613065496f7f097b7d85a74bee729eb1dd965eb59842c1bb3a5c127198e533", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cmake-filesystem-0__3.26.5-2.el9.x86_64", + sha256 = "4a3c39e721eb1c01bf5e421262c2f10f9ed6b7e987fd2f9c510d309e2b023222", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cmake-filesystem-3.26.5-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "colord-libs-0__1.4.5-4.el9.x86_64", + sha256 = "01af031bc42f35cad5f435fde26b969da0d659b8309caeaff76a66d8f29335d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/colord-libs-1.4.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cryptsetup-libs-0__2.7.2-4.el9.x86_64", + sha256 = "2249560ee705ab561670f4086a5babbd0e29ee38512a2c0a739ce4eaf34e3892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.7.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cups-libs-1__2.3.3op2-33.el9.x86_64", + sha256 = "0d8ae6703b6d5696b3e547ab2557f649e439704cc449f680ed3c01b5dc339627", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cups-libs-2.3.3op2-33.el9.x86_64.rpm", + ], +) + +rpm( + name = "dbus-devel-1__1.12.20-8.el9.x86_64", + sha256 = "9114eef0c3eea868948bb9f2e807d5aeefac3ab013a7f3dd176c4e165cf0c2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/dbus-devel-1.12.20-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "dejavu-sans-fonts-0__2.37-18.el9.x86_64", + sha256 = "aaff108008e6ba95800e40a53f81c7c3ba7d346325e602db187884032848151e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dejavu-sans-fonts-2.37-18.el9.noarch.rpm", + ], +) + +rpm( + name = "elfutils-libelf-devel-0__0.193-1.el9.x86_64", + sha256 = "152bbdef776d9448bc92d4cad14137206e717389d0d67a2048567f69a2b6df96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/elfutils-libelf-devel-0.193-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "fdk-aac-free-0__2.0.0-8.el9.x86_64", + sha256 = "dd7f3619a5a7b5a68f1ea8275afda8ec6ec9a218fa9d0ab5229f3cc5a11095fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fdk-aac-free-2.0.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "flac-libs-0__1.3.3-12.el9.x86_64", + sha256 = "603ef65286c8a0e7a498b7e2a79c8259075b6052731a626b47433cb4aa868457", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/flac-libs-1.3.3-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-0__2.14.0-2.el9.x86_64", + sha256 = "54675062b2254c9fedc04423c171b95a3dfa7226896a05a70c06ecc5af8b31c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-devel-0__2.14.0-2.el9.x86_64", + sha256 = "861c4215221bc6a4fe4f10b5321b23aaff11f47e3e44d7407b972ed424d6e2ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-devel-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-0__2.10.4-11.el9.x86_64", + sha256 = "9f134e7db3966162cd0373fee28e23795cd316f8ce2894d99890750e971eb7c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/freetype-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-devel-0__2.10.4-11.el9.x86_64", + sha256 = "a20eba25ea73dc4e7dd26b4b06c7af82b94e8a587d44eb1f91e7ed336ff82e04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/freetype-devel-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-0__1.0.10-6.el9.2.x86_64", + sha256 = "f5557a876e6517ebf020f9295bee7890cfb92a8a800a56d19729f413ce50e4ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-devel-0__1.0.10-6.el9.2.x86_64", + sha256 = "e12f772ada49ce459ae47383107c46eee5d156bb348c51158b9889c3cf9e52b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-devel-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fuse3-libs-0__3.10.2-9.el9.x86_64", + sha256 = "f9620a11fddf8e66cfec9f78d335e2a5af29793b96ee8740d297102cc7a8cb34", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fuse3-libs-3.10.2-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-0__2.42.6-4.el9.x86_64", + sha256 = "5bb9c411959293833a67a25d7d3b31a0fa37910d5bec01c219fd807b01915b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64", + sha256 = "8af5eb3da4cec1e95fbb63f2b03e6ad3990c612039e8678f14380ed678751853", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-devel-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64", + sha256 = "9612e4a738d0e54ad9ef039af0401e1bf2ea3808a981659d22a48fdc440c423b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-modules-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "glib2-devel-0__2.68.4-16.el9.x86_64", + sha256 = "7b248800aef3307e0d9c83e49e19e24a3c3953c2f2322de4c9ae7d852089778c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glib2-devel-2.68.4-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-0__1.3.14-9.el9.x86_64", + sha256 = "911ac19b0b08a9162959f8cee202bb62da5a0f1dd32fc54086bd7d08f9a89f23", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/graphite2-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-devel-0__1.3.14-9.el9.x86_64", + sha256 = "d3dc72e393e1fd8a30491bffa4c9a825c615f4d7a7e47affb7b2378796521a3c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/graphite2-devel-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gsm-0__1.0.19-6.el9.x86_64", + sha256 = "d4c242d54a503c80c07467b68e212986fdb65e4afb8487150143b4490b05177c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gsm-1.0.19-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk-update-icon-cache-0__3.24.31-5.el9.x86_64", + sha256 = "91ac46ed1e4bac38f5e0457635873916fee31adeef9fdfdec63ad7d9c34f4a15", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk-update-icon-cache-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-0__3.24.31-5.el9.x86_64", + sha256 = "37886175fbb321f4bb4102556d5163d87e0adfd07fcc7ec43f0b2452c4a2c547", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-devel-0__3.24.31-5.el9.x86_64", + sha256 = "bb3a014b6a7da8a5662d56a7e516cd18108fe75981adcdfa536ecd79a99b4ddd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-devel-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-0__2.7.4-10.el9.x86_64", + sha256 = "e0ba0095c24ee9c5239474257c3e516ac354c6605bc8e3b9bafaf2899b61b014", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/harfbuzz-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-devel-0__2.7.4-10.el9.x86_64", + sha256 = "5a08518d7bcf59a59d8b4ce5687719fb1d94f9c2afd53e54e9d2b7326d0cf81c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-devel-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-icu-0__2.7.4-10.el9.x86_64", + sha256 = "d536701878b2fad3217b51141422038a9c80aff3cf508c13d5bef22d18e5ddff", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-icu-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "hicolor-icon-theme-0__0.17-13.el9.x86_64", + sha256 = "835d0f243f99bc01d9f6320638ab74ad70ec990d1bc9ba8f7bc141c582a797f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hicolor-icon-theme-0.17-13.el9.noarch.rpm", + ], +) + +rpm( + name = "jbigkit-libs-0__2.1-23.el9.x86_64", + sha256 = "3731d07853beeeb76ef22e9a1f323802e74286b779a910af84d52b131f1662b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/jbigkit-libs-2.1-23.el9.x86_64.rpm", + ], +) + +rpm( + name = "langpacks-core-font-en-0__3.0-16.el9.x86_64", + sha256 = "95eb748d83b9373adb17813fc207aad5dd9ea1401d67ef970dd97c6d188c6844", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/langpacks-core-font-en-3.0-16.el9.noarch.rpm", + ], +) + +rpm( + name = "lcms2-0__2.12-3.el9.x86_64", + sha256 = "c60dfc4f79ab8b9f87ebc869e3db624c87438a2be9a925b16b44bfb855c4acac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/lcms2-2.12-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkio-0__1.5.0-1.el9.x86_64", + sha256 = "e87b93f549a0005c978eea5fea29931f1dcf77f96abccbb7ac3ca984e3eb45c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkio-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-0__1.7.0-11.el9.x86_64", + sha256 = "aae2ba2318b43f524d19abec471ca24961a6224f9400e0a8ab80707428766928", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-common-0__1.7.0-11.el9.x86_64", + sha256 = "1e8433f60ea9aa68029a98f121ccdca8a4b21faf263e552770167d5733eda5f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-common-1.7.0-11.el9.noarch.rpm", + ], +) + +rpm( + name = "libX11-devel-0__1.7.0-11.el9.x86_64", + sha256 = "87e790b99d5170c2c105b090dc601525a3b3125ff5fb59686ff633260a3f6ede", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-devel-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-xcb-0__1.7.0-11.el9.x86_64", + sha256 = "3d7effa1288251b34cef86e49ed56e023354e6bc7055d94e0ba71e12fa7b1774", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-xcb-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-0__1.0.9-8.el9.x86_64", + sha256 = "a0c14be959891eaff9097c1ec4d7c4b044301623d4080585cee72d740cd659ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-devel-0__1.0.9-8.el9.x86_64", + sha256 = "ff56ea9a25095b8345a90c7cf91ac72ce566573a396b935ae155bd28278b9e5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-devel-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-0__0.4.5-7.el9.x86_64", + sha256 = "fd7f5a54ff439c62583ca92b733995d1472cdf3bc3eeb5c4570bf78d7067307d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-devel-0__0.4.5-7.el9.x86_64", + sha256 = "6914a12df8fdd44f869d2a0a6ac4216e4b6a15cb56c87e7be2da0101e6def925", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-devel-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-0__1.2.0-7.el9.x86_64", + sha256 = "9c73249287c325db9721789a1468dc63c2c6910fadd6876d37b8132063d3fe98", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-devel-0__1.2.0-7.el9.x86_64", + sha256 = "dda8c70b042b12210b24fdd63719e31b0650870f6270ad8a860da2e3bbfb6846", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-devel-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-0__1.1.5-7.el9.x86_64", + sha256 = "46f527879c8821ac8353c0616a8f21d0d500584f316d19fbb2c555f52c96c6cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-devel-0__1.1.5-7.el9.x86_64", + sha256 = "e2bf2992316aeb77b25cffc63a3d73a972a2c548cad0f08e6d62fbd1d0fa68f9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-devel-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-0__1.3.4-8.el9.x86_64", + sha256 = "3714ed495275ffee5a8d374ae401cdef2c7bd30d2aebf90aecf4f1be8d6f896d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-devel-0__1.3.4-8.el9.x86_64", + sha256 = "a17c0bc8c1263ca9f42c713fa7da4e3786c0ab27379c0da5f3a726a09ff6ee22", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-devel-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-0__5.0.3-16.el9.x86_64", + sha256 = "309d12ca62069d02b6cf9d96d8d97de6b0267134ffd4b6952adc561269c8c9ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-devel-0__5.0.3-16.el9.x86_64", + sha256 = "3701f2806eaae708953e86dc5d7880809ad332234c8d7a079809f5fb3bd29a5a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-devel-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-0__2.3.3-8.el9.x86_64", + sha256 = "71c5ae479bb4a02a9c18901148a50cf07b192ef85dffa16e0187cf524364b466", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-devel-0__2.3.3-8.el9.x86_64", + sha256 = "d742f0ae22af703195d7dbf82424e0520675528421b50ffa3dee1d804f372e25", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-devel-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-0__1.7.10-8.el9.x86_64", + sha256 = "39b2cace8d69e83f56db672295e96641e39e83f4aed4b6c8e4c8fb20e6459a13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-devel-0__1.7.10-8.el9.x86_64", + sha256 = "4a8ee020699bd4bc84ef56edafc31a038663784d83c12be6e5b96ce16045e970", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-devel-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-0__1.1.4-10.el9.x86_64", + sha256 = "e53e69f3f5a5f13a899e804c428bd97239ffff5bec55bb0844346683b11b4f0f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-devel-0__1.1.4-10.el9.x86_64", + sha256 = "c53ed1fdeb74e2cc3459a0c56b93e52d1f82c1b812afab569bbfa094fce1ee77", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-devel-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-0__1.5.2-8.el9.x86_64", + sha256 = "fb0833176306c00bfb8a3f974ac807e8d702cd6ccdb7910ce9dff63f647e924c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-devel-0__1.5.2-8.el9.x86_64", + sha256 = "2e7e15e3f2ce8806baa30a3153f731ebe6729cb4149df26c123fe354db2b6685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-devel-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-0__0.9.10-16.el9.x86_64", + sha256 = "3e10d2880341fcb9dd697a6d1812981e67e976f571b23756c7d89d52c70f1142", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-devel-0__0.9.10-16.el9.x86_64", + sha256 = "fad7f6030e6d0f7daafb0d9e0ae0eb5b47a4d1014262ff818f66a3adb084868f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-devel-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-0__1.2.3-16.el9.x86_64", + sha256 = "a78023c45d39f3d608e217213ae6eca2032a99e9f6f98e34567a28a30229cca2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-devel-0__1.2.3-16.el9.x86_64", + sha256 = "e88f9e60ec9461492bc0e17c0b4dfd0ec8ddfabf6137df0f984594eb51655175", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-devel-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXxf86vm-0__1.1.4-18.el9.x86_64", + sha256 = "fe95e780bab5c4dda66acefaf35bdc6dddd483928cd2472cffa89a67ffc6b53b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXxf86vm-1.1.4-18.el9.x86_64.rpm", + ], +) + +rpm( + name = "libasyncns-0__0.8-22.el9.x86_64", + sha256 = "5214799bb68b6933ec92c4b183777565c1949757f545b6d84e13da189d91cb86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libasyncns-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "libatomic-0__11.5.0-7.el9.x86_64", + sha256 = "42d59da75f7e0ba9cf1ab079463b4efc5e131c4754ee9f6c40a9b2d09c233ecd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libatomic-11.5.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkid-devel-0__2.37.4-21.el9.x86_64", + sha256 = "37031505f779e5962c7a1c3ac07fdef8adcfb4b3de54d8153475a20384c40485", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkid-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libbpf-devel-2__1.5.0-1.el9.x86_64", + sha256 = "9f28bdb38de2425230f80a914594dbe4f0fc88c2a122aafcb5a77c1108c6a025", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libbpf-devel-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-0__0.2.13-4.el9.x86_64", + sha256 = "470b807fd8d03551f862cc629c4b5296b2ccc763d6109fd3294fb9f1898a75e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-devel-0__0.2.13-4.el9.x86_64", + sha256 = "267fcc6b5d45c72a08e566b5614bd97ec0fe3866bd4310e798748e510039c5e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-devel-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdrm-0__2.4.123-2.el9.x86_64", + sha256 = "67f930411a00d2c8e28d953b520ff41b5c0b29681192b4c1e290543161ae2cdb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdrm-2.4.123-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libedit-0__3.1-38.20210216cvs.el9.x86_64", + sha256 = "bfa91ff96f312b284a16a91b2eabcdae9e43c2f9b698fee6eec94040eaef8f7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libedit-3.1-38.20210216cvs.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-0__1.5.5-4.el9.x86_64", + sha256 = "7f282efb4675e8e2ffe4a8c75e737d2450c5273df60ebc311d388192d1353fbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-devel-0__1.5.5-4.el9.x86_64", + sha256 = "288d7c46784de0487f572dd0de0001a51b69af2c696ae4edd37da9adc6d62c39", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-devel-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libffi-devel-0__3.4.2-8.el9.x86_64", + sha256 = "39464cd83d7779bfbcadabe14a46bd8e8d90f7a73500e9d0481c8b1d9ce5dbdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libffi-devel-3.4.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libfontenc-0__1.1.3-17.el9.x86_64", + sha256 = "ebb70063dacc43d942d4c1947ae1bf3a95e8de22bc14549907404f085efc45e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfontenc-1.1.3-17.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-1__1.3.4-1.el9.x86_64", + sha256 = "129af138450cf5aba44d7a72bcccbf2c691dec72a29ac2bf769ae7dec2092ee3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-core-devel-1__1.3.4-1.el9.x86_64", + sha256 = "cc6852a620f5c4d12600d3cb6aeaab3320227478893f430cc9d29b99a7a2569d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-core-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-devel-1__1.3.4-1.el9.x86_64", + sha256 = "8f728a241c008a862c706e5627f293321171cb3bfb6a643fa0f4fda812403a21", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-egl-1__1.3.4-1.el9.x86_64", + sha256 = "6c815bac0524572490c81cfe5331b55fb3c87aef99ff96a5028210bc2397497b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-egl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-gles-1__1.3.4-1.el9.x86_64", + sha256 = "88b8f48433cb9009a53a5bad9c76f281c8d988edf6386f7a55fba58d0aa444bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-gles-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-glx-1__1.3.4-1.el9.x86_64", + sha256 = "9cf25dfa3a3fb57f2142f7941b7be1c020e214e01863ceb3901cfa2204b558e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-glx-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-opengl-1__1.3.4-1.el9.x86_64", + sha256 = "42af4046807453b3de347ec7c02092559eab57b81e1292e28b4bdd92875ed693", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-opengl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libgusb-0__0.3.8-2.el9.x86_64", + sha256 = "8b9da6b545db0e30875de3c198388c4194766ac5d94b3cda72afdedfd2ce9a67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgusb-0.3.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-0__67.1-9.el9.x86_64", + sha256 = "dbd4536fda7c8a691a14f3de0185dc404898cf0aa6a520ea4280ed018644f16f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libicu-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-devel-0__67.1-9.el9.x86_64", + sha256 = "f529fcd5f0f9882b393c1ba4ab38ae10b667a1bff9a36d18539bde5dda2b4ceb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libicu-devel-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libiscsi-0__1.19.0-5.el9.x86_64", + sha256 = "384e20a68a914538e6cdc1c5aac4115b50bf569bde044abb2db193af06f7f360", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libiscsi-1.19.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libjpeg-turbo-0__2.0.90-7.el9.x86_64", + sha256 = "c99423ff41a2df5fbf42c56201a8610791a9a60c3891a613f0d0be2dcb6f8d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libjpeg-turbo-2.0.90-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libldac-0__2.0.2.3-10.el9.x86_64", + sha256 = "186d3dccb1e840693e612c41db46cd2a3df39bd7d8c82883aed8e5bf4263ac6d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libldac-2.0.2.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libmount-devel-0__2.37.4-21.el9.x86_64", + sha256 = "7e42a62b1e844cbd2baf2f518edfcd7dfb2434df107787c0d2f657a04a3df366", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmount-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libogg-2__1.3.4-6.el9.x86_64", + sha256 = "ff8b1d6cf009aef8c8d1d5508c456479f62b7069e1d6a3f225b6233f645c82ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libogg-1.3.4-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpciaccess-0__0.16-7.el9.x86_64", + sha256 = "7f4f160406a6f66aee581582b0355afaafd5f769366c13c62888d21a3a3cb9db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpciaccess-0.16-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpng-devel-2__1.6.37-12.el9.x86_64", + sha256 = "2b40cfc1167db99a7703b2e17548b826b72808dff829ec93b57211660b33fb26", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpng-devel-1.6.37-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64", + sha256 = "360fba78adaa83fa504c9a65b30f13ed90c197b28a189bb371b8a1425ab31a0b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libproxy-webkitgtk4-0.4.15-35.el9.x86_64.rpm", + ], +) + +rpm( + name = "librados2-2__16.2.4-5.el9.x86_64", + sha256 = "6786852b684ea584343d560c7e0a7303790f1129d320b493df3c45a73850d073", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librados2-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "librbd1-2__16.2.4-5.el9.x86_64", + sha256 = "d4d1549eb600af4efc546630fc89170905e8b2c174d8528315d36451879eacc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librbd1-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsbc-0__1.4-9.el9.x86_64", + sha256 = "495ad3d92df325809734618b970a470cba020ded1fda8019ba17f835a7ff5db9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsbc-1.4-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-devel-0__3.6-3.el9.x86_64", + sha256 = "6a8f4b682da2bb46f64ae5332e8753fd189c43d8c1d942a78289c12fb0bee71c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libselinux-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsepol-devel-0__3.6-3.el9.x86_64", + sha256 = "f8f1f7a6c04b28c4ad596a486d34cc3f4675d00f05994b4cd6f27cffd2603d12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsepol-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsndfile-0__1.0.31-9.el9.x86_64", + sha256 = "5495f858a549940da30d5c8d807dbc3ef27ae3de9ffb93119c10614ea3df3b6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsndfile-1.0.31-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libstemmer-0__0-18.585svn.el9.x86_64", + sha256 = "4edc1f498e8602e77761a54f98138ef6831ff7d3d32f1725b87465511eeafdcd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libstemmer-0-18.585svn.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-0__0.1.28-8.el9.x86_64", + sha256 = "1f58c89d65f57dadd49a927c0005bfd4dad36f0b6060cd30d5fd6831ded957ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-devel-0__0.1.28-8.el9.x86_64", + sha256 = "f5a94d1f0b203ddadfacaf5f35669862658519807f1bebd8aba650271a83785a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-devel-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-0__4.4.0-13.el9.x86_64", + sha256 = "56c8fd8d0a498f4079cb5a9e43a1ef5dc2feecfc283d4c642b6fb087f20bd1c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-devel-0__4.4.0-13.el9.x86_64", + sha256 = "c85898a1d9d8ce308f1451b97ee99104d1deeaf2e84269facb9301714ecfa618", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-devel-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtracker-sparql-0__3.1.2-3.el9.x86_64", + sha256 = "f2206284f482dec85efc50f329ddd441eb6acb937d2ee6b5d8ba3311cd6ff1f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtracker-sparql-3.1.2-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libvorbis-1__1.3.7-5.el9.x86_64", + sha256 = "b6566ca8045af971aa48ca65327e183a7bc4f6ec59f36db2de26a6caa2f87074", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvorbis-1.3.7-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-client-0__1.21.0-1.el9.x86_64", + sha256 = "2b4a3e9acef0b0967f962e960f0c87f6f7cd51aa04262ab2ecf2ab58173d80c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-client-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-cursor-0__1.21.0-1.el9.x86_64", + sha256 = "583bf4b6238e38abcd08b4925dda13e371f5b4a68b5e860bf351fdeff4860493", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-cursor-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-egl-0__1.21.0-1.el9.x86_64", + sha256 = "cb8aaac077968b8d869e0f178274d3ee86b16bed9bcfaf73e3220c7254ce337a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-egl-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-server-0__1.21.0-1.el9.x86_64", + sha256 = "ebd8ae6e3ce81c785ab72d60b5317b8b376340a0bf5be460be3245368465d619", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-server-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwebp-0__1.2.0-8.el9.x86_64", + sha256 = "9010f71b826f720a8d16ac20e144187ffa47b163c64933e1c68cb4add2c7946d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwebp-1.2.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-0__1.13.1-9.el9.x86_64", + sha256 = "569018774aeb89760ade7d49c35bc1489ed0fdc3ddd6a2858f7a56811485c93f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-devel-0__1.13.1-9.el9.x86_64", + sha256 = "c40c68abf168ec900bdb1492fd444fe5442d41a74480e900ae9c66626b413cc1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-devel-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-0__1.5.3-1.el9.x86_64", + sha256 = "aec3b6a1459018ac7993f843b595b9b0548b4457ab5b87adea3b3c23e35462d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxdp-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-devel-0__1.5.3-1.el9.x86_64", + sha256 = "aed70eb627e572b4ef3648993b9c9d512d1915a98f793602a7ad1478fc6e599e", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxdp-devel-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-0__1.0.3-4.el9.x86_64", + sha256 = "240837601b4cb9260b28f66e39ad45c889e27902b4a80b36a25532c0a19ccf14", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-devel-0__1.0.3-4.el9.x86_64", + sha256 = "d27298c194096fc236ab2163bd971ba06484c3ead58d26cd8bde3eaa9db4b8f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-devel-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxshmfence-0__1.3-10.el9.x86_64", + sha256 = "a9681af3e5e80d7f099641ac7a37bdb36d929e897152a6490856f5461831cd5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxshmfence-1.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxml2-devel-0__2.9.13-9.el9.x86_64", + sha256 = "f98f3688a0303007bff3ec562df8b6b0d700549ca59ca91422ee152c222d461b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxml2-devel-2.9.13-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libzstd-devel-0__1.5.5-1.el9.x86_64", + sha256 = "7bb2aac4e8480aaa589626b202a098bc17bec3b5fbfc64c741f8d69e2b2b99bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libzstd-devel-1.5.5-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-filesystem-0__20.1.8-1.el9.x86_64", + sha256 = "b1882b91d71db936aa4fdd8a709cca21d3d14b6129912e1160834ec6c430e4d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-filesystem-20.1.8-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-libs-0__20.1.8-1.el9.x86_64", + sha256 = "30601498486e725eb19433bfdbb8b4effb8cceaf1c48e296f6d580551d3bf532", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-libs-20.1.8-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-dri-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "85a691ca4773d283c9c7929dd63eece1e430d4b14abf2b63b7793289c1da477f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-dri-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-filesystem-0__24.2.8-2.el9.x86_64", + sha256 = "915ec77d7cf42c403095bd006adb75968883e515654d7bbb0de3278e00cf2827", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-filesystem-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libEGL-0__24.2.8-2.el9.x86_64", + sha256 = "db5a7f9c9b5476ec5c173a30a9e042a076c74f4ba4143402ed6ee7e6dc18be62", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libEGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libGL-0__24.2.8-2.el9.x86_64", + sha256 = "eb9cf4f7b8f32033a42d657e4ca4c4b2cff18b610f52b0203909740a2900828a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-0__24.2.8-2.el9.x86_64", + sha256 = "7840459f296af4e98ecbc671d8fee083dd9708426dc06ccdfcde997091dde1a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-devel-0__24.2.8-2.el9.x86_64", + sha256 = "397a54364c6344b1dd7bfb26c326c54738e81fd3129d019df554acd9482a1fb9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-devel-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libglapi-0__24.2.8-2.el9.x86_64", + sha256 = "ef1ab98c5305f5d421db001828ab9c6d737314f0e8e740d29384f8b2884aa16e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libglapi-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "1af3ad02c088a0ed981298ac73609b6c2da5fea70782ec4c04de14acbc854127", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-vulkan-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mkfontscale-0__1.2.1-3.el9.x86_64", + sha256 = "a7f013da35ef80879e3f327ebf2fb31d8fd8f0811572693153d470842788068f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mkfontscale-1.2.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "openjpeg2-0__2.4.0-8.el9.x86_64", + sha256 = "ed25f681305664429a0202ce98305e42972d0096ba957358c94856b012bb4379", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/openjpeg2-2.4.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "opus-0__1.3.1-10.el9.x86_64", + sha256 = "d194718353f0874b9f85327821fc45adba85f646474b473d1b455b9075a77ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/opus-1.3.1-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-0__1.48.7-3.el9.x86_64", + sha256 = "d366f6b4ce6f1714ff880b0afa3ebcb004f245bf578937709db6417aa88f1fee", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-devel-0__1.48.7-3.el9.x86_64", + sha256 = "497fd93cea696fce84b38e69efa17df149cb3ba49268ec513aa2d49b3ab0fe86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-devel-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-cpp-0__8.44-4.el9.x86_64", + sha256 = "0e459d7742ef54bd7c4d9d4e75bee253a95370e074c221f402b05f14fe274459", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-cpp-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-devel-0__8.44-4.el9.x86_64", + sha256 = "87005c24261e0d6f9908180323135a13a8761b1ddd0303a3052aa1f4ab156d7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-devel-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf16-0__8.44-4.el9.x86_64", + sha256 = "9590a2fed0802ffa2c563742aaf20356547f3c96bc7c1ab1c257f6ca9abcba27", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf16-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf32-0__8.44-4.el9.x86_64", + sha256 = "5eda4debda2b7a87dcc6b1afa0577c1e77f162509a80438f403bebd871b50bed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf32-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-devel-0__10.40-6.el9.x86_64", + sha256 = "32bc7fa49398097a0b7ad6ab5281a718bc91558953636fd536b7bbef189defce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-devel-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf16-0__10.40-6.el9.x86_64", + sha256 = "d5e028330f87b51930ffc9d0dd5668673563d4282eeed3a082c546966249bf85", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf16-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf32-0__10.40-6.el9.x86_64", + sha256 = "55a6230c51157596d224737b43d07477c8537e88ae00c561123de317fcc8932a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf32-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-0__1.0.1-1.el9.x86_64", + sha256 = "0f3d1760c6bf71e2413c323eff5fdd2b68cedd71e106cba77c58a93aa04a76f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-alsa-0__1.0.1-1.el9.x86_64", + sha256 = "5be3439c7d5b108d1fcf0e7654f6639551b1686880bf083ff0b33c541a060164", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-alsa-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64", + sha256 = "5330d9280bbc7b7a9ce4f78ad5ae7997281d75a805c93e28cfc6c4d785cd8e61", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64", + sha256 = "6e2a74bbc6eff6421e3bd078f7b253fac88069e7938b06816fd1565cdf053ba3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-libs-0__1.0.1-1.el9.x86_64", + sha256 = "5e510c378847a946683c9eacc2bd9c7fd27e6b1118a5456673da9dbadb609716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-media-session-0__0.3.32-3.el9.x86_64", + sha256 = "10a532cff1ff9502933cb69d3ec7b887da1986321c59bb45dbcf2553b5ce7cd9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-media-session-0.3.32-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-pulseaudio-0__1.0.1-1.el9.x86_64", + sha256 = "e4a705cc9513a7fbd0e442b937f2217708b563df37a26ae4743c4e84a81af410", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-pulseaudio-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pixman-devel-0__0.40.0-6.el9.x86_64", + sha256 = "b0bd4db0173d65f476dec24cfd5ce7bc196fc88713ee2e5acf5d1b3542c483d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-devel-0.40.0-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-0__15.0-3.el9.x86_64", + sha256 = "8d2b4de1bbd733e1c85ed0152fc8439b640f09ac3a5d6792092549bfbe42e7d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-glib2-0__15.0-3.el9.x86_64", + sha256 = "bef7faba9d974349bc52cf5f1499bdd7b986fc1ea4ddfdf6e74d9c54ea5b569f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-glib2-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "rtkit-0__0.11-29.el9.x86_64", + sha256 = "e4e19d6b97ab3bbef93fa7d24949e2888f2dbaaf053529e12da1a372db7e8084", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/rtkit-0.11-29.el9.x86_64.rpm", + ], +) + +rpm( + name = "shared-mime-info-0__2.1-5.el9.x86_64", + sha256 = "3c04e67223e1c61dfd06c378d49663c4289d974099b21a472631d94644fec0ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shared-mime-info-2.1-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "sound-theme-freedesktop-0__0.8-17.el9.x86_64", + sha256 = "e7b65924babd215e23e214bcc77f6b2d78764415d31d138db9c2bd23b3a71e24", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sound-theme-freedesktop-0.8-17.el9.noarch.rpm", + ], +) + +rpm( + name = "sysprof-capture-devel-0__3.40.1-3.el9.x86_64", + sha256 = "57ef7ebd2b77a0671a90b6f728e6ba9e72a0c12ac7262b7127f0d13a35eec1ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sysprof-capture-devel-3.40.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "usbutils-0__017-1.el9.x86_64", + sha256 = "723291f990fd4c93233e4f4d52995ecb57a7e976074384ec2da3b64c6060bb58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/usbutils-017-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte-profile-0__0.64.2-2.el9.x86_64", + sha256 = "20c7cc4d012677a19ef11a5bf7c89d13bd0462b63a4e570a151384c0d4850f7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte-profile-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte291-0__0.64.2-2.el9.x86_64", + sha256 = "fc5b398115d0988599e9959c5e58ad372961691d67e13e1bea43354dc7f31ae4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte291-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-loader-0__1.4.304.0-1.el9.x86_64", + sha256 = "284a3909148079a2e75a892aafc16dfee651ecdf02e1eb26f2fbd8009569bd2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-loader-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-tools-0__1.4.304.0-1.el9.x86_64", + sha256 = "84871be0f7707cb101fd494b69312279c68ce20643dbe2512bebc7ab80687443", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-tools-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "wayland-devel-0__1.21.0-1.el9.x86_64", + sha256 = "c19da9a5052bdd8895f058d20e2a900c2c8029491cae4302bca1901743fda93d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/wayland-devel-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64", + sha256 = "7e2f0ac1bbc9b58b34cdda0caa169a39a304c43a4345823356c3c973f2b65e50", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webkit2gtk3-jsc-2.48.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webrtc-audio-processing-0__0.3.1-8.el9.x86_64", + sha256 = "94819790916299e9326bce0b471f1c317c9574cf67d090700ba6df7bf3206c76", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webrtc-audio-processing-0.3.1-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "xdg-dbus-proxy-0__0.1.3-1.el9.x86_64", + sha256 = "b960d89bf0aacd8b9d5595bcf55433c819881374f7b43771dbc45887fcb7e5d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xdg-dbus-proxy-0.1.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "xkeyboard-config-0__2.33-2.el9.x86_64", + sha256 = "ca47ef1bfc9cf8b0996ffad8c423270e84f87fb2a32386b03edadc5d38a2fdf5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xkeyboard-config-2.33-2.el9.noarch.rpm", + ], +) + +rpm( + name = "xml-common-0__0.6.3-58.el9.x86_64", + sha256 = "f5d8c3fe25e7e46e39bac4a03b1b6c7b9601e6df62af59e4edf34548406d4f95", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xml-common-0.6.3-58.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64", + sha256 = "3a9c430034883be724a7d9d7492594d3637d34d410170d47300d32a2edf630c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-fonts-ISO8859-1-100dpi-7.5-33.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-proto-devel-0__2024.1-1.el9.x86_64", + sha256 = "8a41299cd4bbc6e4671aa4e4069cef8888689351062101de9966981bcc766900", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-proto-devel-2024.1-1.el9.noarch.rpm", + ], +) + +rpm( + name = "xz-devel-0__5.2.5-8.el9.x86_64", + sha256 = "b04077515f5bea9a46adaf85a5217cec0f7eaa2a1286c5147310aedfc57bf94f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xz-devel-5.2.5-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "zlib-devel-0__1.2.11-41.el9.x86_64", + sha256 = "f41f5fc4a53f5b84e06b815dd3402847eb0415bf74bfb77ce490d9920fab91b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/zlib-devel-1.2.11-41.el9.x86_64.rpm", + ], +) +# EDV dependency - END diff --git a/kubevirt-patch/v1.7.0/cmd-virtlauncher-BUILD.bazel b/kubevirt-patch/v1.7.0/cmd-virtlauncher-BUILD.bazel new file mode 100644 index 0000000..15ab4bd --- /dev/null +++ b/kubevirt-patch/v1.7.0/cmd-virtlauncher-BUILD.bazel @@ -0,0 +1,234 @@ +load("@bazeldnf//bazeldnf:defs.bzl", "xattrs") +load("@io_bazel_rules_docker//contrib:group.bzl", "group_entry", "group_file") +load("@io_bazel_rules_docker//contrib:passwd.bzl", "passwd_entry", "passwd_file") +load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") +load("@rules_oci//oci:defs.bzl", "oci_image") +load("@rules_pkg//:pkg.bzl", "pkg_tar") +load("//staging/src/kubevirt.io/client-go/version:def.bzl", "version_x_defs") + +go_library( + name = "go_default_library", + srcs = ["virt-launcher.go"], + importpath = "kubevirt.io/kubevirt/cmd/virt-launcher", + visibility = ["//visibility:private"], + deps = [ + "//pkg/apimachinery/wait:go_default_library", + "//pkg/cloud-init:go_default_library", + "//pkg/config:go_default_library", + "//pkg/container-disk:go_default_library", + "//pkg/downwardmetrics:go_default_library", + "//pkg/ephemeral-disk:go_default_library", + "//pkg/hooks:go_default_library", + "//pkg/hotplug-disk:go_default_library", + "//pkg/ignition:go_default_library", + "//pkg/util:go_default_library", + "//pkg/virt-config:go_default_library", + "//pkg/virt-handler/cmd-client:go_default_library", + "//pkg/virt-launcher:go_default_library", + "//pkg/virt-launcher/metadata:go_default_library", + "//pkg/virt-launcher/notify-client:go_default_library", + "//pkg/virt-launcher/standalone:go_default_library", + "//pkg/virt-launcher/virtwrap:go_default_library", + "//pkg/virt-launcher/virtwrap/agent-poller:go_default_library", + "//pkg/virt-launcher/virtwrap/api:go_default_library", + "//pkg/virt-launcher/virtwrap/cli:go_default_library", + "//pkg/virt-launcher/virtwrap/cmd-server:go_default_library", + "//pkg/virt-launcher/virtwrap/util:go_default_library", + "//staging/src/kubevirt.io/api/core/v1:go_default_library", + "//staging/src/kubevirt.io/client-go/log:go_default_library", + "//vendor/github.com/spf13/pflag:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", + "//vendor/libvirt.org/go/libvirt:go_default_library", + ], +) + +go_binary( + name = "virt-launcher", + embed = [":go_default_library"], + visibility = ["//visibility:public"], + x_defs = version_x_defs(), +) + +pkg_tar( + name = "virt-launcher-tar", + srcs = [ + "node-labeller/node-labeller.sh", + ":virt-launcher", + "//cmd/container-disk-v2alpha:container-disk", + "//cmd/virt-freezer", + "//cmd/virt-launcher-monitor", + "//cmd/virt-probe", + "//cmd/virt-tail", + ], + package_dir = "/usr/bin", +) + +xattrs( + name = "setcaps", + capabilities = { + "/usr/bin/virt-launcher-monitor": [ + "cap_net_bind_service", + ], + }, + tar = ":virt-launcher-tar", +) + +passwd_entry( + name = "root-user", + gid = 0, + home = "/root", + info = "root", + shell = "/bin/bash", + uid = 0, + username = "root", +) + +group_entry( + name = "qemu-group", + gid = 107, + groupname = "qemu", +) + +group_entry( + name = "root-group", + gid = 0, + groupname = "root", +) + +group_file( + name = "group", + entries = [ + ":qemu-group", + ":root-group", + ], +) + +passwd_entry( + name = "qemu-user", + gid = 107, + home = "/home/qemu", + shell = "/bin/bash", + uid = 107, + username = "qemu", +) + +passwd_file( + name = "passwd", + entries = [ + ":qemu-user", + ":root-user", + ], +) + +pkg_tar( + name = "libvirt-config", + srcs = [ + ":qemu.conf", + ":virtqemud.conf", + ], + package_dir = "/etc/libvirt", +) + +pkg_tar( + name = "passwd-tar", + srcs = [ + ":group", + ":passwd", + ], + mode = "0644", + package_dir = "etc", + visibility = ["//visibility:public"], +) + +pkg_tar( + name = "nsswitch-tar", + srcs = [ + ":nsswitch.conf", + ], + mode = "0644", + package_dir = "/etc", +) + +pkg_tar( + name = "qemu-hook-tar", + srcs = [ + ":qemu", + ], + mode = "0755", + package_dir = "/etc/libvirt/hooks", +) + +# Workaround for https://github.com/moby/moby/issues/44106 +# Need to create the directory upfront, otherwise it gets assigned wrong +# permissions when unpacked. +pkg_tar( + name = "qemu-kvm-modules-dir-tar", + empty_dirs = [ + "usr/lib64/qemu-kvm", + ], + mode = "0755", + owner = "0.0", +) + +pkg_tar( + name = "get-version-tar", + srcs = ["//:get-version"], + package_dir = "/", +) + +# EDV dependency - START +pkg_tar( + name = "custom-qemu-build", + srcs = ["@custom-qemu//file"], + mode = "0755", + owner = "0.0", + package_dir = "/usr/libexec", + visibility = ["//visibility:public"], +) +# EDV dependency - END + +oci_image( + name = "version-container", + base = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": "@go_image_base_aarch64", + "@io_bazel_rules_go//go/platform:linux_s390x": "@go_image_base_s390x", + "//conditions:default": "@go_image_base", + }), + tars = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": [ + "//rpm:launcherbase_aarch64", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-kvm-modules-dir-tar", + ], + "@io_bazel_rules_go//go/platform:linux_s390x": [ + "//rpm:launcherbase_s390x", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-kvm-modules-dir-tar", + ], + "//conditions:default": [ + "//rpm:launcherbase_x86_64", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":qemu-kvm-modules-dir-tar", + ":custom-qemu-build", # EDV dependency + ], + }), +) + +oci_image( + name = "virt-launcher-image", + base = ":version-container", + entrypoint = ["/usr/bin/virt-launcher"], + tars = [":setcaps"], + visibility = ["//visibility:public"], +) diff --git a/kubevirt-patch/v1.7.0/rpm-BUILD.bazel b/kubevirt-patch/v1.7.0/rpm-BUILD.bazel new file mode 100644 index 0000000..3d8fb77 --- /dev/null +++ b/kubevirt-patch/v1.7.0/rpm-BUILD.bazel @@ -0,0 +1,3974 @@ +load("@bazeldnf//bazeldnf:defs.bzl", "bazeldnf", "rpm", "rpmtree", "tar2files") + +bazeldnf( + name = "sandbox_x86_64", + command = "sandbox", + tar = ":sandboxroot_x86_64", +) + +bazeldnf( + name = "sandbox_aarch64", + command = "sandbox", + tar = ":sandboxroot_aarch64", +) + +bazeldnf( + name = "sandbox_s390x", + command = "sandbox", + tar = ":sandboxroot_s390x", +) + +bazeldnf( + name = "ldd_x86_64", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_x86_64", + rulename = "libvirt-libs_x86_64", +) + +bazeldnf( + name = "ldd_aarch64", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_aarch64", + rulename = "libvirt-libs_aarch64", +) + +bazeldnf( + name = "ldd_s390x", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_s390x", + rulename = "libvirt-libs_s390x", +) + +tar2files( + name = "libvirt-libs_aarch64", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.1", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.37.1", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.3.1", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.1", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.10010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.10010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.10010.0", + "libvirt.so.0", + "libvirt.so.0.10010.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_aarch64", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_s390x", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.1", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.37.1", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.3.1", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.1", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.10010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.10010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.10010.0", + "libvirt.so.0", + "libvirt.so.0.10010.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_s390x", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_x86_64", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libacl.so.1", + "libacl.so.1.1.2301", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.1", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.37.1", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.3.1", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.1", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.10010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.10010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.10010.0", + "libvirt.so.0", + "libvirt.so.0.10010.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_x86_64", + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-7.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@elfutils-libelf-0__0.193-1.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-9.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.14.0-2.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-6.el9.aarch64//rpm", + "@libatomic-0__11.5.0-11.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-21.el9.aarch64//rpm", + "@libbpf-2__1.5.0-2.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-21.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-21.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-21.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-12.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-4.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-26.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-3.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__9.1.0-20.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-39.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.65-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-15.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.aarch64//rpm", + "@systemd-libs-0__252-55.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@util-linux-0__2.37.4-21.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-21.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-7.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.193-1.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-9.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.14.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-21.el9.s390x//rpm", + "@libbpf-2__1.5.0-2.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libfdisk-0__2.37.4-21.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-21.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-21.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-12.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-4.el9.s390x//rpm", + "@openssl-1__3.5.1-3.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-26.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-3.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__9.1.0-20.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-39.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.65-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-15.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-8.el9.s390x//rpm", + "@systemd-libs-0__252-55.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@util-linux-0__2.37.4-21.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-21.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@elfutils-libelf-0__0.193-1.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-9.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.14.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libbpf-2__1.5.0-2.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-12.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-4.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-26.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-3.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-20.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-39.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.65-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-15.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.x86_64//rpm", + "@systemd-libs-0__252-55.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_aarch64", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-7.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-0__1.0.8-10.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@capstone-0__4.0.2-10.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@dmidecode-1__3.6-1.el9.aarch64//rpm", + "@edk2-aarch64-0__20241117-3.el9.aarch64//rpm", + "@elfutils-libelf-0__0.193-1.el9.aarch64//rpm", + "@ethtool-2__6.15-1.el9.aarch64//rpm", + "@expat-0__2.5.0-5.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@gettext-0__0.21-8.el9.aarch64//rpm", + "@gettext-libs-0__0.21-8.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-9.el9.aarch64//rpm", + "@gnutls-dane-0__3.8.3-9.el9.aarch64//rpm", + "@gnutls-utils-0__3.8.3-9.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.14.0-2.el9.aarch64//rpm", + "@iproute-tc-0__6.14.0-2.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@json-glib-0__1.6.6-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-6.el9.aarch64//rpm", + "@libatomic-0__11.5.0-11.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-21.el9.aarch64//rpm", + "@libbpf-2__1.5.0-2.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libevent-0__2.1.12-8.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-21.el9.aarch64//rpm", + "@libfdt-0__1.6.0-7.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgomp-0__11.5.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__57.0-1.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-21.el9.aarch64//rpm", + "@libnbd-0__1.20.3-4.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpng-2__1.6.37-12.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@librdmacm-0__57.0-1.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libslirp-0__4.4.0-8.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-21.el9.aarch64//rpm", + "@libssh-0__0.10.4-13.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-13.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libtpms-0__0.9.6-11.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libusbx-0__1.0.26-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-client-0__10.10.0-13.el9.aarch64//rpm", + "@libvirt-daemon-common-0__10.10.0-13.el9.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-13.el9.aarch64//rpm", + "@libvirt-daemon-log-0__10.10.0-13.el9.aarch64//rpm", + "@libvirt-libs-0__10.10.0-13.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-12.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@lzo-0__2.10-7.el9.aarch64//rpm", + "@lzop-0__1.04-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-4.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-3.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@numad-0__0.5-37.20150602git.el9.aarch64//rpm", + "@openssl-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-26.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pixman-0__0.40.0-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-3.el9.aarch64//rpm", + "@polkit-0__0.117-14.el9.aarch64//rpm", + "@polkit-libs-0__0.117-14.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@protobuf-c-0__1.3.3-13.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__9.1.0-20.el9.aarch64//rpm", + "@qemu-kvm-common-17__9.1.0-20.el9.aarch64//rpm", + "@qemu-kvm-core-17__9.1.0-20.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__9.1.0-20.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-20.el9.aarch64//rpm", + "@qemu-kvm-device-usb-host-17__9.1.0-20.el9.aarch64//rpm", + "@qemu-kvm-device-usb-redirect-17__9.1.0-20.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-39.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.65-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-15.el9.aarch64//rpm", + "@snappy-0__1.1.8-8.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.aarch64//rpm", + "@swtpm-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.aarch64//rpm", + "@systemd-0__252-55.el9.aarch64//rpm", + "@systemd-container-0__252-55.el9.aarch64//rpm", + "@systemd-libs-0__252-55.el9.aarch64//rpm", + "@systemd-pam-0__252-55.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-55.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@unbound-libs-0__1.16.2-21.el9.aarch64//rpm", + "@usbredir-0__0.13.0-2.el9.aarch64//rpm", + "@util-linux-0__2.37.4-21.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-21.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@virtiofsd-0__1.13.0-1.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-0__5.2.5-8.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + "@zstd-0__1.5.5-1.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_s390x", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-7.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-10.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.193-1.el9.s390x//rpm", + "@ethtool-2__6.15-1.el9.s390x//rpm", + "@expat-0__2.5.0-5.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-9.el9.s390x//rpm", + "@gnutls-dane-0__3.8.3-9.el9.s390x//rpm", + "@gnutls-utils-0__3.8.3-9.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.14.0-2.el9.s390x//rpm", + "@iproute-tc-0__6.14.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libatomic-0__11.5.0-11.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-21.el9.s390x//rpm", + "@libbpf-2__1.5.0-2.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-21.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__57.0-1.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-21.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpng-2__1.6.37-12.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-21.el9.s390x//rpm", + "@libssh-0__0.10.4-13.el9.s390x//rpm", + "@libssh-config-0__0.10.4-13.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtpms-0__0.9.6-11.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-client-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-common-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-log-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-libs-0__10.10.0-13.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-12.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-4.el9.s390x//rpm", + "@nmap-ncat-3__7.92-3.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openssl-1__3.5.1-3.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-26.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-3.el9.s390x//rpm", + "@polkit-0__0.117-14.el9.s390x//rpm", + "@polkit-libs-0__0.117-14.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@protobuf-c-0__1.3.3-13.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-common-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-core-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-ccw-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-device-usb-host-17__9.1.0-20.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-39.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.65-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-15.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-8.el9.s390x//rpm", + "@swtpm-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-libs-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-tools-0__0.8.0-2.el9.s390x//rpm", + "@systemd-0__252-55.el9.s390x//rpm", + "@systemd-container-0__252-55.el9.s390x//rpm", + "@systemd-libs-0__252-55.el9.s390x//rpm", + "@systemd-pam-0__252-55.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-55.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@unbound-libs-0__1.16.2-21.el9.s390x//rpm", + "@util-linux-0__2.37.4-21.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-21.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@virtiofsd-0__1.13.0-1.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_x86_64", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-3.el9.x86_64//rpm", + "@elfutils-libelf-0__0.193-1.el9.x86_64//rpm", + "@ethtool-2__6.15-1.el9.x86_64//rpm", + "@expat-0__2.5.0-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-9.el9.x86_64//rpm", + "@gnutls-dane-0__3.8.3-9.el9.x86_64//rpm", + "@gnutls-utils-0__3.8.3-9.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.14.0-2.el9.x86_64//rpm", + "@iproute-tc-0__6.14.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libbpf-2__1.5.0-2.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__57.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__57.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtpms-0__0.9.6-11.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-client-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-13.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-12.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-4.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-3.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openssl-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-26.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-3.el9.x86_64//rpm", + "@polkit-0__0.117-14.el9.x86_64//rpm", + "@polkit-libs-0__0.117-14.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@protobuf-c-0__1.3.3-13.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-vga-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-device-usb-host-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-device-usb-redirect-17__9.1.0-20.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-39.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.65-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-15.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.x86_64//rpm", + "@swtpm-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.x86_64//rpm", + "@systemd-0__252-55.el9.x86_64//rpm", + "@systemd-container-0__252-55.el9.x86_64//rpm", + "@systemd-libs-0__252-55.el9.x86_64//rpm", + "@systemd-pam-0__252-55.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-55.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@unbound-libs-0__1.16.2-21.el9.x86_64//rpm", + "@usbredir-0__0.13.0-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@virtiofsd-0__1.13.0-1.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + + # EDV dependency - START + "@SDL2-0__2.26.0-1.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@adwaita-cursor-theme-0__40.1.1-3.el9.x86_64//rpm", + "@adwaita-icon-theme-0__40.1.1-3.el9.x86_64//rpm", + "@alsa-lib-0__1.2.13-2.el9.x86_64//rpm", + "@at-spi2-atk-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-atk-devel-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-core-0__2.40.3-1.el9.x86_64//rpm", + "@at-spi2-core-devel-0__2.40.3-1.el9.x86_64//rpm", + "@atk-0__2.36.0-5.el9.x86_64//rpm", + "@atk-devel-0__2.36.0-5.el9.x86_64//rpm", + "@avahi-libs-0__0.8-22.el9.x86_64//rpm", + "@bluez-libs-0__5.72-4.el9.x86_64//rpm", + "@boost-iostreams-0__1.75.0-11.el9.x86_64//rpm", + "@boost-system-0__1.75.0-11.el9.x86_64//rpm", + "@boost-thread-0__1.75.0-11.el9.x86_64//rpm", + "@brlapi-0__0.8.2-4.el9.x86_64//rpm", + "@brotli-0__1.0.9-7.el9.x86_64//rpm", + "@brotli-devel-0__1.0.9-7.el9.x86_64//rpm", + "@bzip2-devel-0__1.0.8-10.el9.x86_64//rpm", + "@cairo-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cmake-filesystem-0__3.26.5-2.el9.x86_64//rpm", + "@colord-libs-0__1.4.5-4.el9.x86_64//rpm", + "@cryptsetup-libs-0__2.7.2-4.el9.x86_64//rpm", + "@cups-libs-1__2.3.3op2-33.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@dbus-devel-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@dejavu-sans-fonts-0__2.37-18.el9.x86_64//rpm", + "@elfutils-libelf-devel-0__0.193-1.el9.x86_64//rpm", + "@fdk-aac-free-0__2.0.0-8.el9.x86_64//rpm", + "@flac-libs-0__1.3.3-12.el9.x86_64//rpm", + "@fontconfig-0__2.14.0-2.el9.x86_64//rpm", + "@fontconfig-devel-0__2.14.0-2.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@freetype-0__2.10.4-11.el9.x86_64//rpm", + "@freetype-devel-0__2.10.4-11.el9.x86_64//rpm", + "@fribidi-0__1.0.10-6.el9.2.x86_64//rpm", + "@fribidi-devel-0__1.0.10-6.el9.2.x86_64//rpm", + "@fuse3-libs-0__3.10.2-9.el9.x86_64//rpm", + "@gdk-pixbuf2-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-devel-0__2.68.4-16.el9.x86_64//rpm", + "@graphite2-0__1.3.14-9.el9.x86_64//rpm", + "@graphite2-devel-0__1.3.14-9.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@gsm-0__1.0.19-6.el9.x86_64//rpm", + "@gtk-update-icon-cache-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-devel-0__3.24.31-5.el9.x86_64//rpm", + "@harfbuzz-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-devel-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-icu-0__2.7.4-10.el9.x86_64//rpm", + "@hicolor-icon-theme-0__0.17-13.el9.x86_64//rpm", + "@hwdata-0__0.348-9.20.el9.x86_64//rpm", + "@jbigkit-libs-0__2.1-23.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-611.el9.x86_64//rpm", + "@langpacks-core-font-en-0__3.0-16.el9.x86_64//rpm", + "@lcms2-0__2.12-3.el9.x86_64//rpm", + "@libX11-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-common-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-devel-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-xcb-0__1.7.0-11.el9.x86_64//rpm", + "@libXau-0__1.0.9-8.el9.x86_64//rpm", + "@libXau-devel-0__1.0.9-8.el9.x86_64//rpm", + "@libXcomposite-0__0.4.5-7.el9.x86_64//rpm", + "@libXcomposite-devel-0__0.4.5-7.el9.x86_64//rpm", + "@libXcursor-0__1.2.0-7.el9.x86_64//rpm", + "@libXcursor-devel-0__1.2.0-7.el9.x86_64//rpm", + "@libXdamage-0__1.1.5-7.el9.x86_64//rpm", + "@libXdamage-devel-0__1.1.5-7.el9.x86_64//rpm", + "@libXext-0__1.3.4-8.el9.x86_64//rpm", + "@libXext-devel-0__1.3.4-8.el9.x86_64//rpm", + "@libXfixes-0__5.0.3-16.el9.x86_64//rpm", + "@libXfixes-devel-0__5.0.3-16.el9.x86_64//rpm", + "@libXft-0__2.3.3-8.el9.x86_64//rpm", + "@libXft-devel-0__2.3.3-8.el9.x86_64//rpm", + "@libXi-0__1.7.10-8.el9.x86_64//rpm", + "@libXi-devel-0__1.7.10-8.el9.x86_64//rpm", + "@libXinerama-0__1.1.4-10.el9.x86_64//rpm", + "@libXinerama-devel-0__1.1.4-10.el9.x86_64//rpm", + "@libXrandr-0__1.5.2-8.el9.x86_64//rpm", + "@libXrandr-devel-0__1.5.2-8.el9.x86_64//rpm", + "@libXrender-0__0.9.10-16.el9.x86_64//rpm", + "@libXrender-devel-0__0.9.10-16.el9.x86_64//rpm", + "@libXtst-0__1.2.3-16.el9.x86_64//rpm", + "@libXtst-devel-0__1.2.3-16.el9.x86_64//rpm", + "@libXxf86vm-0__1.1.4-18.el9.x86_64//rpm", + "@libasyncns-0__0.8-22.el9.x86_64//rpm", + "@libatomic-0__11.5.0-7.el9.x86_64//rpm", + "@libblkid-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libblkio-0__1.5.0-1.el9.x86_64//rpm", + "@libbpf-devel-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libdatrie-0__0.2.13-4.el9.x86_64//rpm", + "@libdatrie-devel-0__0.2.13-4.el9.x86_64//rpm", + "@libdrm-0__2.4.123-2.el9.x86_64//rpm", + "@libedit-0__3.1-38.20210216cvs.el9.x86_64//rpm", + "@libepoxy-0__1.5.5-4.el9.x86_64//rpm", + "@libepoxy-devel-0__1.5.5-4.el9.x86_64//rpm", + "@libffi-devel-0__3.4.2-8.el9.x86_64//rpm", + "@libfontenc-0__1.1.3-17.el9.x86_64//rpm", + "@libglvnd-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-core-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-egl-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-gles-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-glx-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-opengl-1__1.3.4-1.el9.x86_64//rpm", + "@libgusb-0__0.3.8-2.el9.x86_64//rpm", + "@libicu-0__67.1-9.el9.x86_64//rpm", + "@libicu-devel-0__67.1-9.el9.x86_64//rpm", + "@libiscsi-0__1.19.0-5.el9.x86_64//rpm", + "@libjpeg-turbo-0__2.0.90-7.el9.x86_64//rpm", + "@libldac-0__2.0.2.3-10.el9.x86_64//rpm", + "@libmount-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libogg-2__1.3.4-6.el9.x86_64//rpm", + "@libpciaccess-0__0.16-7.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpng-devel-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@librados2-2__16.2.4-5.el9.x86_64//rpm", + "@librbd1-2__16.2.4-5.el9.x86_64//rpm", + "@libsbc-0__1.4-9.el9.x86_64//rpm", + "@libselinux-devel-0__3.6-3.el9.x86_64//rpm", + "@libsepol-devel-0__3.6-3.el9.x86_64//rpm", + "@libsndfile-0__1.0.31-9.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libstemmer-0__0-18.585svn.el9.x86_64//rpm", + "@libthai-0__0.1.28-8.el9.x86_64//rpm", + "@libthai-devel-0__0.1.28-8.el9.x86_64//rpm", + "@libtiff-0__4.4.0-13.el9.x86_64//rpm", + "@libtiff-devel-0__4.4.0-13.el9.x86_64//rpm", + "@libtracker-sparql-0__3.1.2-3.el9.x86_64//rpm", + "@libvorbis-1__1.3.7-5.el9.x86_64//rpm", + "@libwayland-client-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-cursor-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-egl-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-server-0__1.21.0-1.el9.x86_64//rpm", + "@libwebp-0__1.2.0-8.el9.x86_64//rpm", + "@libxcb-0__1.13.1-9.el9.x86_64//rpm", + "@libxcb-devel-0__1.13.1-9.el9.x86_64//rpm", + "@libxdp-0__1.5.3-1.el9.x86_64//rpm", + "@libxdp-devel-0__1.5.3-1.el9.x86_64//rpm", + "@libxkbcommon-0__1.0.3-4.el9.x86_64//rpm", + "@libxkbcommon-devel-0__1.0.3-4.el9.x86_64//rpm", + "@libxml2-devel-0__2.9.13-9.el9.x86_64//rpm", + "@libxshmfence-0__1.3-10.el9.x86_64//rpm", + "@libzstd-devel-0__1.5.5-1.el9.x86_64//rpm", + "@llvm-filesystem-0__20.1.8-1.el9.x86_64//rpm", + "@llvm-libs-0__20.1.8-1.el9.x86_64//rpm", + "@mesa-dri-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-filesystem-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libEGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-devel-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libglapi-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mkfontscale-0__1.2.1-3.el9.x86_64//rpm", + "@openjpeg2-0__2.4.0-8.el9.x86_64//rpm", + "@opus-0__1.3.1-10.el9.x86_64//rpm", + "@pango-0__1.48.7-3.el9.x86_64//rpm", + "@pango-devel-0__1.48.7-3.el9.x86_64//rpm", + "@pcre-cpp-0__8.44-4.el9.x86_64//rpm", + "@pcre-devel-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf16-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf32-0__8.44-4.el9.x86_64//rpm", + "@pcre2-devel-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf16-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf32-0__10.40-6.el9.x86_64//rpm", + "@pipewire-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-alsa-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-media-session-0__0.3.32-3.el9.x86_64//rpm", + "@pipewire-pulseaudio-0__1.0.1-1.el9.x86_64//rpm", + "@pixman-devel-0__0.40.0-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@pulseaudio-libs-0__15.0-3.el9.x86_64//rpm", + "@pulseaudio-libs-glib2-0__15.0-3.el9.x86_64//rpm", + "@rtkit-0__0.11-29.el9.x86_64//rpm", + "@shared-mime-info-0__2.1-5.el9.x86_64//rpm", + "@sound-theme-freedesktop-0__0.8-17.el9.x86_64//rpm", + "@sysprof-capture-devel-0__3.40.1-3.el9.x86_64//rpm", + "@usbutils-0__017-1.el9.x86_64//rpm", + "@vte-profile-0__0.64.2-2.el9.x86_64//rpm", + "@vte291-0__0.64.2-2.el9.x86_64//rpm", + "@vulkan-loader-0__1.4.304.0-1.el9.x86_64//rpm", + "@vulkan-tools-0__1.4.304.0-1.el9.x86_64//rpm", + "@wayland-devel-0__1.21.0-1.el9.x86_64//rpm", + "@webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64//rpm", + "@webrtc-audio-processing-0__0.3.1-8.el9.x86_64//rpm", + "@xdg-dbus-proxy-0__0.1.3-1.el9.x86_64//rpm", + "@xkeyboard-config-0__2.33-2.el9.x86_64//rpm", + "@xml-common-0__0.6.3-58.el9.x86_64//rpm", + "@xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64//rpm", + "@xorg-x11-proto-devel-0__2024.1-1.el9.x86_64//rpm", + "@xz-devel-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-devel-0__1.2.11-41.el9.x86_64//rpm", + # EDV dependency - END + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + # Create a symlink to OVMF binary with SEV support (edk2 rpm does not do that for unknown reason) + "/usr/share/OVMF/OVMF_CODE.cc.fd": "../edk2/ovmf/OVMF_CODE.cc.fd", + "/usr/share/OVMF/OVMF.amdsev.fd": "../edk2/ovmf/OVMF.amdsev.fd", + "/usr/share/OVMF/OVMF.inteltdx.fd": "../edk2/ovmf/OVMF.inteltdx.fd", + "/usr/share/OVMF/OVMF.inteltdx.secboot.fd": "../edk2/ovmf/OVMF.inteltdx.secboot.fd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-4.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250128-1.git5269e22.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-6.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-6.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-2.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-168.el9.x86_64//rpm", + "@glibc-common-0__2.34-168.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-168.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-4.el9.x86_64//rpm", + "@gnutls-0__3.8.3-6.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-2.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.18.el9.x86_64//rpm", + "@iproute-0__6.11.0-1.el9.x86_64//rpm", + "@iproute-tc-0__6.11.0-1.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-6.el9.x86_64//rpm", + "@less-0__590-5.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-4.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libbpf-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-7.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-5.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-5.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-3.el9.x86_64//rpm", + "@libibverbs-0__54.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnbd-0__1.20.3-1.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__54.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-5.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-7.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-9.el9.x86_64//rpm", + "@libxslt-0__1.1.34-9.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-4.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@osinfo-db-0__20240701-3.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-2.1.el9.x86_64//rpm", + "@polkit-0__0.117-13.el9.x86_64//rpm", + "@polkit-libs-0__0.117-13.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-15.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-15.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-37.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-37.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-37.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.53-2.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.53-2.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-container-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@which-0__2.21-29.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/qemu-kvm": "/usr/libexec/qemu-kvm", + "/etc/ssl/certs/ca-certificates.crt": "/usr/share/pki/ca-trust-source/ca-bundle.trust.p11-kit", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-7.el9.s390x//rpm", + "@augeas-libs-0__1.14.1-3.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-10.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@device-mapper-9__1.02.206-2.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@edk2-ovmf-0__20241117-3.el9.s390x//rpm", + "@elfutils-libelf-0__0.193-1.el9.s390x//rpm", + "@expat-0__2.5.0-5.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.s390x//rpm", + "@fuse-0__2.9.9-17.el9.s390x//rpm", + "@fuse-common-0__3.10.2-9.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib-networking-0__2.68.3-3.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnupg2-0__2.3.3-4.el9.s390x//rpm", + "@gnutls-0__3.8.3-9.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gsettings-desktop-schemas-0__40.0-7.el9.s390x//rpm", + "@guestfs-tools-0__1.52.2-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@hexedit-0__1.6-1.el9.s390x//rpm", + "@hivex-libs-0__1.3.24-1.el9.s390x//rpm", + "@hwdata-0__0.348-9.20.el9.s390x//rpm", + "@iproute-0__6.14.0-2.el9.s390x//rpm", + "@iproute-tc-0__6.14.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@less-0__590-6.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libassuan-0__2.5.5-3.el9.s390x//rpm", + "@libatomic-0__11.5.0-11.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-21.el9.s390x//rpm", + "@libbpf-2__1.5.0-2.el9.s390x//rpm", + "@libbrotli-0__1.0.9-7.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libconfig-0__1.7.2-9.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-21.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libguestfs-1__1.54.0-9.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libksba-0__1.5.1-7.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-21.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libosinfo-0__1.10.0-1.el9.s390x//rpm", + "@libpng-2__1.6.37-12.el9.s390x//rpm", + "@libproxy-0__0.4.15-35.el9.s390x//rpm", + "@libpsl-0__0.21.1-5.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-21.el9.s390x//rpm", + "@libsoup-0__2.72.0-10.el9.s390x//rpm", + "@libssh-0__0.10.4-13.el9.s390x//rpm", + "@libssh-config-0__0.10.4-13.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-daemon-common-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-driver-secret-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-driver-storage-core-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-daemon-log-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-libs-0__10.10.0-13.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-12.el9.s390x//rpm", + "@libxslt-0__1.1.34-12.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@npth-0__1.6-8.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openldap-0__2.6.8-4.el9.s390x//rpm", + "@openssl-1__3.5.1-3.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@osinfo-db-0__20250606-1.el9.s390x//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-26.el9.s390x//rpm", + "@parted-0__3.5-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-3.el9.s390x//rpm", + "@polkit-0__0.117-14.el9.s390x//rpm", + "@polkit-libs-0__0.117-14.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.s390x//rpm", + "@qemu-img-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-common-17__9.1.0-20.el9.s390x//rpm", + "@qemu-kvm-core-17__9.1.0-20.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-39.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.s390x//rpm", + "@scrub-0__2.6.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.65-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-15.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-8.el9.s390x//rpm", + "@systemd-0__252-55.el9.s390x//rpm", + "@systemd-container-0__252-55.el9.s390x//rpm", + "@systemd-libs-0__252-55.el9.s390x//rpm", + "@systemd-pam-0__252-55.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-55.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@util-linux-0__2.37.4-21.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-21.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@which-0__2.21-30.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-3.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-3.el9.x86_64//rpm", + "@elfutils-libelf-0__0.193-1.el9.x86_64//rpm", + "@expat-0__2.5.0-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fips-provider-next-0__1.2.0-5.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-4.el9.x86_64//rpm", + "@gnutls-0__3.8.3-9.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-7.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.20.el9.x86_64//rpm", + "@iproute-0__6.14.0-2.el9.x86_64//rpm", + "@iproute-tc-0__6.14.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@less-0__590-6.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libbpf-2__1.5.0-2.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-9.el9.x86_64//rpm", + "@libibverbs-0__57.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__57.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-13.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-12.el9.x86_64//rpm", + "@libxslt-0__1.1.34-12.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-4.el9.x86_64//rpm", + "@openssl-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@osinfo-db-0__20250606-1.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-26.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-3.el9.x86_64//rpm", + "@polkit-0__0.117-14.el9.x86_64//rpm", + "@polkit-libs-0__0.117-14.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-20.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-20.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-39.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-39.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-39.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.65-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.65-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-15.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.x86_64//rpm", + "@systemd-0__252-55.el9.x86_64//rpm", + "@systemd-container-0__252-55.el9.x86_64//rpm", + "@systemd-libs-0__252-55.el9.x86_64//rpm", + "@systemd-pam-0__252-55.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-55.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@which-0__2.21-30.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-7.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-9.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-11.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-21.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-21.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libssh-0__0.10.4-13.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-13.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-devel-0__10.10.0-13.el9.aarch64//rpm", + "@libvirt-libs-0__10.10.0-13.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-12.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-7.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-9.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libatomic-0__11.5.0-11.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-21.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-21.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libssh-0__0.10.4-13.el9.s390x//rpm", + "@libssh-config-0__0.10.4-13.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-devel-0__10.10.0-13.el9.s390x//rpm", + "@libvirt-libs-0__10.10.0-13.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-12.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-9.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-devel-0__10.10.0-13.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-13.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-12.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_aarch64", + rpms = [ + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@glibc-0__2.34-232.el9.aarch64//rpm", + "@glibc-common-0__2.34-232.el9.aarch64//rpm", + "@glibc-langpack-dz-0__2.34-232.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_s390x", + rpms = [ + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@glibc-0__2.34-232.el9.s390x//rpm", + "@glibc-common-0__2.34-232.el9.s390x//rpm", + "@glibc-langpack-dz-0__2.34-232.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_x86_64", + rpms = [ + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@glibc-0__2.34-232.el9.x86_64//rpm", + "@glibc-common-0__2.34-232.el9.x86_64//rpm", + "@glibc-langpack-en-0__2.34-232.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-7.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-39.el9.aarch64//rpm", + "@expat-0__2.5.0-5.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-9.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-11.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-21.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-21.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-21.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-21.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-26.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@qemu-pr-helper-17__9.1.0-26.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-15.el9.aarch64//rpm", + "@systemd-0__252-55.el9.aarch64//rpm", + "@systemd-libs-0__252-55.el9.aarch64//rpm", + "@systemd-pam-0__252-55.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-55.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.aarch64//rpm", + "@util-linux-0__2.37.4-21.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-21.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-39.el9.x86_64//rpm", + "@expat-0__2.5.0-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-9.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-26.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@qemu-pr-helper-17__9.1.0-26.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-15.el9.x86_64//rpm", + "@systemd-0__252-55.el9.x86_64//rpm", + "@systemd-libs-0__252-55.el9.x86_64//rpm", + "@systemd-pam-0__252-55.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-55.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-7.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@binutils-0__2.35.2-67.el9.aarch64//rpm", + "@binutils-gold-0__2.35.2-67.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cpp-0__11.5.0-11.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@elfutils-debuginfod-client-0__0.193-1.el9.aarch64//rpm", + "@elfutils-default-yama-scope-0__0.193-1.el9.aarch64//rpm", + "@elfutils-libelf-0__0.193-1.el9.aarch64//rpm", + "@elfutils-libs-0__0.193-1.el9.aarch64//rpm", + "@expat-0__2.5.0-5.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gcc-0__11.5.0-11.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-devel-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@glibc-static-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@kernel-headers-0__5.14.0-611.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libasan-0__11.5.0-11.el9.aarch64//rpm", + "@libatomic-0__11.5.0-11.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libgomp-0__11.5.0-11.el9.aarch64//rpm", + "@libmpc-0__1.2.1-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsss_idmap-0__2.9.7-4.el9.aarch64//rpm", + "@libsss_nss_idmap-0__2.9.7-4.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libubsan-0__11.5.0-11.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@make-1__4.3-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-26.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@python3-0__3.9.23-2.el9.aarch64//rpm", + "@python3-libs-0__3.9.23-2.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.aarch64//rpm", + "@sssd-client-0__2.9.7-4.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-7.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@binutils-0__2.35.2-67.el9.s390x//rpm", + "@binutils-gold-0__2.35.2-67.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cpp-0__11.5.0-11.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@elfutils-debuginfod-client-0__0.193-1.el9.s390x//rpm", + "@elfutils-default-yama-scope-0__0.193-1.el9.s390x//rpm", + "@elfutils-libelf-0__0.193-1.el9.s390x//rpm", + "@elfutils-libs-0__0.193-1.el9.s390x//rpm", + "@expat-0__2.5.0-5.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gcc-0__11.5.0-11.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-devel-0__2.34-231.el9.s390x//rpm", + "@glibc-headers-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@glibc-static-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@kernel-headers-0__5.14.0-611.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libasan-0__11.5.0-11.el9.s390x//rpm", + "@libatomic-0__11.5.0-11.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-11.el9.s390x//rpm", + "@libmpc-0__1.2.1-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsss_idmap-0__2.9.7-4.el9.s390x//rpm", + "@libsss_nss_idmap-0__2.9.7-4.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libubsan-0__11.5.0-11.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@make-1__4.3-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-26.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@python3-0__3.9.23-2.el9.s390x//rpm", + "@python3-libs-0__3.9.23-2.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-8.el9.s390x//rpm", + "@sssd-client-0__2.9.7-4.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@binutils-0__2.35.2-67.el9.x86_64//rpm", + "@binutils-gold-0__2.35.2-67.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cpp-0__11.5.0-11.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@elfutils-debuginfod-client-0__0.193-1.el9.x86_64//rpm", + "@elfutils-default-yama-scope-0__0.193-1.el9.x86_64//rpm", + "@elfutils-libelf-0__0.193-1.el9.x86_64//rpm", + "@elfutils-libs-0__0.193-1.el9.x86_64//rpm", + "@expat-0__2.5.0-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gcc-0__11.5.0-11.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-devel-0__2.34-231.el9.x86_64//rpm", + "@glibc-headers-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@glibc-static-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-611.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-11.el9.x86_64//rpm", + "@libmpc-0__1.2.1-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsss_idmap-0__2.9.7-4.el9.x86_64//rpm", + "@libsss_nss_idmap-0__2.9.7-4.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-11.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@make-1__4.3-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-26.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@python3-0__3.9.23-2.el9.x86_64//rpm", + "@python3-libs-0__3.9.23-2.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.x86_64//rpm", + "@sssd-client-0__2.9.7-4.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@expat-0__2.5.0-5.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@python3-0__3.9.23-2.el9.aarch64//rpm", + "@python3-libs-0__3.9.23-2.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@expat-0__2.5.0-5.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-5.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@python3-0__3.9.23-2.el9.s390x//rpm", + "@python3-libs-0__3.9.23-2.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-8.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@expat-0__2.5.0-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@python3-0__3.9.23-2.el9.x86_64//rpm", + "@python3-libs-0__3.9.23-2.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_aarch64", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-7.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.aarch64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-30.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-30.el9.aarch64//rpm", + "@coreutils-single-0__8.32-39.el9.aarch64//rpm", + "@cracklib-0__2.9.6-27.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.aarch64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-libs-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.aarch64//rpm", + "@e2fsprogs-0__1.46.5-8.el9.aarch64//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.aarch64//rpm", + "@expat-0__2.5.0-5.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@fuse-libs-0__2.9.9-17.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-16.el9.aarch64//rpm", + "@glibc-0__2.34-231.el9.aarch64//rpm", + "@glibc-common-0__2.34-231.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.3-9.el9.aarch64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iputils-0__20210202-14.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-11.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-21.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-4.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-21.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-11.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__57.0-1.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-21.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-21.el9.aarch64//rpm", + "@libss-0__1.46.5-8.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.5-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-21.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-7.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-3.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.1-3.el9.aarch64//rpm", + "@openssl-libs-1__3.5.1-3.el9.aarch64//rpm", + "@p11-kit-0__0.25.3-3.el9.aarch64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.aarch64//rpm", + "@pam-0__1.5.1-26.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@python3-0__3.9.23-2.el9.aarch64//rpm", + "@python3-configshell-1__1.1.30-1.el9.aarch64//rpm", + "@python3-dbus-0__1.2.18-2.el9.aarch64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.aarch64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64//rpm", + "@python3-kmod-0__0.9-32.el9.aarch64//rpm", + "@python3-libs-0__3.9.23-2.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.aarch64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.aarch64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@python3-six-0__1.15.0-9.el9.aarch64//rpm", + "@python3-urwid-0__2.1.2-4.el9.aarch64//rpm", + "@qemu-img-17__9.1.0-20.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sevctl-0__0.1.0-4.el9.aarch64//rpm", + "@shadow-utils-2__4.9-15.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.aarch64//rpm", + "@systemd-0__252-55.el9.aarch64//rpm", + "@systemd-libs-0__252-55.el9.aarch64//rpm", + "@systemd-pam-0__252-55.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-55.el9.aarch64//rpm", + "@tar-2__1.34-7.el9.aarch64//rpm", + "@target-restore-0__2.1.76-1.el9.aarch64//rpm", + "@targetcli-0__2.1.57-2.el9.aarch64//rpm", + "@tzdata-0__2025b-2.el9.aarch64//rpm", + "@util-linux-0__2.37.4-21.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-21.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.aarch64//rpm", + "@which-0__2.21-30.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_s390x", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-7.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-10.el9.s390x//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-30.el9.s390x//rpm", + "@centos-stream-release-0__9.0-30.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-30.el9.s390x//rpm", + "@coreutils-single-0__8.32-39.el9.s390x//rpm", + "@cracklib-0__2.9.6-27.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.s390x//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@dbus-libs-1__1.12.20-8.el9.s390x//rpm", + "@device-mapper-9__1.02.206-2.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.s390x//rpm", + "@e2fsprogs-0__1.46.5-8.el9.s390x//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.s390x//rpm", + "@expat-0__2.5.0-5.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-5.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-16.el9.s390x//rpm", + "@glibc-0__2.34-231.el9.s390x//rpm", + "@glibc-common-0__2.34-231.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.3-9.el9.s390x//rpm", + "@gobject-introspection-0__1.68.0-11.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iputils-0__20210202-14.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-21.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-4.el9.s390x//rpm", + "@libfdisk-0__2.37.4-21.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-11.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__57.0-1.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-21.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-21.el9.s390x//rpm", + "@libss-0__1.46.5-8.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.5-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-21.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-7.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nmap-ncat-3__7.92-3.el9.s390x//rpm", + "@openssl-1__3.5.1-3.el9.s390x//rpm", + "@openssl-libs-1__3.5.1-3.el9.s390x//rpm", + "@p11-kit-0__0.25.3-3.el9.s390x//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.s390x//rpm", + "@pam-0__1.5.1-26.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@python3-0__3.9.23-2.el9.s390x//rpm", + "@python3-configshell-1__1.1.30-1.el9.s390x//rpm", + "@python3-dbus-0__1.2.18-2.el9.s390x//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.s390x//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.s390x//rpm", + "@python3-kmod-0__0.9-32.el9.s390x//rpm", + "@python3-libs-0__3.9.23-2.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.s390x//rpm", + "@python3-pyudev-0__0.22.0-6.el9.s390x//rpm", + "@python3-rtslib-0__2.1.76-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@python3-six-0__1.15.0-9.el9.s390x//rpm", + "@python3-urwid-0__2.1.2-4.el9.s390x//rpm", + "@qemu-img-17__9.1.0-20.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sevctl-0__0.1.0-4.el9.s390x//rpm", + "@shadow-utils-2__4.9-15.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-8.el9.s390x//rpm", + "@systemd-0__252-55.el9.s390x//rpm", + "@systemd-libs-0__252-55.el9.s390x//rpm", + "@systemd-pam-0__252-55.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-55.el9.s390x//rpm", + "@tar-2__1.34-7.el9.s390x//rpm", + "@target-restore-0__2.1.76-1.el9.s390x//rpm", + "@targetcli-0__2.1.57-2.el9.s390x//rpm", + "@tzdata-0__2025b-2.el9.s390x//rpm", + "@util-linux-0__2.37.4-21.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-21.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-22.el9.s390x//rpm", + "@which-0__2.21-30.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_x86_64", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-7.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-30.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-30.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250804-1.git2c74f3d.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@e2fsprogs-0__1.46.5-8.el9.x86_64//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.x86_64//rpm", + "@expat-0__2.5.0-5.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fips-provider-next-0__1.2.0-5.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-231.el9.x86_64//rpm", + "@glibc-common-0__2.34-231.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-231.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.3-9.el9.x86_64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iputils-0__20210202-14.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-34.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-11.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__57.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libss-0__1.46.5-8.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-3.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.1-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.1-3.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-26.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@python3-0__3.9.23-2.el9.x86_64//rpm", + "@python3-configshell-1__1.1.30-1.el9.x86_64//rpm", + "@python3-dbus-0__1.2.18-2.el9.x86_64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.x86_64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64//rpm", + "@python3-kmod-0__0.9-32.el9.x86_64//rpm", + "@python3-libs-0__3.9.23-2.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.x86_64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.x86_64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@python3-six-0__1.15.0-9.el9.x86_64//rpm", + "@python3-urwid-0__2.1.2-4.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-20.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sevctl-0__0.4.2-1.el9.x86_64//rpm", + "@shadow-utils-2__4.9-15.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-8.el9.x86_64//rpm", + "@systemd-0__252-55.el9.x86_64//rpm", + "@systemd-libs-0__252-55.el9.x86_64//rpm", + "@systemd-pam-0__252-55.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-55.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@target-restore-0__2.1.76-1.el9.x86_64//rpm", + "@targetcli-0__2.1.57-2.el9.x86_64//rpm", + "@tzdata-0__2025b-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-22.el9.x86_64//rpm", + "@which-0__2.21-30.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) diff --git a/kubevirt-patch/v1.8.1/WORKSPACE b/kubevirt-patch/v1.8.1/WORKSPACE new file mode 100644 index 0000000..1012aa5 --- /dev/null +++ b/kubevirt-patch/v1.8.1/WORKSPACE @@ -0,0 +1,16949 @@ +workspace(name = "kubevirt") + +# register crosscompiler toolchains +load("//bazel/toolchain:toolchain.bzl", "register_all_toolchains") + +register_all_toolchains() + +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") +load( + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_archive", + "http_file", +) + +http_archive( + name = "rules_python", + sha256 = "934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + urls = [ + "https://github.com/bazelbuild/rules_python/releases/download/0.3.0/rules_python-0.3.0.tar.gz", + "https://storage.googleapis.com/builddeps/934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + ], +) + +http_archive( + name = "rules_oci", + sha256 = "acbf8f40e062f707f8754e914dcb0013803c6e5e3679d3e05b571a9f5c7e0b43", + strip_prefix = "rules_oci-2.0.1", + urls = [ + "https://github.com/bazel-contrib/rules_oci/releases/download/v2.0.1/rules_oci-v2.0.1.tar.gz", + "https://storage.googleapis.com/builddeps/acbf8f40e062f707f8754e914dcb0013803c6e5e3679d3e05b571a9f5c7e0b43", + ], +) + +load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies") + +rules_oci_dependencies() + +load("@rules_oci//oci:repositories.bzl", "oci_register_toolchains") + +oci_register_toolchains( + name = "oci", +) + +load("@rules_oci//oci:pull.bzl", "oci_pull") + +# Bazel buildtools prebuilt binaries +http_archive( + name = "buildifier_prebuilt", + sha256 = "7f85b688a4b558e2d9099340cfb510ba7179f829454fba842370bccffb67d6cc", + strip_prefix = "buildifier-prebuilt-7.3.1", + urls = [ + "http://github.com/keith/buildifier-prebuilt/archive/7.3.1.tar.gz", + "https://storage.googleapis.com/builddeps/7f85b688a4b558e2d9099340cfb510ba7179f829454fba842370bccffb67d6cc", + ], +) + +load("@buildifier_prebuilt//:deps.bzl", "buildifier_prebuilt_deps") + +buildifier_prebuilt_deps() + +# Additional bazel rules + +http_archive( + name = "platforms", + sha256 = "3384eb1c30762704fbe38e440204e114154086c8fc8a8c2e3e28441028c019a8", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/1.0.0/platforms-1.0.0.tar.gz", + "https://github.com/bazelbuild/platforms/releases/download/1.0.0/platforms-1.0.0.tar.gz", + "https://storage.googleapis.com/builddeps/3384eb1c30762704fbe38e440204e114154086c8fc8a8c2e3e28441028c019a8", + ], +) + +http_archive( + name = "io_bazel_rules_go", + sha256 = "130739704540caa14e77c54810b9f01d6d9ae897d53eedceb40fd6b75efc3c23", + urls = [ + "https://github.com/bazel-contrib/rules_go/releases/download/v0.54.1/rules_go-v0.54.1.zip", + "https://storage.googleapis.com/builddeps/130739704540caa14e77c54810b9f01d6d9ae897d53eedceb40fd6b75efc3c23", + ], +) + +load("@buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains", "buildtools_assets") + +buildifier_prebuilt_register_toolchains( + assets = buildtools_assets( + arches = [ + "amd64", + "arm64", + "s390x", + ], + names = [ + "buildifier", + "buildozer", + ], + platforms = [ + "darwin", + "linux", + "windows", + ], + sha256_values = { + "buildifier_darwin_amd64": "375f823103d01620aaec20a0c29c6cbca99f4fd0725ae30b93655c6704f44d71", + "buildifier_darwin_arm64": "5a6afc6ac7a09f5455ba0b89bd99d5ae23b4174dc5dc9d6c0ed5ce8caac3f813", + "buildifier_linux_amd64": "5474cc5128a74e806783d54081f581662c4be8ae65022f557e9281ed5dc88009", + "buildifier_linux_arm64": "0bf86c4bfffaf4f08eed77bde5b2082e4ae5039a11e2e8b03984c173c34a561c", + "buildifier_linux_s390x": "e2d79ff5885d45274f76531f1adbc7b73a129f59e767f777e8fbde633d9d4e2e", + "buildifier_windows_amd64": "370cd576075ad29930a82f5de132f1a1de4084c784a82514bd4da80c85acf4a8", + "buildozer_darwin_amd64": "854c9583efc166602276802658cef3f224d60898cfaa60630b33d328db3b0de2", + "buildozer_darwin_arm64": "31b1bfe20d7d5444be217af78f94c5c43799cdf847c6ce69794b7bf3319c5364", + "buildozer_linux_amd64": "3305e287b3fcc68b9a35fd8515ee617452cd4e018f9e6886b6c7cdbcba8710d4", + "buildozer_linux_arm64": "0b5a2a717ac4fc911e1fec8d92af71dbb4fe95b10e5213da0cc3d56cea64a328", + "buildozer_linux_s390x": "7e28da8722656e800424989f5cdbc095cb29b2d398d33e6b3d04e0f50bc0bb10", + "buildozer_windows_amd64": "58d41ce53257c5594c9bc86d769f580909269f68de114297f46284fbb9023dcf", + }, + version = "v7.3.1", + ), +) + +http_archive( + name = "bazel_gazelle", + sha256 = "b760f7fe75173886007f7c2e616a21241208f3d90e8657dc65d36a771e916b6a", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.39.1/bazel-gazelle-v0.39.1.tar.gz", + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.39.1/bazel-gazelle-v0.39.1.tar.gz", + "https://storage.googleapis.com/builddeps/b760f7fe75173886007f7c2e616a21241208f3d90e8657dc65d36a771e916b6a", + ], +) + +http_archive( + name = "rules_pkg", + sha256 = "d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz", + "https://github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz", + "https://storage.googleapis.com/builddeps/d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef", + ], +) + +load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") + +rules_pkg_dependencies() + +http_archive( + name = "io_bazel_rules_docker", + sha256 = "95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + strip_prefix = "rules_docker-0.16.0", + urls = [ + "https://github.com/bazelbuild/rules_docker/releases/download/v0.16.0/rules_docker-v0.16.0.tar.gz", + "https://storage.googleapis.com/builddeps/95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + ], +) + +http_archive( + name = "com_github_ash2k_bazel_tools", + sha256 = "46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + strip_prefix = "bazel-tools-19b174803c0db1a01e77f10fa2079c35f54eed6e", + urls = [ + "https://github.com/ash2k/bazel-tools/archive/19b174803c0db1a01e77f10fa2079c35f54eed6e.zip", + "https://storage.googleapis.com/builddeps/46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + ], +) + +# Disk images +http_file( + name = "alpine_image", + sha256 = "f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/x86_64/alpine-virt-3.20.1-x86_64.iso", + "https://storage.googleapis.com/builddeps/f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + ], +) + +http_file( + name = "alpine_image_aarch64", + sha256 = "ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/aarch64/alpine-virt-3.20.1-aarch64.iso", + "https://storage.googleapis.com/builddeps/ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + ], +) + +http_file( + name = "alpine_image_s390x", + sha256 = "4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/s390x/alpine-standard-3.18.8-s390x.iso", + "https://storage.googleapis.com/builddeps/4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + ], +) + +http_file( + name = "cirros_image", + sha256 = "932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-x86_64-disk.img", + "https://storage.googleapis.com/builddeps/932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + ], +) + +http_file( + name = "cirros_image_aarch64", + sha256 = "889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-aarch64-disk.img", + "https://storage.googleapis.com/builddeps/889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + ], +) + +http_file( + name = "virtio_win_image", + sha256 = "57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + urls = [ + "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.266-1/virtio-win-0.1.266.iso", + "https://storage.googleapis.com/builddeps/57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + ], +) + +http_archive( + name = "bazeldnf", + sha256 = "0a4b9740da1839ded674c8f5012c069b235b101f1eaa2552a4721287808541af", + strip_prefix = "bazeldnf-v0.5.9-2", + urls = [ + "https://github.com/brianmcarey/bazeldnf/releases/download/v0.5.9-2/bazeldnf-v0.5.9-2.tar.gz", + "https://storage.googleapis.com/builddeps/0a4b9740da1839ded674c8f5012c069b235b101f1eaa2552a4721287808541af", + ], +) + +load("@bazeldnf//bazeldnf:defs.bzl", "rpm") +load( + "@bazeldnf//bazeldnf:repositories.bzl", + "bazeldnf_dependencies", + "bazeldnf_register_toolchains", +) +load( + "@io_bazel_rules_go//go:deps.bzl", + "go_register_toolchains", + "go_rules_dependencies", +) + +bazeldnf_dependencies() + +bazeldnf_register_toolchains( + name = "bazeldnf_prebuilt", +) + +go_rules_dependencies() + +go_register_toolchains( + go_version = "1.24.13", + nogo = "@//:nogo_vet", +) + +load("@com_github_ash2k_bazel_tools//goimports:deps.bzl", "goimports_dependencies") + +goimports_dependencies() + +load( + "@bazel_gazelle//:deps.bzl", + "gazelle_dependencies", + "go_repository", +) + +gazelle_dependencies(go_sdk = "go_sdk") + +bazeldnf_dependencies() + +# Winrmcli dependencies +go_repository( + name = "com_github_masterzen_winrmcli", + commit = "c85a68ee8b6e3ac95af2a5fd62d2f41c9e9c5f32", + importpath = "github.com/masterzen/winrm-cli", +) + +# Winrmcp deps +go_repository( + name = "com_github_packer_community_winrmcp", + commit = "c76d91c1e7db27b0868c5d09e292bb540616c9a2", + importpath = "github.com/packer-community/winrmcp", +) + +go_repository( + name = "com_github_masterzen_winrm_cli", + commit = "6f0c57dee4569c04f64c44c335752b415e5d73a7", + importpath = "github.com/masterzen/winrm-cli", +) + +go_repository( + name = "com_github_masterzen_winrm", + commit = "1d17eaf15943ca3554cdebb3b1b10aaa543a0b7e", + importpath = "github.com/masterzen/winrm", +) + +go_repository( + name = "com_github_nu7hatch_gouuid", + commit = "179d4d0c4d8d407a32af483c2354df1d2c91e6c3", + importpath = "github.com/nu7hatch/gouuid", +) + +go_repository( + name = "com_github_dylanmei_iso8601", + commit = "2075bf119b58e5576c6ed9f867b8f3d17f2e54d4", + importpath = "github.com/dylanmei/iso8601", +) + +go_repository( + name = "com_github_gofrs_uuid", + commit = "abfe1881e60ef34074c1b8d8c63b42565c356ed6", + importpath = "github.com/gofrs/uuid", +) + +go_repository( + name = "com_github_christrenkamp_goxpath", + commit = "c5096ec8773dd9f554971472081ddfbb0782334e", + importpath = "github.com/ChrisTrenkamp/goxpath", +) + +go_repository( + name = "com_github_azure_go_ntlmssp", + commit = "4a21cbd618b459155f8b8ee7f4491cd54f5efa77", + importpath = "github.com/Azure/go-ntlmssp", +) + +go_repository( + name = "com_github_masterzen_simplexml", + commit = "31eea30827864c9ab643aa5a0d5b2d4988ec8409", + importpath = "github.com/masterzen/simplexml", +) + +go_repository( + name = "org_golang_x_crypto", + commit = "4def268fd1a49955bfb3dda92fe3db4f924f2285", + importpath = "golang.org/x/crypto", +) + +# override rules_docker issue with this dependency +# rules_docker 0.16 uses 0.1.4, let's grab by commit +go_repository( + name = "com_github_google_go_containerregistry", + commit = "8a2841911ffee4f6892ca0083e89752fb46c48dd", # v0.1.4 + importpath = "github.com/google/go-containerregistry", +) + +# Pull go_image_base +oci_pull( + name = "go_image_base", + digest = "sha256:aeb2e6aa676c55b201822f3b88c01c8a10b0a72ac1b2bdac8f5958e2eb2e71e9", + image = "gcr.io/distroless/base-debian12", +) + +oci_pull( + name = "go_image_base_aarch64", + digest = "sha256:092d065d29d72957dc7a85519c3f911d6ad233fe6b53e7a9f42891e6464cc7d9", + image = "gcr.io/distroless/base-debian12", +) + +oci_pull( + name = "go_image_base_s390x", + digest = "sha256:f17ca174b7738b7d065584558d7999c08bcc2658bd2d0ad324c47c8178272774", + image = "gcr.io/distroless/base-debian12", +) + +# Pull fedora container-disk preconfigured with ci tooling +# like stress and qemu guest agent pre-configured +# TODO build fedora_with_test_tooling for multi-arch +oci_pull( + name = "fedora_with_test_tooling", + digest = "sha256:897af945d1c58366086d5933ae4f341a5f1413b88e6c7f2b659436adc5d0f522", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "alpine_with_test_tooling", + digest = "sha256:8c8e8bb6cd81c75e492c678abb3e5f186d52eba2174ebabc328316250acfea58", + image = "quay.io/kubevirtci/alpine-with-test-tooling-container-disk", +) + +oci_pull( + name = "alpine_with_test_tooling_s390x", + digest = "sha256:1a52903133c00507607e8a82308a34923e89288d852762b9f4d5da227767e965", + image = "quay.io/kubevirtci/alpine-with-test-tooling-container-disk", +) + +oci_pull( + name = "fedora_with_test_tooling_aarch64", + digest = "sha256:3d5a2a95f7f9382dc6730073fe19a6b1bc668b424c362339c88c6a13dff2ef49", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "fedora_with_test_tooling_s390x", + digest = "sha256:3d9f468750d90845a81608ea13c85237ea295c6295c911a99dc5e0504c8bc05b", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "s390x-guestless-kernel", + digest = "sha256:3bf6fc355fc9718c088c4c881b2d35a073ea274f6b16dc42236ef5e29db2215d", + image = "quay.io/kubevirt/s390x-guestless-kernel", +) + +oci_pull( + name = "alpine-ext-kernel-boot-demo-container-base", + digest = "sha256:bccd990554f55623d96fa70bc7efc553dd617523ebca76919b917ad3ee616c1d", + image = "quay.io/kubevirt/alpine-ext-kernel-boot-demo", +) + +# TODO build fedora_realtime for multi-arch +oci_pull( + name = "fedora_realtime", + digest = "sha256:f91379d202a5493aba9ce06870b5d1ada2c112f314530c9820a9ad07426aa565", + image = "quay.io/kubevirt/fedora-realtime-container-disk", +) + +oci_pull( + name = "busybox", + digest = "sha256:545e6a6310a27636260920bc07b994a299b6708a1b26910cfefd335fdfb60d2b", + image = "registry.k8s.io/busybox", +) + +load("//images/virt-template:deps.bzl", "virt_template_images") + +virt_template_images() + +http_archive( + name = "io_bazel_rules_container_rpm", + sha256 = "151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + strip_prefix = "rules_container_rpm-0.0.5", + urls = [ + "https://github.com/rmohr/rules_container_rpm/archive/v0.0.5.tar.gz", + "https://storage.googleapis.com/builddeps/151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + ], +) + +http_archive( + name = "libguestfs-appliance-x86_64", + sha256 = "fb6da700eeae24da89aae6516091f7c5f46958b0b7812d2b122dc11dca1ab26a", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.54.0-qcow2-linux-5.14.0-575-centos9-amd64.tar.xz", + ], +) + +http_archive( + name = "libguestfs-appliance-s390x", + sha256 = "532cb951d4245265da645c8cce14033c19ea8f0d163c01e88f4153dae44e0f95", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.54.0-qcow2-linux-5.14.0-575-centos9-s390x.tar.xz", + ], +) + +# Get container-disk-v1alpha RPM's +http_file( + name = "qemu-img", + sha256 = "669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea", + urls = ["https://storage.googleapis.com/builddeps/669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea"], +) + +# some repos which are not part of go_rules anymore +go_repository( + name = "org_golang_x_net", + importpath = "golang.org/x/net", + sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=", + version = "v0.0.0-20190311183353-d8887717615a", +) + +go_repository( + name = "org_golang_x_text", + importpath = "golang.org/x/text", + sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=", + version = "v0.3.0", +) + +register_toolchains("//:py_toolchain") + +go_repository( + name = "org_golang_x_mod", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/mod", + sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", + version = "v0.3.0", +) + +go_repository( + name = "org_golang_x_xerrors", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/xerrors", + sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=", + version = "v0.0.0-20200804184101-5ec99f83aff1", +) + +rpm( + name = "acl-0__2.3.1-4.el9.aarch64", + sha256 = "a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/acl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.s390x", + sha256 = "5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/acl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.x86_64", + sha256 = "dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/acl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + ], +) + +rpm( + name = "acl-0__2.3.2-4.el10.aarch64", + sha256 = "e5c1d6460330fabe5ef57fb4b13d46ab0840f93556d898b5179f1b267f34455f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/acl-2.3.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e5c1d6460330fabe5ef57fb4b13d46ab0840f93556d898b5179f1b267f34455f", + ], +) + +rpm( + name = "acl-0__2.3.2-4.el10.s390x", + sha256 = "295d62b3d46571e5327671616bff8d1872af066f41719e09d5e0554d00001e49", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/acl-2.3.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/295d62b3d46571e5327671616bff8d1872af066f41719e09d5e0554d00001e49", + ], +) + +rpm( + name = "acl-0__2.3.2-4.el10.x86_64", + sha256 = "fd89f3c793d09fe633bf7721da719d29d599d01f65aaaa355b1b308a6fa580f2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/acl-2.3.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fd89f3c793d09fe633bf7721da719d29d599d01f65aaaa355b1b308a6fa580f2", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.s390x", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.aarch64", + sha256 = "3b8d0d6154ccc1047474072afc94cc1f72b7c234d8cd4e50734c67ca67da4161", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/alternatives-1.24-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b8d0d6154ccc1047474072afc94cc1f72b7c234d8cd4e50734c67ca67da4161", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.s390x", + sha256 = "8eb7ef117114059c44818eec88c4ed06c271a1185be1b1178ad096adcc934f11", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/alternatives-1.24-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8eb7ef117114059c44818eec88c4ed06c271a1185be1b1178ad096adcc934f11", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.x86_64", + sha256 = "1e9effe6f59312207b55f87eaded01e8f238622ad14018ffd33ef49e9ce8d4c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/alternatives-1.24-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1e9effe6f59312207b55f87eaded01e8f238622ad14018ffd33ef49e9ce8d4c6", + ], +) + +rpm( + name = "alternatives-0__1.30-2.el10.aarch64", + sha256 = "13d1cae28aecbc13bee2cf23391ec2ee41d39c51c9bb47f466fbad133d38f5c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/alternatives-1.30-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/13d1cae28aecbc13bee2cf23391ec2ee41d39c51c9bb47f466fbad133d38f5c9", + ], +) + +rpm( + name = "alternatives-0__1.30-2.el10.s390x", + sha256 = "ab4f800759f602c25f483681b126b4eced6ba81331c9b613dd47a229379c71e1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/alternatives-1.30-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ab4f800759f602c25f483681b126b4eced6ba81331c9b613dd47a229379c71e1", + ], +) + +rpm( + name = "alternatives-0__1.30-2.el10.x86_64", + sha256 = "1c8b83bf3dd0fa8d998a3c801986f50ea3661c2f8a21c60971c0391c381919c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/alternatives-1.30-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1c8b83bf3dd0fa8d998a3c801986f50ea3661c2f8a21c60971c0391c381919c8", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-4.el9.x86_64", + sha256 = "d1482f65e84e761f0282e9e2c2a7111f0638dc889d6f34e4cde160e465855d1e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d1482f65e84e761f0282e9e2c2a7111f0638dc889d6f34e4cde160e465855d1e", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-8.el9.aarch64", + sha256 = "83af8b9a4dd0539f10ffda2ee09fe4a93eaf45fb12a3fc4aaea5899025f12cac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/audit-libs-3.1.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/83af8b9a4dd0539f10ffda2ee09fe4a93eaf45fb12a3fc4aaea5899025f12cac", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-8.el9.s390x", + sha256 = "267f9e2528d2ca70c83abd80002aab8284ea93da3f2d87be0d13a0ec7efb13c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/audit-libs-3.1.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/267f9e2528d2ca70c83abd80002aab8284ea93da3f2d87be0d13a0ec7efb13c9", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-8.el9.x86_64", + sha256 = "f970ce7fc0589c0a7b37784c6fc602a35a771db811f8061b8b8af2f4e9b46349", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f970ce7fc0589c0a7b37784c6fc602a35a771db811f8061b8b8af2f4e9b46349", + ], +) + +rpm( + name = "audit-libs-0__4.0.3-5.el10.aarch64", + sha256 = "f45973727e2dea77b2209bc9795c890abac187383a596b3cb81ab066b11ddb90", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/audit-libs-4.0.3-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f45973727e2dea77b2209bc9795c890abac187383a596b3cb81ab066b11ddb90", + ], +) + +rpm( + name = "audit-libs-0__4.0.3-5.el10.s390x", + sha256 = "1d7617a754258f58b0986c6f944621819381543eee344f60f348fc44bc2274c1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/audit-libs-4.0.3-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1d7617a754258f58b0986c6f944621819381543eee344f60f348fc44bc2274c1", + ], +) + +rpm( + name = "audit-libs-0__4.0.3-5.el10.x86_64", + sha256 = "a2be49cd9497b28aa9688b6e58bce216797c868559d249e3a08034e22d1e86f7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/audit-libs-4.0.3-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2be49cd9497b28aa9688b6e58bce216797c868559d249e3a08034e22d1e86f7", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-2.el9.x86_64", + sha256 = "f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-3.el9.s390x", + sha256 = "79f80d96c84bcfc0379638eb82862d6217052e8e72cd188b3544c2f7fc059bcc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/augeas-libs-1.14.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/79f80d96c84bcfc0379638eb82862d6217052e8e72cd188b3544c2f7fc059bcc", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-3.el9.x86_64", + sha256 = "3db7a360240d905fa0dda490ac8f00f28553299087dc31a18c9e671616889553", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3db7a360240d905fa0dda490ac8f00f28553299087dc31a18c9e671616889553", + ], +) + +rpm( + name = "augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.s390x", + sha256 = "03bb6de04d7f5c64cf30fd0fe26301508b8fad5520c25fd1fc291132b01e0c7a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/augeas-libs-1.14.2-0.9.20260120gitf4135e3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/03bb6de04d7f5c64cf30fd0fe26301508b8fad5520c25fd1fc291132b01e0c7a", + ], +) + +rpm( + name = "augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.x86_64", + sha256 = "479f9bb17e1ede3ae449e0cc47474a935b519febdb65c214eedccc1e836aeb8b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.2-0.9.20260120gitf4135e3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/479f9bb17e1ede3ae449e0cc47474a935b519febdb65c214eedccc1e836aeb8b", + ], +) + +rpm( + name = "authselect-0__1.5.2-1.el10.aarch64", + sha256 = "0354c0147a3921b6c3b67e4e38cc1d23be21533aec9e1935d666770258a67994", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/authselect-1.5.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "authselect-0__1.5.2-1.el10.s390x", + sha256 = "fe23c46f2bb599099c783986fcb202b8b8f4282294bdd8f068f22a0f3bc07644", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/authselect-1.5.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "authselect-0__1.5.2-1.el10.x86_64", + sha256 = "f3fea14e3138deb4d1e6c28a9922eaae4c99baf511bd98c179acfd03fb0d61b1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/authselect-1.5.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "authselect-libs-0__1.5.2-1.el10.aarch64", + sha256 = "d90bd5fda96963f4c7a1359eed58974472b76374a116c3fea6eec601b52e5361", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/authselect-libs-1.5.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "authselect-libs-0__1.5.2-1.el10.s390x", + sha256 = "a5a6cd4f6eecab16227e57ac314fd7aafb0ebe7b31535834b847f15c69b235c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/authselect-libs-1.5.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "authselect-libs-0__1.5.2-1.el10.x86_64", + sha256 = "dfa12036f818655945efa17bfeac35e5bcb40a08ba89e74f57e3bb36e083000b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/authselect-libs-1.5.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.aarch64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.s390x", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.x86_64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-22.el10.aarch64", + sha256 = "76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/basesystem-11-22.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + ], +) + +rpm( + name = "basesystem-0__11-22.el10.s390x", + sha256 = "76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/basesystem-11-22.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + ], +) + +rpm( + name = "basesystem-0__11-22.el10.x86_64", + sha256 = "76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/basesystem-11-22.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.aarch64", + sha256 = "acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bash-5.1.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.s390x", + sha256 = "7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bash-5.1.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.x86_64", + sha256 = "823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bash-5.1.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + ], +) + +rpm( + name = "bash-0__5.2.26-6.el10.aarch64", + sha256 = "3f42c3de9fddc6e6c08f7c603ce29ed96d8d66f4425ce1c27bcb0d7d0e0490b5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/bash-5.2.26-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3f42c3de9fddc6e6c08f7c603ce29ed96d8d66f4425ce1c27bcb0d7d0e0490b5", + ], +) + +rpm( + name = "bash-0__5.2.26-6.el10.s390x", + sha256 = "07261872bd05c23366da7c2529b776dccfdf1a33c99d784370ebfde32d8909d7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/bash-5.2.26-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/07261872bd05c23366da7c2529b776dccfdf1a33c99d784370ebfde32d8909d7", + ], +) + +rpm( + name = "bash-0__5.2.26-6.el10.x86_64", + sha256 = "31eaf885847a6671a93e2b6e0d48e937ae5520f0442265aae19f4294260b5618", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/bash-5.2.26-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/31eaf885847a6671a93e2b6e0d48e937ae5520f0442265aae19f4294260b5618", + ], +) + +rpm( + name = "binutils-0__2.35.2-69.el9.aarch64", + sha256 = "5276381ae395c0d5cf7414cb7bfd3bc14ab93f83233238f1e2b0aa8703eb159b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-2.35.2-69.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5276381ae395c0d5cf7414cb7bfd3bc14ab93f83233238f1e2b0aa8703eb159b", + ], +) + +rpm( + name = "binutils-0__2.35.2-69.el9.s390x", + sha256 = "2312fba1a49412188587995f932f0a8cd18232ccb148a4cb8b5784edb5eddc09", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-2.35.2-69.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2312fba1a49412188587995f932f0a8cd18232ccb148a4cb8b5784edb5eddc09", + ], +) + +rpm( + name = "binutils-0__2.35.2-69.el9.x86_64", + sha256 = "8f5d12203960d696a941987548e6085642eaed291d4858a308c8be247570bf27", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-2.35.2-69.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8f5d12203960d696a941987548e6085642eaed291d4858a308c8be247570bf27", + ], +) + +rpm( + name = "binutils-0__2.41-63.el10.aarch64", + sha256 = "ce296ed443fa75ac3425b197ab9c42cafa20f45970b279a881585cbe1af69743", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/binutils-2.41-63.el10.aarch64.rpm", + ], +) + +rpm( + name = "binutils-0__2.41-63.el10.s390x", + sha256 = "ae3c575b014a5b607fb7d8f43729c94aaaf252bd0c038ad653b7d585045eff69", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/binutils-2.41-63.el10.s390x.rpm", + ], +) + +rpm( + name = "binutils-0__2.41-63.el10.x86_64", + sha256 = "5b89fa4b895ac32b3cc37ae63b414e20637fcdba8e567a8ce2fe4535bf05c297", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/binutils-2.41-63.el10.x86_64.rpm", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-69.el9.aarch64", + sha256 = "b3e833b049af21ad1467586c5975e494ba99a7072320a8f7d81a24edbb7071b2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-gold-2.35.2-69.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b3e833b049af21ad1467586c5975e494ba99a7072320a8f7d81a24edbb7071b2", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-69.el9.s390x", + sha256 = "df03b983980a4ae5a236dcb480be7a85c3979fc28bb534b2f11dec0cb21e5ebb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-gold-2.35.2-69.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/df03b983980a4ae5a236dcb480be7a85c3979fc28bb534b2f11dec0cb21e5ebb", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-69.el9.x86_64", + sha256 = "2bdfd486a24ec343d34085524a9a78a174b6beb746a3ee78ea49d70fddde8f20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-gold-2.35.2-69.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2bdfd486a24ec343d34085524a9a78a174b6beb746a3ee78ea49d70fddde8f20", + ], +) + +rpm( + name = "binutils-gold-0__2.41-63.el10.aarch64", + sha256 = "c64276fa2ca4e1173f944277f608918eb2aeca7d71d00db8b46857c6c0e53bbe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/binutils-gold-2.41-63.el10.aarch64.rpm", + ], +) + +rpm( + name = "binutils-gold-0__2.41-63.el10.s390x", + sha256 = "0f95a2e63e7dc9212b69f0b9d79a1a6c647a6a3635c965d06a5ae1aaeb1a5703", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/binutils-gold-2.41-63.el10.s390x.rpm", + ], +) + +rpm( + name = "binutils-gold-0__2.41-63.el10.x86_64", + sha256 = "367ad3e3fff8c3a86ebb240f4994af59d4d896349c648181773701a4728916af", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/binutils-gold-2.41-63.el10.x86_64.rpm", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.x86_64", + sha256 = "930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + ], +) + +rpm( + name = "bzip2-0__1.0.8-11.el9.aarch64", + sha256 = "b10f34223776bbf7a1b433a92ba6f87a4a58d893acae3a56d38654c3790b5c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-1.0.8-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b10f34223776bbf7a1b433a92ba6f87a4a58d893acae3a56d38654c3790b5c03", + ], +) + +rpm( + name = "bzip2-0__1.0.8-11.el9.s390x", + sha256 = "e94ba526c13a81e1046ff33234dd37bce3a2a9b1e1a15b5cd33434b6b0d399b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-1.0.8-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e94ba526c13a81e1046ff33234dd37bce3a2a9b1e1a15b5cd33434b6b0d399b4", + ], +) + +rpm( + name = "bzip2-0__1.0.8-11.el9.x86_64", + sha256 = "27de96d7fb8285910bdd240cf6c6a842863b9a01d20b25874f5d121a16239441", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27de96d7fb8285910bdd240cf6c6a842863b9a01d20b25874f5d121a16239441", + ], +) + +rpm( + name = "bzip2-0__1.0.8-25.el10.aarch64", + sha256 = "30fd7d37e3f06d0b06b6f3e6fda58fd9d54582b0e497795719d81dc68ac88ba7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/bzip2-1.0.8-25.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/30fd7d37e3f06d0b06b6f3e6fda58fd9d54582b0e497795719d81dc68ac88ba7", + ], +) + +rpm( + name = "bzip2-0__1.0.8-25.el10.s390x", + sha256 = "c9208b97a6a3e2cb7fc84a7bea4e330399cc6ef892c3f0abe20d5df10797eade", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/bzip2-1.0.8-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/c9208b97a6a3e2cb7fc84a7bea4e330399cc6ef892c3f0abe20d5df10797eade", + ], +) + +rpm( + name = "bzip2-0__1.0.8-25.el10.x86_64", + sha256 = "ff7f8e9c3cc936d35033ec40545ee4a836db27c30c240d3aa39be4c8b0fda631", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff7f8e9c3cc936d35033ec40545ee4a836db27c30c240d3aa39be4c8b0fda631", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.x86_64", + sha256 = "84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-11.el9.aarch64", + sha256 = "fafc0f2b7632774d4c07264c73eebbe52f815b4c81056bd44b944e5255cb20bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fafc0f2b7632774d4c07264c73eebbe52f815b4c81056bd44b944e5255cb20bb", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-11.el9.s390x", + sha256 = "e9746e7bd442b4104b726e239cf3b7b87400824c7094de6d11f356da4c27593f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e9746e7bd442b4104b726e239cf3b7b87400824c7094de6d11f356da4c27593f", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-11.el9.x86_64", + sha256 = "e1f4ca1a16276a6ede5f67cab8d8d2920b98531419af7498f5fded85835e0fca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e1f4ca1a16276a6ede5f67cab8d8d2920b98531419af7498f5fded85835e0fca", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-25.el10.aarch64", + sha256 = "ac836c2c133077d0e71092f2c21e69d3985ace8458af527440e13b7edf165beb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-25.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ac836c2c133077d0e71092f2c21e69d3985ace8458af527440e13b7edf165beb", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-25.el10.s390x", + sha256 = "219adea56b92ecf22cb63fad38638e16115df270b78ea1fbd3cc1b183caf69a4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/219adea56b92ecf22cb63fad38638e16115df270b78ea1fbd3cc1b183caf69a4", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-25.el10.x86_64", + sha256 = "309c7dbb857254655c51c4ab02d8038137c1363058542d8701c9272609f5b433", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/309c7dbb857254655c51c4ab02d8038137c1363058542d8701c9272609f5b433", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64", + sha256 = "a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/ca-certificates-2025.2.80_v9.0.305-102.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x", + sha256 = "a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/ca-certificates-2025.2.80_v9.0.305-102.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64", + sha256 = "a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/ca-certificates-2025.2.80_v9.0.305-102.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64", + sha256 = "489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x", + sha256 = "489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64", + sha256 = "489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.aarch64", + sha256 = "fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/capstone-4.0.2-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.s390x", + sha256 = "1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/capstone-4.0.2-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.x86_64", + sha256 = "f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/capstone-4.0.2-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + ], +) + +rpm( + name = "capstone-0__5.0.1-6.el10.aarch64", + sha256 = "be12ff671fc1244c69b39284b61f4a7e825570d11176dcd83e8476010157db92", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/capstone-5.0.1-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/be12ff671fc1244c69b39284b61f4a7e825570d11176dcd83e8476010157db92", + ], +) + +rpm( + name = "capstone-0__5.0.1-6.el10.s390x", + sha256 = "f94850c0dedde1efd687de604a99f6461ec2cb394184f76e3d2d17af0654f0d0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/capstone-5.0.1-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f94850c0dedde1efd687de604a99f6461ec2cb394184f76e3d2d17af0654f0d0", + ], +) + +rpm( + name = "capstone-0__5.0.1-6.el10.x86_64", + sha256 = "aa46343e831205d94b08f3d692f88b3a84a16f35b260152684ea10183d972160", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/capstone-5.0.1-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa46343e831205d94b08f3d692f88b3a84a16f35b260152684ea10183d972160", + ], +) + +rpm( + name = "centos-gpg-keys-0__10.0-20.el10.aarch64", + sha256 = "2c8285ac32231cb050b87c841173d071d8a5131026ebff6549f78b65a2de2425", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-gpg-keys-0__10.0-20.el10.s390x", + sha256 = "2c8285ac32231cb050b87c841173d071d8a5131026ebff6549f78b65a2de2425", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-gpg-keys-0__10.0-20.el10.x86_64", + sha256 = "2c8285ac32231cb050b87c841173d071d8a5131026ebff6549f78b65a2de2425", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-26.el9.x86_64", + sha256 = "8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + urls = ["https://storage.googleapis.com/builddeps/8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca"], +) + +rpm( + name = "centos-gpg-keys-0__9.0-35.el9.aarch64", + sha256 = "77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-35.el9.s390x", + sha256 = "77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-35.el9.x86_64", + sha256 = "77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + ], +) + +rpm( + name = "centos-stream-release-0__10.0-20.el10.aarch64", + sha256 = "b0959f089bd8c1686d45f04d1b533856ef338c3113019869d5363b81227cc133", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/centos-stream-release-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-release-0__10.0-20.el10.s390x", + sha256 = "b0959f089bd8c1686d45f04d1b533856ef338c3113019869d5363b81227cc133", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/centos-stream-release-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-release-0__10.0-20.el10.x86_64", + sha256 = "b0959f089bd8c1686d45f04d1b533856ef338c3113019869d5363b81227cc133", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/centos-stream-release-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-26.el9.x86_64", + sha256 = "3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + urls = ["https://storage.googleapis.com/builddeps/3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3"], +) + +rpm( + name = "centos-stream-release-0__9.0-35.el9.aarch64", + sha256 = "1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-release-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-35.el9.s390x", + sha256 = "1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-release-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-35.el9.x86_64", + sha256 = "1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-release-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + ], +) + +rpm( + name = "centos-stream-repos-0__10.0-20.el10.aarch64", + sha256 = "9b86e7529335e2295623dc5c73d9d79fb9adb0f02d1f4253dfe0de05b2891256", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-repos-0__10.0-20.el10.s390x", + sha256 = "9b86e7529335e2295623dc5c73d9d79fb9adb0f02d1f4253dfe0de05b2891256", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/centos-stream-repos-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-repos-0__10.0-20.el10.x86_64", + sha256 = "9b86e7529335e2295623dc5c73d9d79fb9adb0f02d1f4253dfe0de05b2891256", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-26.el9.x86_64", + sha256 = "eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + urls = ["https://storage.googleapis.com/builddeps/eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035"], +) + +rpm( + name = "centos-stream-repos-0__9.0-35.el9.aarch64", + sha256 = "23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-35.el9.s390x", + sha256 = "23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-repos-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-35.el9.x86_64", + sha256 = "23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.x86_64", + sha256 = "09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + ], +) + +rpm( + name = "coreutils-single-0__8.32-40.el9.aarch64", + sha256 = "01ae5898e4f6a43c85f5d0123a02015309384d1a4a40bf58db0ef899adf398be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/coreutils-single-8.32-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01ae5898e4f6a43c85f5d0123a02015309384d1a4a40bf58db0ef899adf398be", + ], +) + +rpm( + name = "coreutils-single-0__8.32-40.el9.s390x", + sha256 = "a258bc285a7a31480f9d9e8255e24c748f1271834e5c92c60b003e1f2fa0a076", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/coreutils-single-8.32-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a258bc285a7a31480f9d9e8255e24c748f1271834e5c92c60b003e1f2fa0a076", + ], +) + +rpm( + name = "coreutils-single-0__8.32-40.el9.x86_64", + sha256 = "14976e3ef37565bd9959bdda734c92199fde7d6ad6c0d970349a84340f11c871", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/14976e3ef37565bd9959bdda734c92199fde7d6ad6c0d970349a84340f11c871", + ], +) + +rpm( + name = "coreutils-single-0__9.5-7.el10.aarch64", + sha256 = "61dca0bdaea3cc04e67778fee3009c88e6db35208dde22fa035e7614074c547a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/coreutils-single-9.5-7.el10.aarch64.rpm", + ], +) + +rpm( + name = "coreutils-single-0__9.5-7.el10.s390x", + sha256 = "f1cf5fccb8144ca9483a26f63ac943af27f9e190253b79e49a5c4fa6d857bf04", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/coreutils-single-9.5-7.el10.s390x.rpm", + ], +) + +rpm( + name = "coreutils-single-0__9.5-7.el10.x86_64", + sha256 = "9a5196ca04b3c69e82abfeac7e0424077b6e8696b40c37fb1c17766f63af91bc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/coreutils-single-9.5-7.el10.x86_64.rpm", + ], +) + +rpm( + name = "cpp-0__11.5.0-14.el9.aarch64", + sha256 = "6c14ab2a1cfa7fcaa55e1a6a1d35220c817010c89321c7e8654855cc9582b381", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/cpp-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6c14ab2a1cfa7fcaa55e1a6a1d35220c817010c89321c7e8654855cc9582b381", + ], +) + +rpm( + name = "cpp-0__11.5.0-14.el9.s390x", + sha256 = "168ccf4f3a4dad3eeccaaf2614cdae24a77c3a0ec1ee409d71e9fbc3dca12a23", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/cpp-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/168ccf4f3a4dad3eeccaaf2614cdae24a77c3a0ec1ee409d71e9fbc3dca12a23", + ], +) + +rpm( + name = "cpp-0__11.5.0-14.el9.x86_64", + sha256 = "b2792e076b41cd6d044d341ae756575a51e0ab85a6dae375f1cb1d59cf47d921", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cpp-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b2792e076b41cd6d044d341ae756575a51e0ab85a6dae375f1cb1d59cf47d921", + ], +) + +rpm( + name = "cpp-0__14.3.1-4.4.el10.aarch64", + sha256 = "642cd24d9944392b6d55e2a32b137a0a4f31857a11b6e1c1c423bf66061b4864", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/cpp-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "cpp-0__14.3.1-4.4.el10.s390x", + sha256 = "29ee0eb088163e4b0ffa4166141bb2e40db37742870d57a96e461c3a2ad42fdb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/cpp-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "cpp-0__14.3.1-4.4.el10.x86_64", + sha256 = "7668973ca6c7706025e30e4b557eb1ac8b55d05bda1ba3d8410d0b502ebfbf72", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/cpp-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "cracklib-0__2.9.11-8.el10.aarch64", + sha256 = "04112224e2f1b7027ef15ee4cb9ede5bb89426b29f150692778d8f7ca155eea9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cracklib-2.9.11-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/04112224e2f1b7027ef15ee4cb9ede5bb89426b29f150692778d8f7ca155eea9", + ], +) + +rpm( + name = "cracklib-0__2.9.11-8.el10.s390x", + sha256 = "2e0c0ba830f1a497461b1a7f6e76f5d409c9bf87d2c4a6874957abe3fdb74be3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cracklib-2.9.11-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2e0c0ba830f1a497461b1a7f6e76f5d409c9bf87d2c4a6874957abe3fdb74be3", + ], +) + +rpm( + name = "cracklib-0__2.9.11-8.el10.x86_64", + sha256 = "4d648a415fe67550a22ff50befdaf9a33ccb55dbc9a2e3d4121ddfbe2ee843f7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.11-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4d648a415fe67550a22ff50befdaf9a33ccb55dbc9a2e3d4121ddfbe2ee843f7", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.x86_64", + sha256 = "be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + ], +) + +rpm( + name = "cracklib-0__2.9.6-28.el9.aarch64", + sha256 = "78dbd83e4de7c011dedc8071af056989dece25dae7605eb60703b219ebbeadc1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-2.9.6-28.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/78dbd83e4de7c011dedc8071af056989dece25dae7605eb60703b219ebbeadc1", + ], +) + +rpm( + name = "cracklib-0__2.9.6-28.el9.s390x", + sha256 = "14006fd9132581ca7ab86b87eb4751efd25279bc60df48aced985002e401112d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-2.9.6-28.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/14006fd9132581ca7ab86b87eb4751efd25279bc60df48aced985002e401112d", + ], +) + +rpm( + name = "cracklib-0__2.9.6-28.el9.x86_64", + sha256 = "aa659fc5fc1f40d9301850411e1e4cfb9351175e1879a1d404292cbd909982f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.6-28.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa659fc5fc1f40d9301850411e1e4cfb9351175e1879a1d404292cbd909982f0", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.11-8.el10.aarch64", + sha256 = "51210426186039c77239cbb3c710acbc9f7778ca44292204ffa2ecf1448e2c1e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.11-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/51210426186039c77239cbb3c710acbc9f7778ca44292204ffa2ecf1448e2c1e", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.11-8.el10.s390x", + sha256 = "45cf94fabce8c9c035df7db91b19fefec5cfef5cee54505cabebce1822e3099d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cracklib-dicts-2.9.11-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/45cf94fabce8c9c035df7db91b19fefec5cfef5cee54505cabebce1822e3099d", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.11-8.el10.x86_64", + sha256 = "79dd2684b0ae0cbc47739c0e292f17243eb448b92f74bae893cf1eb4aba14703", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.11-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79dd2684b0ae0cbc47739c0e292f17243eb448b92f74bae893cf1eb4aba14703", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.x86_64", + sha256 = "01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-28.el9.aarch64", + sha256 = "3b449db83d1a649b93eff386e098ab01f24028b106827d9fef899abc99818b15", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.6-28.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b449db83d1a649b93eff386e098ab01f24028b106827d9fef899abc99818b15", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-28.el9.s390x", + sha256 = "a0ac88ff592620ae37ea0826d59874f0f5a08828c02fcd514473302d15cf6c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-dicts-2.9.6-28.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a0ac88ff592620ae37ea0826d59874f0f5a08828c02fcd514473302d15cf6c03", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-28.el9.x86_64", + sha256 = "b0e372c09e6eb01d2de1316b7e59c79178c0eaee6d713004d7fe5fbc7e718603", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-28.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b0e372c09e6eb01d2de1316b7e59c79178c0eaee6d713004d7fe5fbc7e718603", + ], +) + +rpm( + name = "crypto-policies-0__20250128-1.git5269e22.el9.x86_64", + sha256 = "f811d2c848f6f93a188f2d74d4ccd172e1dc88fa7919e8e203cf1df3d93571e1", + urls = ["https://storage.googleapis.com/builddeps/f811d2c848f6f93a188f2d74d4ccd172e1dc88fa7919e8e203cf1df3d93571e1"], +) + +rpm( + name = "crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64", + sha256 = "38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-20251126-1.gite9c4db2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + ], +) + +rpm( + name = "crypto-policies-0__20251126-1.gite9c4db2.el9.s390x", + sha256 = "38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-20251126-1.gite9c4db2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + ], +) + +rpm( + name = "crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64", + sha256 = "38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-20251126-1.gite9c4db2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + ], +) + +rpm( + name = "crypto-policies-0__20260216-1.git0e54016.el10.aarch64", + sha256 = "d6041237021e53b095cc81224a872cbe7d18988374315cd9457be29803641ac8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/crypto-policies-20260216-1.git0e54016.el10.noarch.rpm", + ], +) + +rpm( + name = "crypto-policies-0__20260216-1.git0e54016.el10.s390x", + sha256 = "d6041237021e53b095cc81224a872cbe7d18988374315cd9457be29803641ac8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/crypto-policies-20260216-1.git0e54016.el10.noarch.rpm", + ], +) + +rpm( + name = "crypto-policies-0__20260216-1.git0e54016.el10.x86_64", + sha256 = "d6041237021e53b095cc81224a872cbe7d18988374315cd9457be29803641ac8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/crypto-policies-20260216-1.git0e54016.el10.noarch.rpm", + ], +) + +rpm( + name = "curl-0__8.12.1-4.el10.aarch64", + sha256 = "7fe56b8ad3db9141cd721455717109785447e79358f4541d27bec012230db8c4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/curl-8.12.1-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7fe56b8ad3db9141cd721455717109785447e79358f4541d27bec012230db8c4", + ], +) + +rpm( + name = "curl-0__8.12.1-4.el10.s390x", + sha256 = "2aa147ae00c5fc1a0264f785127771e6ced0f4ee3d82a9bd6c48d1f240e44c7c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/curl-8.12.1-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2aa147ae00c5fc1a0264f785127771e6ced0f4ee3d82a9bd6c48d1f240e44c7c", + ], +) + +rpm( + name = "curl-0__8.12.1-4.el10.x86_64", + sha256 = "30b38c7b64e1a33c6b69634fcb4b9d9f1714f9bd6530ee0175fc3be149f23d9b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/curl-8.12.1-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30b38c7b64e1a33c6b69634fcb4b9d9f1714f9bd6530ee0175fc3be149f23d9b", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-40.el9.aarch64", + sha256 = "a3de170776a05462a04ab6bfd8c66f4a032d70f53d34018013751eb2e0392657", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-minimal-7.76.1-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a3de170776a05462a04ab6bfd8c66f4a032d70f53d34018013751eb2e0392657", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-40.el9.s390x", + sha256 = "fb571ec63ecacabed30de75cb81b048e4e01f3a0b521d91190fcd2412df7b6ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-minimal-7.76.1-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fb571ec63ecacabed30de75cb81b048e4e01f3a0b521d91190fcd2412df7b6ae", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-40.el9.x86_64", + sha256 = "94c55a702411b0bc2c6c9c1bb0ab794105785af58c5ad22597cc68536709a092", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/94c55a702411b0bc2c6c9c1bb0ab794105785af58c5ad22597cc68536709a092", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64", + sha256 = "12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x", + sha256 = "0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64", + sha256 = "c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.28-27.el10.aarch64", + sha256 = "f030977f59727e389143e1813c5fc848799abbea48ed60aca460dc2eb1a79637", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-gssapi-2.1.28-27.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f030977f59727e389143e1813c5fc848799abbea48ed60aca460dc2eb1a79637", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x", + sha256 = "28c75a50cf3f092920ac56fb65805e9c875fc95d4e76bce0e1cc6b6d21e3fba3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cyrus-sasl-gssapi-2.1.28-27.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/28c75a50cf3f092920ac56fb65805e9c875fc95d4e76bce0e1cc6b6d21e3fba3", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64", + sha256 = "f9ab02ca832fe4d5c1e1ee3abd7ff3db3815d164561350316032a82b44d68b6c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-gssapi-2.1.28-27.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f9ab02ca832fe4d5c1e1ee3abd7ff3db3815d164561350316032a82b44d68b6c", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.aarch64", + sha256 = "898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.s390x", + sha256 = "e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.x86_64", + sha256 = "fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.28-27.el10.aarch64", + sha256 = "917d6b8d2eff0dd71b55646c758b938ac7b9f0a298f2dffae5948c9865215067", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.28-27.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/917d6b8d2eff0dd71b55646c758b938ac7b9f0a298f2dffae5948c9865215067", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.28-27.el10.s390x", + sha256 = "b40557a0d21461db27adf093fe6a72ec17a243f6743a3d1e26c32601753e97ee", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cyrus-sasl-lib-2.1.28-27.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/b40557a0d21461db27adf093fe6a72ec17a243f6743a3d1e26c32601753e97ee", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.28-27.el10.x86_64", + sha256 = "ea78a83980b03f3709266f5e4c96b41699fe8d5f7003fb9503c3a7529c6ca46a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.28-27.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea78a83980b03f3709266f5e4c96b41699fe8d5f7003fb9503c3a7529c6ca46a", + ], +) + +rpm( + name = "daxctl-libs-0__78-2.el9.x86_64", + sha256 = "1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/daxctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + ], +) + +rpm( + name = "daxctl-libs-0__82-1.el9.x86_64", + sha256 = "f3650df75436eebe1fd14369f161a7b15c8ab9f4ed6333b8a83e1be70dc185a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/daxctl-libs-82-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f3650df75436eebe1fd14369f161a7b15c8ab9f4ed6333b8a83e1be70dc185a3", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.aarch64", + sha256 = "29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.s390x", + sha256 = "a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.x86_64", + sha256 = "d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + ], +) + +rpm( + name = "dbus-1__1.14.10-5.el10.aarch64", + sha256 = "2f00025969ff8b32c254ec38919908120f83847e98285413c718d1ad0b2a8766", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-1.14.10-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2f00025969ff8b32c254ec38919908120f83847e98285413c718d1ad0b2a8766", + ], +) + +rpm( + name = "dbus-1__1.14.10-5.el10.s390x", + sha256 = "2a746bab9a5c03b6bc2f680ad3be8ecf935404c17f6488de44e77ab61bdfedb8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-1.14.10-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2a746bab9a5c03b6bc2f680ad3be8ecf935404c17f6488de44e77ab61bdfedb8", + ], +) + +rpm( + name = "dbus-1__1.14.10-5.el10.x86_64", + sha256 = "c71f38667ecebd3ba0adf415ccf181209330bb0e2ca9ad0bf4de9828b370b9e4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-1.14.10-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c71f38667ecebd3ba0adf415ccf181209330bb0e2ca9ad0bf4de9828b370b9e4", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.aarch64", + sha256 = "28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-broker-28-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.s390x", + sha256 = "d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-broker-28-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.x86_64", + sha256 = "dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-broker-28-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + ], +) + +rpm( + name = "dbus-broker-0__36-4.el10.aarch64", + sha256 = "3716b1d4daa23c6fd965175473464ddfa91ea5651a68298a2e0b139021e23035", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-broker-36-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3716b1d4daa23c6fd965175473464ddfa91ea5651a68298a2e0b139021e23035", + ], +) + +rpm( + name = "dbus-broker-0__36-4.el10.s390x", + sha256 = "3d1ec31218c8925602bb7fcd88150c628a0e24ab5cc4e7c63b85785202756283", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-broker-36-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d1ec31218c8925602bb7fcd88150c628a0e24ab5cc4e7c63b85785202756283", + ], +) + +rpm( + name = "dbus-broker-0__36-4.el10.x86_64", + sha256 = "a0778052571fe74351500a06e765219fcf53c0ca2eeb4969a2682a36ee9f9c10", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-broker-36-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0778052571fe74351500a06e765219fcf53c0ca2eeb4969a2682a36ee9f9c10", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.aarch64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.s390x", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.x86_64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.14.10-5.el10.aarch64", + sha256 = "1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-common-1.14.10-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + ], +) + +rpm( + name = "dbus-common-1__1.14.10-5.el10.s390x", + sha256 = "1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-common-1.14.10-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + ], +) + +rpm( + name = "dbus-common-1__1.14.10-5.el10.x86_64", + sha256 = "1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-common-1.14.10-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.aarch64", + sha256 = "4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-libs-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.s390x", + sha256 = "03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-libs-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.x86_64", + sha256 = "2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-libs-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + ], +) + +rpm( + name = "dbus-libs-1__1.14.10-5.el10.aarch64", + sha256 = "976a662683dc4f8235303cd6065f589c4d4728671116827b2002ac1fd4a74a72", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-libs-1.14.10-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/976a662683dc4f8235303cd6065f589c4d4728671116827b2002ac1fd4a74a72", + ], +) + +rpm( + name = "dbus-libs-1__1.14.10-5.el10.s390x", + sha256 = "261a5aee8fd8417bdb0b629b7ae4141cec92de79d32b45982c66cc82878f3175", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-libs-1.14.10-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/261a5aee8fd8417bdb0b629b7ae4141cec92de79d32b45982c66cc82878f3175", + ], +) + +rpm( + name = "dbus-libs-1__1.14.10-5.el10.x86_64", + sha256 = "7cd5d99568a89ef7100ae60d44aa270cbf5882e95cbc8f43497696f81c664284", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-libs-1.14.10-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7cd5d99568a89ef7100ae60d44aa270cbf5882e95cbc8f43497696f81c664284", + ], +) + +rpm( + name = "device-mapper-10__1.02.210-2.el10.aarch64", + sha256 = "5f304e80a178f73ab39509e1f44d35931d2bbb908b4c701d5729c60843ab6147", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/device-mapper-1.02.210-2.el10.aarch64.rpm", + ], +) + +rpm( + name = "device-mapper-10__1.02.210-2.el10.s390x", + sha256 = "47cc9a17d39ea84ee09481ee09b2d7bc1c21dceab3cb9b9e8eb265d457bfe47b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/device-mapper-1.02.210-2.el10.s390x.rpm", + ], +) + +rpm( + name = "device-mapper-10__1.02.210-2.el10.x86_64", + sha256 = "2293f9c575a49b37a8d4c8551da129a8f8fc9ac169e20c3a0e5468f1dd2d51ff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.210-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "device-mapper-9__1.02.202-6.el9.x86_64", + sha256 = "0bf0cd224f72b8c6f3747d8c8d053418b13ff819601cc1293233b31e3a01998b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.202-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0bf0cd224f72b8c6f3747d8c8d053418b13ff819601cc1293233b31e3a01998b", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.aarch64", + sha256 = "3e2ab355c84e3c552f0c801bcf2abfa52d303c8362e64ee1a1b8349ff5de4e58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-1.02.206-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3e2ab355c84e3c552f0c801bcf2abfa52d303c8362e64ee1a1b8349ff5de4e58", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.s390x", + sha256 = "ba1c1a6f529a1700b2c7257baf88ab421770ea2c760889bc74d1e0372ecf6ea8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-1.02.206-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ba1c1a6f529a1700b2c7257baf88ab421770ea2c760889bc74d1e0372ecf6ea8", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.x86_64", + sha256 = "dca7b6ad60c556111c6a2ab198fe7fa802cafb2733183cce831135fedad8a7e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.206-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dca7b6ad60c556111c6a2ab198fe7fa802cafb2733183cce831135fedad8a7e0", + ], +) + +rpm( + name = "device-mapper-libs-10__1.02.210-2.el10.aarch64", + sha256 = "36844cc162ec8f9e19ba5cd8fa3e74f6f25a7dd0fc31c7295a6ab18815026e05", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.210-2.el10.aarch64.rpm", + ], +) + +rpm( + name = "device-mapper-libs-10__1.02.210-2.el10.s390x", + sha256 = "3c6935e62d32aef864f001e06885b4959700d889e01dc08d2e12acd0c2f43b6a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/device-mapper-libs-1.02.210-2.el10.s390x.rpm", + ], +) + +rpm( + name = "device-mapper-libs-10__1.02.210-2.el10.x86_64", + sha256 = "a8c80a48e8089d0bd787971aa6f7ad6e6d9b8a0ad6cad672d6aae089493789d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.210-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.202-6.el9.x86_64", + sha256 = "8efb6c63cb8dfa44329e6f47cc1f4d97f727ea1b21c619a8cc1244769e692af9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.202-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8efb6c63cb8dfa44329e6f47cc1f4d97f727ea1b21c619a8cc1244769e692af9", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.aarch64", + sha256 = "935550e46fcdabb578ad5373e12f81ed0cadde85b5d7522b1e0d7171eb73c9de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.206-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/935550e46fcdabb578ad5373e12f81ed0cadde85b5d7522b1e0d7171eb73c9de", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.s390x", + sha256 = "61827b1539c7db88538c58fba2a0b95c8cc5ed0f1a696ab26b6acab4cf5c4e67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-libs-1.02.206-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/61827b1539c7db88538c58fba2a0b95c8cc5ed0f1a696ab26b6acab4cf5c4e67", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.x86_64", + sha256 = "2b6ab8f98bed43e79f71d4ac2aeb2ff4d303497f04addbfff74bd2dd6ad71796", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.206-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2b6ab8f98bed43e79f71d4ac2aeb2ff4d303497f04addbfff74bd2dd6ad71796", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-44.el9.aarch64", + sha256 = "5345a2ebb787fd142fc056675bd657c15f124733c85958f40dac9512aebdd80a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-multipath-libs-0.8.7-44.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5345a2ebb787fd142fc056675bd657c15f124733c85958f40dac9512aebdd80a", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-44.el9.x86_64", + sha256 = "6b0c5ee67467eb2a0bb4cd3969878b6add9fe5f0e9dbfea4963e7d8ca239b17b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-multipath-libs-0.8.7-44.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6b0c5ee67467eb2a0bb4cd3969878b6add9fe5f0e9dbfea4963e7d8ca239b17b", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.9.9-15.el10.aarch64", + sha256 = "14a7c7b2affa61a420527a77beba4b9968269b42671ef5bd0a690f11dd3241c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/device-mapper-multipath-libs-0.9.9-15.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/14a7c7b2affa61a420527a77beba4b9968269b42671ef5bd0a690f11dd3241c8", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.9.9-15.el10.x86_64", + sha256 = "e88082ce08b8067cd35fd27daadddd11bd35d55be78f4e3985eb3074c52ef464", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/device-mapper-multipath-libs-0.9.9-15.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e88082ce08b8067cd35fd27daadddd11bd35d55be78f4e3985eb3074c52ef464", + ], +) + +rpm( + name = "diffutils-0__3.10-8.el10.aarch64", + sha256 = "d06031d2cd612618343d29186bc873cafd52c9e71efae6d04dcb494de2b53b58", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/diffutils-3.10-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d06031d2cd612618343d29186bc873cafd52c9e71efae6d04dcb494de2b53b58", + ], +) + +rpm( + name = "diffutils-0__3.10-8.el10.s390x", + sha256 = "4668ee01492723f3a4fd094ff49ef2485ab3f17d1e30b19103a70e4b24a7c3e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/diffutils-3.10-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4668ee01492723f3a4fd094ff49ef2485ab3f17d1e30b19103a70e4b24a7c3e2", + ], +) + +rpm( + name = "diffutils-0__3.10-8.el10.x86_64", + sha256 = "96882ec03cfc01ae557f0ec547fb8d346179eb705c899bec0533eafda7c1bd80", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/diffutils-3.10-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/96882ec03cfc01ae557f0ec547fb8d346179eb705c899bec0533eafda7c1bd80", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.aarch64", + sha256 = "4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/diffutils-3.7-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.s390x", + sha256 = "e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/diffutils-3.7-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.x86_64", + sha256 = "fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/diffutils-3.7-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + ], +) + +rpm( + name = "dmidecode-1__3.6-1.el9.x86_64", + sha256 = "e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + ], +) + +rpm( + name = "dmidecode-1__3.6-2.el9.aarch64", + sha256 = "800b4e874e52f2d181eccb438ac2ef82185b938f67c80e65e72e1004df9fa575", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dmidecode-3.6-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/800b4e874e52f2d181eccb438ac2ef82185b938f67c80e65e72e1004df9fa575", + ], +) + +rpm( + name = "dmidecode-1__3.6-2.el9.x86_64", + sha256 = "11bdceab038ffa793efd223db04703bbac90d65c057831e83bc5380e6a16e959", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11bdceab038ffa793efd223db04703bbac90d65c057831e83bc5380e6a16e959", + ], +) + +rpm( + name = "dmidecode-1__3.6-5.el10.aarch64", + sha256 = "381d5765cc5b1346f47dea4818c013bc308eb2cd9a76a9a3c4046a6982910956", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dmidecode-3.6-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/381d5765cc5b1346f47dea4818c013bc308eb2cd9a76a9a3c4046a6982910956", + ], +) + +rpm( + name = "dmidecode-1__3.6-5.el10.x86_64", + sha256 = "332cfc77ea06aab27c93c1cf2382e50bf62ddad534c526795083a98ec10668c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/332cfc77ea06aab27c93c1cf2382e50bf62ddad534c526795083a98ec10668c8", + ], +) + +rpm( + name = "duktape-0__2.7.0-10.el10.aarch64", + sha256 = "c390a43273231fec4a25199690e0106268e3eb46a1592d4cd68cf56909efce5e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/duktape-2.7.0-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c390a43273231fec4a25199690e0106268e3eb46a1592d4cd68cf56909efce5e", + ], +) + +rpm( + name = "duktape-0__2.7.0-10.el10.s390x", + sha256 = "7cafae00eb1aa432b96c9fb9a6df9789d3ccf03515b7714c16ff8dcbaa7210d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/duktape-2.7.0-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7cafae00eb1aa432b96c9fb9a6df9789d3ccf03515b7714c16ff8dcbaa7210d6", + ], +) + +rpm( + name = "duktape-0__2.7.0-10.el10.x86_64", + sha256 = "23b7d2905723ed7adabe3362c54d54f0745c908029ec3be79bd881770d2c591a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/duktape-2.7.0-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/23b7d2905723ed7adabe3362c54d54f0745c908029ec3be79bd881770d2c591a", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.aarch64", + sha256 = "e764033c6a78fba5f7f5a2cfe59d627aa2b6ff4962dee494b33ed7de9ef0ef51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e764033c6a78fba5f7f5a2cfe59d627aa2b6ff4962dee494b33ed7de9ef0ef51", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.s390x", + sha256 = "b9048f417885369956a1668e204ca2499e2d46b2c61f62a34cb8caa7797e2ff1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b9048f417885369956a1668e204ca2499e2d46b2c61f62a34cb8caa7797e2ff1", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.x86_64", + sha256 = "a0b4500adf6c74516aeeb6aa2bf08a5a20508fc7ad4d241c7e686110abe17dbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0b4500adf6c74516aeeb6aa2bf08a5a20508fc7ad4d241c7e686110abe17dbe", + ], +) + +rpm( + name = "e2fsprogs-0__1.47.1-5.el10.aarch64", + sha256 = "fd5592fb0e7c1ae9ae023eafb55c7ae3ac71c94c44e1f498f1eb56c1940f3c40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/e2fsprogs-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fd5592fb0e7c1ae9ae023eafb55c7ae3ac71c94c44e1f498f1eb56c1940f3c40", + ], +) + +rpm( + name = "e2fsprogs-0__1.47.1-5.el10.s390x", + sha256 = "23803262e02ed5ad895284267c828bee4620aa498326a36c659a36dcd12bce9e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/e2fsprogs-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/23803262e02ed5ad895284267c828bee4620aa498326a36c659a36dcd12bce9e", + ], +) + +rpm( + name = "e2fsprogs-0__1.47.1-5.el10.x86_64", + sha256 = "736291b66f30c8ad543f5bed5375c92bc8a2e3bce1704a77f5b727ee844fb0dd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/e2fsprogs-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/736291b66f30c8ad543f5bed5375c92bc8a2e3bce1704a77f5b727ee844fb0dd", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.aarch64", + sha256 = "f8ec39d902f629559a263ff7238192887b8f7cc16815af5a4577b86627599919", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f8ec39d902f629559a263ff7238192887b8f7cc16815af5a4577b86627599919", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.s390x", + sha256 = "d279fad6453b9b5f90fc14181727594fb4aaf980b641976d049448ae978f27c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-libs-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d279fad6453b9b5f90fc14181727594fb4aaf980b641976d049448ae978f27c2", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.x86_64", + sha256 = "28841ef6789b99559061c236b30e680bd045650bd22180133a3815cceb65cc46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/28841ef6789b99559061c236b30e680bd045650bd22180133a3815cceb65cc46", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.47.1-5.el10.aarch64", + sha256 = "e8b7d03d574363beaebef73048b8fe8461ed7b1206152b81eb0852f5c01d533b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e8b7d03d574363beaebef73048b8fe8461ed7b1206152b81eb0852f5c01d533b", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.47.1-5.el10.s390x", + sha256 = "25bb41764aefa735e891df10d2846b4c86f00f8eaabaf9a66acf08ebf290b700", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/e2fsprogs-libs-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/25bb41764aefa735e891df10d2846b4c86f00f8eaabaf9a66acf08ebf290b700", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.47.1-5.el10.x86_64", + sha256 = "d73c79a7bda1ce465707d82fa6b9777fcd2776301a6f6722ca323b4c9337c64b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d73c79a7bda1ce465707d82fa6b9777fcd2776301a6f6722ca323b4c9337c64b", + ], +) + +rpm( + name = "edk2-aarch64-0__20241117-8.el9.aarch64", + sha256 = "4d92929c0c6a83146955894e0a7da7b626d7872c2e339301f82cf4ecc24f21a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/edk2-aarch64-20241117-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d92929c0c6a83146955894e0a7da7b626d7872c2e339301f82cf4ecc24f21a0", + ], +) + +rpm( + name = "edk2-aarch64-0__20251114-4.el10.aarch64", + sha256 = "c45e0681ae57f12fc9cb5123c4a55d83b09906fc3d75f8cdb9f2e6b90e1e2f2c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/edk2-aarch64-20251114-4.el10.noarch.rpm", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-2.el9.x86_64", + sha256 = "a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172", + urls = ["https://storage.googleapis.com/builddeps/a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172"], +) + +rpm( + name = "edk2-ovmf-0__20241117-8.el9.s390x", + sha256 = "6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/edk2-ovmf-20241117-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-8.el9.x86_64", + sha256 = "6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20241117-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + ], +) + +rpm( + name = "edk2-ovmf-0__20251114-4.el10.s390x", + sha256 = "1e14d4051f43685a32596907775a33a6e2c94b7ea49d6779ea989a5db517edbf", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/edk2-ovmf-20251114-4.el10.noarch.rpm", + ], +) + +rpm( + name = "edk2-ovmf-0__20251114-4.el10.x86_64", + sha256 = "1e14d4051f43685a32596907775a33a6e2c94b7ea49d6779ea989a5db517edbf", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20251114-4.el10.noarch.rpm", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el10.aarch64", + sha256 = "280b20ad99ef6a5097776c729d7b7ccc679d9eb4c977d32ee92af4641a8e745d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.194-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/280b20ad99ef6a5097776c729d7b7ccc679d9eb4c977d32ee92af4641a8e745d", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el10.s390x", + sha256 = "70da3d5d468afd29b27733d38e61b79ebeee2de0e75c5f11b9edbd5e151aa4fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-debuginfod-client-0.194-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/70da3d5d468afd29b27733d38e61b79ebeee2de0e75c5f11b9edbd5e151aa4fe", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el10.x86_64", + sha256 = "5ac0c4084d431eda2da1db7698d10d62195ec03f44e25755f4d6b8133d6606e6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.194-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5ac0c4084d431eda2da1db7698d10d62195ec03f44e25755f4d6b8133d6606e6", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el9.aarch64", + sha256 = "745a3f1dec43e34bad7ac3677472a57dd98a293bb5ed6d42c2a423163ae78b9f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/745a3f1dec43e34bad7ac3677472a57dd98a293bb5ed6d42c2a423163ae78b9f", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el9.s390x", + sha256 = "fb52d62ad9e8477833a5912bba1cccd9d9972ee7fa88c31b4d9867e324000699", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-debuginfod-client-0.194-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fb52d62ad9e8477833a5912bba1cccd9d9972ee7fa88c31b4d9867e324000699", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el9.x86_64", + sha256 = "40de0a46e149c1ed6bb79a19191f7279ebf429f05ee9693f6185ed8b56370caf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/40de0a46e149c1ed6bb79a19191f7279ebf429f05ee9693f6185ed8b56370caf", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el10.aarch64", + sha256 = "35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.194-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el10.s390x", + sha256 = "35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-default-yama-scope-0.194-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el10.x86_64", + sha256 = "35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.194-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el9.aarch64", + sha256 = "6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el9.s390x", + sha256 = "6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el9.x86_64", + sha256 = "6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + ], +) + +rpm( + name = "elfutils-libelf-0__0.192-5.el9.x86_64", + sha256 = "be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.192-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el10.aarch64", + sha256 = "97c0ad3cb708215214b2c79fce3e840eeb023e751a679c8da23b0ac24c9286b4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-libelf-0.194-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/97c0ad3cb708215214b2c79fce3e840eeb023e751a679c8da23b0ac24c9286b4", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el10.s390x", + sha256 = "01795d511317f3717a7f837bf9e0ac92d5db4da33eb1fd5b93987313f6638fcf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-libelf-0.194-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/01795d511317f3717a7f837bf9e0ac92d5db4da33eb1fd5b93987313f6638fcf", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el10.x86_64", + sha256 = "1bfacc8e5b007821e21f82b50aa1ab3f1a2959fd4f3361c277e75db43bd69284", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.194-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1bfacc8e5b007821e21f82b50aa1ab3f1a2959fd4f3361c277e75db43bd69284", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el9.aarch64", + sha256 = "ac9cc272659364f6b60f3754b25fedb2e9aa1f8a3fd91eebde5f4e75ecc8510e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libelf-0.194-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ac9cc272659364f6b60f3754b25fedb2e9aa1f8a3fd91eebde5f4e75ecc8510e", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el9.s390x", + sha256 = "d1ba973a8569fff460f72ae253a3c05d7a6592a9025bf998a5388eefeb7cf2b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libelf-0.194-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d1ba973a8569fff460f72ae253a3c05d7a6592a9025bf998a5388eefeb7cf2b5", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el9.x86_64", + sha256 = "c59294fcfe3a216267078a010f4cf7e0d191fd1a222f19bf3036ba1b0ce40e1f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.194-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c59294fcfe3a216267078a010f4cf7e0d191fd1a222f19bf3036ba1b0ce40e1f", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el10.aarch64", + sha256 = "ca36cc469aae95470c33e08087f5176615ebe42453e06695c8897da87c8e6185", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-libs-0.194-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ca36cc469aae95470c33e08087f5176615ebe42453e06695c8897da87c8e6185", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el10.s390x", + sha256 = "f421c5e17662e93a3f0ba2d4511a206c4ee08c7bf2f7ee40e59d8c803c7c6097", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-libs-0.194-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f421c5e17662e93a3f0ba2d4511a206c4ee08c7bf2f7ee40e59d8c803c7c6097", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el10.x86_64", + sha256 = "6a6cce578a25f607ab0c593d889c9c52487f6c9019d3f9b4c3ebc2edb5dbbc89", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-libs-0.194-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6a6cce578a25f607ab0c593d889c9c52487f6c9019d3f9b4c3ebc2edb5dbbc89", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el9.aarch64", + sha256 = "78b614ff56d76403679094de597ce56f27a776ab8ed40ef399a0d022976a35b2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libs-0.194-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/78b614ff56d76403679094de597ce56f27a776ab8ed40ef399a0d022976a35b2", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el9.s390x", + sha256 = "a7bcd615b80395cd0b88db9406cd063273945972033ebccff541e1fa2d95699b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libs-0.194-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a7bcd615b80395cd0b88db9406cd063273945972033ebccff541e1fa2d95699b", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el9.x86_64", + sha256 = "432d99395a7f57c13a61b3cd987205714a5f83eb95cec3c9e344e1abab5a196e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libs-0.194-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/432d99395a7f57c13a61b3cd987205714a5f83eb95cec3c9e344e1abab5a196e", + ], +) + +rpm( + name = "expat-0__2.5.0-4.el9.x86_64", + sha256 = "360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + ], +) + +rpm( + name = "expat-0__2.5.0-6.el9.aarch64", + sha256 = "01f1ff2194173775ebbc1d00934152585a259c9a852e987e672d1810384e4786", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/expat-2.5.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01f1ff2194173775ebbc1d00934152585a259c9a852e987e672d1810384e4786", + ], +) + +rpm( + name = "expat-0__2.5.0-6.el9.s390x", + sha256 = "6e85c05c7eacb3d964af391a67898919239b973d8094c442b917ea450391d25d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/expat-2.5.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6e85c05c7eacb3d964af391a67898919239b973d8094c442b917ea450391d25d", + ], +) + +rpm( + name = "expat-0__2.5.0-6.el9.x86_64", + sha256 = "39cffc5a3a75ccd06d4214f99e3d3a89dd79bee3532175ae38d37c14aad529fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/39cffc5a3a75ccd06d4214f99e3d3a89dd79bee3532175ae38d37c14aad529fc", + ], +) + +rpm( + name = "expat-0__2.7.3-1.el10.aarch64", + sha256 = "9d093b8a289a4fbac304097d8d628744fa0ea88f3a50a64c4ee1c657cb42a5c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/expat-2.7.3-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9d093b8a289a4fbac304097d8d628744fa0ea88f3a50a64c4ee1c657cb42a5c8", + ], +) + +rpm( + name = "expat-0__2.7.3-1.el10.s390x", + sha256 = "5fce4ab3c8a5e188f560bdbac6f780e36af2e71210f765153ee2c9328b8a2a5f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/expat-2.7.3-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5fce4ab3c8a5e188f560bdbac6f780e36af2e71210f765153ee2c9328b8a2a5f", + ], +) + +rpm( + name = "expat-0__2.7.3-1.el10.x86_64", + sha256 = "e00c0876574daba5e70a3e2c86e21823fae1269b7a123d08ff5493a59dde3f36", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/expat-2.7.3-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e00c0876574daba5e70a3e2c86e21823fae1269b7a123d08ff5493a59dde3f36", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.aarch64", + sha256 = "c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/filesystem-3.16-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.s390x", + sha256 = "67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/filesystem-3.16-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.x86_64", + sha256 = "da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/filesystem-3.16-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + ], +) + +rpm( + name = "filesystem-0__3.18-17.el10.aarch64", + sha256 = "6c4d8ecaf8b45c8d7d588c6ebe368a77805ed84830d0bc3b38e4c8e499514aba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/filesystem-3.18-17.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6c4d8ecaf8b45c8d7d588c6ebe368a77805ed84830d0bc3b38e4c8e499514aba", + ], +) + +rpm( + name = "filesystem-0__3.18-17.el10.s390x", + sha256 = "087e8def18ded2dd2a96f7a4292a3654704807d05f4424c43c0f5c873d7f9cb5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/filesystem-3.18-17.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/087e8def18ded2dd2a96f7a4292a3654704807d05f4424c43c0f5c873d7f9cb5", + ], +) + +rpm( + name = "filesystem-0__3.18-17.el10.x86_64", + sha256 = "bcfb13f67c813d645f47e0a56d4bb76c0863deaf64ba93be8e0c30eecdc1e45e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/filesystem-3.18-17.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bcfb13f67c813d645f47e0a56d4bb76c0863deaf64ba93be8e0c30eecdc1e45e", + ], +) + +rpm( + name = "findutils-1__4.10.0-5.el10.aarch64", + sha256 = "f0e4db5b6e713c75e097e80218c592de4e6cb85d353f0933f64714df11b178b2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/findutils-4.10.0-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f0e4db5b6e713c75e097e80218c592de4e6cb85d353f0933f64714df11b178b2", + ], +) + +rpm( + name = "findutils-1__4.10.0-5.el10.s390x", + sha256 = "da20bdfeb9053ac3a1689d2ee2281298ee119175a8d486e4bb3eed1bc2857a94", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/findutils-4.10.0-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/da20bdfeb9053ac3a1689d2ee2281298ee119175a8d486e4bb3eed1bc2857a94", + ], +) + +rpm( + name = "findutils-1__4.10.0-5.el10.x86_64", + sha256 = "c646c7c108a007d62792aa66e0bc9326312089a0f8bc1c9e9300b301fd2e4276", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/findutils-4.10.0-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c646c7c108a007d62792aa66e0bc9326312089a0f8bc1c9e9300b301fd2e4276", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.aarch64", + sha256 = "de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/findutils-4.8.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.s390x", + sha256 = "627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/findutils-4.8.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.x86_64", + sha256 = "393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/findutils-4.8.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-3.el10.x86_64", + sha256 = "d1314bd57fd4e4bb2030519cd79ab562f8ce64866d51827cd4e0f73c190a6c9c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/fips-provider-next-1.2.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d1314bd57fd4e4bb2030519cd79ab562f8ce64866d51827cd4e0f73c190a6c9c", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-7.el9.aarch64", + sha256 = "e8c9fcd61b0ade060233a0c9755b8ca59705838844bddebef0ab5cd48fbaab9e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/fips-provider-next-1.2.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e8c9fcd61b0ade060233a0c9755b8ca59705838844bddebef0ab5cd48fbaab9e", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-7.el9.s390x", + sha256 = "0f1f863a00b32b0517c785c0b68f839426cae4c087fde39c8c5d91ab3cdf2ee4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/fips-provider-next-1.2.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0f1f863a00b32b0517c785c0b68f839426cae4c087fde39c8c5d91ab3cdf2ee4", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-7.el9.x86_64", + sha256 = "1f78c1d7f88f2494994d8735676c2afd529606c8f59c2a7b830e993831b6ce2c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fips-provider-next-1.2.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f78c1d7f88f2494994d8735676c2afd529606c8f59c2a7b830e993831b6ce2c", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.s390x", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.x86_64", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.s390x", + sha256 = "4f5532023b6272eb79706c080fce40a5f083398820bfbbfaa7116243c6a93bc0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4f5532023b6272eb79706c080fce40a5f083398820bfbbfaa7116243c6a93bc0", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.x86_64", + sha256 = "8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + ], +) + +rpm( + name = "fuse-0__2.9.9-25.el10.s390x", + sha256 = "6d0dd7c5dc828fc93d96ff215d90324f8efd9e88a9512081f4cf6d6323387a2f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse-2.9.9-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d0dd7c5dc828fc93d96ff215d90324f8efd9e88a9512081f4cf6d6323387a2f", + ], +) + +rpm( + name = "fuse-0__2.9.9-25.el10.x86_64", + sha256 = "0707885f1d8074b5d36d85b4c60a68a10867894b379225302a94f3d54b6d4934", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse-2.9.9-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0707885f1d8074b5d36d85b4c60a68a10867894b379225302a94f3d54b6d4934", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.s390x", + sha256 = "18de6b2985152ae3b3f1e72d90591543362c09e71ccb749a3adb63099c37496e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-common-3.10.2-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18de6b2985152ae3b3f1e72d90591543362c09e71ccb749a3adb63099c37496e", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.x86_64", + sha256 = "ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-common-3.10.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + ], +) + +rpm( + name = "fuse-common-0__3.16.2-5.el10.s390x", + sha256 = "86983857ec56f535e57283f302d9f344a348b55a9dc5e6e81ef388b397a14e2a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse-common-3.16.2-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/86983857ec56f535e57283f302d9f344a348b55a9dc5e6e81ef388b397a14e2a", + ], +) + +rpm( + name = "fuse-common-0__3.16.2-5.el10.x86_64", + sha256 = "eecc51472bf7713a97821ae02898b6811752aa513aa40dc5d380459fce590a40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse-common-3.16.2-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eecc51472bf7713a97821ae02898b6811752aa513aa40dc5d380459fce590a40", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.aarch64", + sha256 = "5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/fuse-libs-2.9.9-17.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.s390x", + sha256 = "89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-libs-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.x86_64", + sha256 = "a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-libs-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-25.el10.s390x", + sha256 = "65b86c79a139100f7d61acbef829a0a345c70316988cd7eb0f573f0c57e98647", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse-libs-2.9.9-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/65b86c79a139100f7d61acbef829a0a345c70316988cd7eb0f573f0c57e98647", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-25.el10.x86_64", + sha256 = "a8b094d60b9a7f83a84d8c7b0cdeed565be044dc2ecd170965b2c55ee4fa40f7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse-libs-2.9.9-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a8b094d60b9a7f83a84d8c7b0cdeed565be044dc2ecd170965b2c55ee4fa40f7", + ], +) + +rpm( + name = "fuse3-libs-0__3.16.2-5.el10.aarch64", + sha256 = "919f632731bc755d7c9c81d6faebb3bb703d7460ed72fdd65c453541d3999a72", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/fuse3-libs-3.16.2-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/919f632731bc755d7c9c81d6faebb3bb703d7460ed72fdd65c453541d3999a72", + ], +) + +rpm( + name = "fuse3-libs-0__3.16.2-5.el10.s390x", + sha256 = "68501eaef0f538ca7e3731a4968f308ced9ae9c2a1b3b4d310890dd86b1843c5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse3-libs-3.16.2-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/68501eaef0f538ca7e3731a4968f308ced9ae9c2a1b3b4d310890dd86b1843c5", + ], +) + +rpm( + name = "fuse3-libs-0__3.16.2-5.el10.x86_64", + sha256 = "3482d8de135a306e94f7a35c1f8315b4e6acb699c1871ef28ddb02dc0fbdf7d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse3-libs-3.16.2-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3482d8de135a306e94f7a35c1f8315b4e6acb699c1871ef28ddb02dc0fbdf7d6", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.aarch64", + sha256 = "656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gawk-5.1.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.s390x", + sha256 = "acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gawk-5.1.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.x86_64", + sha256 = "6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gawk-5.1.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + ], +) + +rpm( + name = "gawk-0__5.3.0-6.el10.aarch64", + sha256 = "16d7b639936dd4c8c977cd5b2ee3f5a02d3235954f67aa7485765a6b146683de", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gawk-5.3.0-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/16d7b639936dd4c8c977cd5b2ee3f5a02d3235954f67aa7485765a6b146683de", + ], +) + +rpm( + name = "gawk-0__5.3.0-6.el10.s390x", + sha256 = "0c918acd6aed7bbe461611db414bed4c1871b9ee9e4e5369460e016eb0c6bcbb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gawk-5.3.0-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c918acd6aed7bbe461611db414bed4c1871b9ee9e4e5369460e016eb0c6bcbb", + ], +) + +rpm( + name = "gawk-0__5.3.0-6.el10.x86_64", + sha256 = "ba59a3a4ee8741ed4e0c2517086164a76dc85309947f8b5ca7884f05c08ed959", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gawk-5.3.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ba59a3a4ee8741ed4e0c2517086164a76dc85309947f8b5ca7884f05c08ed959", + ], +) + +rpm( + name = "gcc-0__11.5.0-14.el9.aarch64", + sha256 = "ab3bb73a4443fdef60969ae4d57cce670a88e4c73d8a758111bf713037eef286", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gcc-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ab3bb73a4443fdef60969ae4d57cce670a88e4c73d8a758111bf713037eef286", + ], +) + +rpm( + name = "gcc-0__11.5.0-14.el9.s390x", + sha256 = "0c816944b06c65f19d8ed958416554eee0f128f38bfda9f0951926917fafd8de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gcc-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c816944b06c65f19d8ed958416554eee0f128f38bfda9f0951926917fafd8de", + ], +) + +rpm( + name = "gcc-0__11.5.0-14.el9.x86_64", + sha256 = "c0d0eb5639d870197ccb4cee6fbbb8bfc8e0038983285a9660369dc9651f0089", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gcc-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c0d0eb5639d870197ccb4cee6fbbb8bfc8e0038983285a9660369dc9651f0089", + ], +) + +rpm( + name = "gcc-0__14.3.1-4.4.el10.aarch64", + sha256 = "fe754a0edcf74767003728f0f1b2ba99bcd070a07e3f68785886272abd40818d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/gcc-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "gcc-0__14.3.1-4.4.el10.s390x", + sha256 = "227501eb019e43934d83194f34ade61c6f0fee7ffbf6bc5e75aeb9035375965a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gcc-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "gcc-0__14.3.1-4.4.el10.x86_64", + sha256 = "e93acc10b23ee2b9ddef5e593307cdf68ebc72551be03057fa11f44095675803", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/gcc-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "gdbm-1__1.23-14.el10.aarch64", + sha256 = "0db16e24bf3d297cc3543842d63143f583de6ee157806b0a3dc51b5740a2722f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gdbm-1.23-14.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0db16e24bf3d297cc3543842d63143f583de6ee157806b0a3dc51b5740a2722f", + ], +) + +rpm( + name = "gdbm-1__1.23-14.el10.s390x", + sha256 = "95c556f933af240938736727df962465928b7a556a8586b01e90c647facc2839", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gdbm-1.23-14.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/95c556f933af240938736727df962465928b7a556a8586b01e90c647facc2839", + ], +) + +rpm( + name = "gdbm-1__1.23-14.el10.x86_64", + sha256 = "159a6f1affc65d960c11a8726472699f693cec90a54a0862ad8340d0968f4838", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gdbm-1.23-14.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/159a6f1affc65d960c11a8726472699f693cec90a54a0862ad8340d0968f4838", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.aarch64", + sha256 = "69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gdbm-libs-1.23-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.s390x", + sha256 = "29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gdbm-libs-1.23-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.x86_64", + sha256 = "cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gdbm-libs-1.23-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-14.el10.aarch64", + sha256 = "b46628d13eba77191aad6905de11fff87d6f45e52168e5b5365cb1f62078fd4d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gdbm-libs-1.23-14.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b46628d13eba77191aad6905de11fff87d6f45e52168e5b5365cb1f62078fd4d", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-14.el10.s390x", + sha256 = "38f1f8006c38c8fffa7f298bf3a143943f8611acaee7aad8200edc6bcde534aa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gdbm-libs-1.23-14.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/38f1f8006c38c8fffa7f298bf3a143943f8611acaee7aad8200edc6bcde534aa", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-14.el10.x86_64", + sha256 = "b5f678293062eb1fcba572501d62e215dccfd222c26f5b76d9424f3c188cedee", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gdbm-libs-1.23-14.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b5f678293062eb1fcba572501d62e215dccfd222c26f5b76d9424f3c188cedee", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.aarch64", + sha256 = "66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.s390x", + sha256 = "369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.x86_64", + sha256 = "1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + ], +) + +rpm( + name = "gettext-0__0.22.5-6.el10.aarch64", + sha256 = "27cba50dbb800aaf7f46bffa04003338c797472b334b08344b3633a60e0f1755", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/27cba50dbb800aaf7f46bffa04003338c797472b334b08344b3633a60e0f1755", + ], +) + +rpm( + name = "gettext-0__0.22.5-6.el10.s390x", + sha256 = "02ab0b35769a517e0a2c255c4e4f23cfb9f661179355f81687a2d5b5198289d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/02ab0b35769a517e0a2c255c4e4f23cfb9f661179355f81687a2d5b5198289d6", + ], +) + +rpm( + name = "gettext-0__0.22.5-6.el10.x86_64", + sha256 = "19430ae2b77a7e4637bfcb70501748a27011f6c1e144a195b7046ecd9e6a96b4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/19430ae2b77a7e4637bfcb70501748a27011f6c1e144a195b7046ecd9e6a96b4", + ], +) + +rpm( + name = "gettext-envsubst-0__0.22.5-6.el10.aarch64", + sha256 = "ae3a179fff748702f7ad12bc2d8e58910d724a1d42f4cafb22af8ddfaf2eb216", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-envsubst-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae3a179fff748702f7ad12bc2d8e58910d724a1d42f4cafb22af8ddfaf2eb216", + ], +) + +rpm( + name = "gettext-envsubst-0__0.22.5-6.el10.s390x", + sha256 = "a9f2345a5875671c4d3a14ae491ea02b535d52ecb6ff65813aba392660d96065", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-envsubst-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a9f2345a5875671c4d3a14ae491ea02b535d52ecb6ff65813aba392660d96065", + ], +) + +rpm( + name = "gettext-envsubst-0__0.22.5-6.el10.x86_64", + sha256 = "f7b90e29f350fd67a2425a9d06c404371f1bbcdc43727452bf27c6c855d9eccf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-envsubst-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f7b90e29f350fd67a2425a9d06c404371f1bbcdc43727452bf27c6c855d9eccf", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.aarch64", + sha256 = "f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-libs-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.s390x", + sha256 = "d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-libs-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.x86_64", + sha256 = "5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-libs-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + ], +) + +rpm( + name = "gettext-libs-0__0.22.5-6.el10.aarch64", + sha256 = "460e9216dbdd5a5a42bcd49162639e5515020a1caf9a246734ab7c19d5747b8e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-libs-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/460e9216dbdd5a5a42bcd49162639e5515020a1caf9a246734ab7c19d5747b8e", + ], +) + +rpm( + name = "gettext-libs-0__0.22.5-6.el10.s390x", + sha256 = "aebeafee7bc7b3513b5210039214447304f4734e8ba4e590cbf74cfe0fb04393", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-libs-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/aebeafee7bc7b3513b5210039214447304f4734e8ba4e590cbf74cfe0fb04393", + ], +) + +rpm( + name = "gettext-libs-0__0.22.5-6.el10.x86_64", + sha256 = "de538283e9cc0281d53e05c235905a9e5c64ad1ac2533afb915ba75052f540a3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-libs-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/de538283e9cc0281d53e05c235905a9e5c64ad1ac2533afb915ba75052f540a3", + ], +) + +rpm( + name = "gettext-runtime-0__0.22.5-6.el10.aarch64", + sha256 = "76d58cbcdddca202c4eecc30df7692d5f6e847f0ac233227349942b6f860a5da", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-runtime-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/76d58cbcdddca202c4eecc30df7692d5f6e847f0ac233227349942b6f860a5da", + ], +) + +rpm( + name = "gettext-runtime-0__0.22.5-6.el10.s390x", + sha256 = "59a0988b7180c5b0c78c02b40c60f902f60d363beb3acc379c5d1ffd8fa6dfeb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-runtime-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/59a0988b7180c5b0c78c02b40c60f902f60d363beb3acc379c5d1ffd8fa6dfeb", + ], +) + +rpm( + name = "gettext-runtime-0__0.22.5-6.el10.x86_64", + sha256 = "aec2ce3c3805190c65667c617e1ed100b65c251d16896819b0bc933ec3084ebf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-runtime-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aec2ce3c3805190c65667c617e1ed100b65c251d16896819b0bc933ec3084ebf", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.s390x", + sha256 = "f5d013624d04c2f1ec232a59e46342b4c52688c29c2a43304e52456a63408667", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib-networking-2.68.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5d013624d04c2f1ec232a59e46342b4c52688c29c2a43304e52456a63408667", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.x86_64", + sha256 = "ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib-networking-2.68.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.x86_64", + sha256 = "793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib2-2.68.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + ], +) + +rpm( + name = "glib2-0__2.68.4-19.el9.aarch64", + sha256 = "5fc2f7510779708b553a13fc5f0de31fcfe384ce318295a8b9d3cc496b99905c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glib2-2.68.4-19.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5fc2f7510779708b553a13fc5f0de31fcfe384ce318295a8b9d3cc496b99905c", + ], +) + +rpm( + name = "glib2-0__2.68.4-19.el9.s390x", + sha256 = "eae096d247448db793b42cada5accb2176444752b1fe17560c8fc9135626de05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib2-2.68.4-19.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/eae096d247448db793b42cada5accb2176444752b1fe17560c8fc9135626de05", + ], +) + +rpm( + name = "glib2-0__2.68.4-19.el9.x86_64", + sha256 = "3128523dc47f5fdea4633b0166544de8fbda27b03165265ec0b6d360a056b169", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib2-2.68.4-19.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3128523dc47f5fdea4633b0166544de8fbda27b03165265ec0b6d360a056b169", + ], +) + +rpm( + name = "glib2-0__2.80.4-12.el10.aarch64", + sha256 = "6847ee0a0c10eecd66127502bcec4f9cab481827fb4ef206feea13a70ebdf132", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glib2-2.80.4-12.el10.aarch64.rpm", + ], +) + +rpm( + name = "glib2-0__2.80.4-12.el10.s390x", + sha256 = "da6a273e029cf3b589ea071a4a73cdf24fd25fa48d4877e6fcbe448a1f930b46", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glib2-2.80.4-12.el10.s390x.rpm", + ], +) + +rpm( + name = "glib2-0__2.80.4-12.el10.x86_64", + sha256 = "a0f85a2eb4072da3f617a915f32775f3084f11076a5f0cca73c9827eafb7259f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glib2-2.80.4-12.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-0__2.34-168.el9.x86_64", + sha256 = "e06212b1cac1d9fd9857a00ddefefe9fb9f406199cb84fdd1153589c15e16289", + urls = ["https://storage.googleapis.com/builddeps/e06212b1cac1d9fd9857a00ddefefe9fb9f406199cb84fdd1153589c15e16289"], +) + +rpm( + name = "glibc-0__2.34-256.el9.aarch64", + sha256 = "0f1f638935d5e83129505d0a4272caec7fbe0824c296f70f23821649dd6cb403", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0f1f638935d5e83129505d0a4272caec7fbe0824c296f70f23821649dd6cb403", + ], +) + +rpm( + name = "glibc-0__2.34-256.el9.s390x", + sha256 = "9e0b35e40f3a7ca86dd0598dbe4007cf60f61833cca386cd039ff531db1734ab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9e0b35e40f3a7ca86dd0598dbe4007cf60f61833cca386cd039ff531db1734ab", + ], +) + +rpm( + name = "glibc-0__2.34-256.el9.x86_64", + sha256 = "faf54d1c3b0b1a14b97d019738221438b695823f35fdaa402996fabffddb9258", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/faf54d1c3b0b1a14b97d019738221438b695823f35fdaa402996fabffddb9258", + ], +) + +rpm( + name = "glibc-0__2.39-114.el10.aarch64", + sha256 = "557936b920a631712b048faf3344402318b9c90f54aad15e310d1bbbe83edb51", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-0__2.39-114.el10.s390x", + sha256 = "74d5e5a846d03aad14189f8e5bd80c822d02c39669b72c19697cf58c351dcfca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-0__2.39-114.el10.x86_64", + sha256 = "a7fe9a665fd25f878cbb677b6008a8014e3421a2ec6f49c43a9be6ab0526a69a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-common-0__2.34-168.el9.x86_64", + sha256 = "531650744909efd0284bf6c16a45dbaf455b214c0cac4197cf6d43e8c7d83af8", + urls = ["https://storage.googleapis.com/builddeps/531650744909efd0284bf6c16a45dbaf455b214c0cac4197cf6d43e8c7d83af8"], +) + +rpm( + name = "glibc-common-0__2.34-256.el9.aarch64", + sha256 = "007a480554685ca65e9e1e2f5235122368583ae7f7eb21c24a6021b2bd8fd37b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-common-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/007a480554685ca65e9e1e2f5235122368583ae7f7eb21c24a6021b2bd8fd37b", + ], +) + +rpm( + name = "glibc-common-0__2.34-256.el9.s390x", + sha256 = "ecdc7f4677e6f4b0d8474f97e7b26e3341bcb6c21a8295c9e4e1c6169ff8c41a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-common-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ecdc7f4677e6f4b0d8474f97e7b26e3341bcb6c21a8295c9e4e1c6169ff8c41a", + ], +) + +rpm( + name = "glibc-common-0__2.34-256.el9.x86_64", + sha256 = "702ad993520a48e430689147878b207ac8d3ab9e9bc0c4588cc522928510b5be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-common-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/702ad993520a48e430689147878b207ac8d3ab9e9bc0c4588cc522928510b5be", + ], +) + +rpm( + name = "glibc-common-0__2.39-114.el10.aarch64", + sha256 = "10afbad1cfcd4ecb81b9ce318b26a019fda848bf35b346b89ae1f25bf930863e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-common-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-common-0__2.39-114.el10.s390x", + sha256 = "cff86d74c2b95b100da2084c1eb20b16f37af19846df0157b284f7d47cdc4e93", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-common-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-common-0__2.39-114.el10.x86_64", + sha256 = "579ddb85fcb50d27e7ea0f496372d1428e9defe98a96dce85c8ddd7717dbc31b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-common-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-devel-0__2.34-256.el9.aarch64", + sha256 = "3b33e1208fff4e68cf6f2e5305f75aed494fc0874ab57b80ffc24ec283e294a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/glibc-devel-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b33e1208fff4e68cf6f2e5305f75aed494fc0874ab57b80ffc24ec283e294a4", + ], +) + +rpm( + name = "glibc-devel-0__2.34-256.el9.s390x", + sha256 = "3af88161f384dd774aed59345e1a43a746adf1de0399867bbc314fc3a770ee70", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-devel-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3af88161f384dd774aed59345e1a43a746adf1de0399867bbc314fc3a770ee70", + ], +) + +rpm( + name = "glibc-devel-0__2.34-256.el9.x86_64", + sha256 = "5e8bee34e61a8322e6d9e79afd3eede04095d8e672b2fd5a3ebd6ea4a9c23620", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-devel-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5e8bee34e61a8322e6d9e79afd3eede04095d8e672b2fd5a3ebd6ea4a9c23620", + ], +) + +rpm( + name = "glibc-devel-0__2.39-114.el10.aarch64", + sha256 = "2918c6a9222413215b4440a7f1b006f0ad4e2c12cd4ab2b6a0becb3d4ca09ec9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/glibc-devel-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-devel-0__2.39-114.el10.s390x", + sha256 = "b3de42fdb58f49caa7f42f932d5daa91fcc603329609313534bc32c2ba19cd09", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/glibc-devel-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-devel-0__2.39-114.el10.x86_64", + sha256 = "c632f2f80421b746a69851a9a95fb8e51301cf931ad084aba65ca139b6d63721", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/glibc-devel-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-headers-0__2.34-256.el9.s390x", + sha256 = "2088b2430ca5482a79f8706b6422eea7b625f11898e673f83750941b13f22ee7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-headers-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2088b2430ca5482a79f8706b6422eea7b625f11898e673f83750941b13f22ee7", + ], +) + +rpm( + name = "glibc-headers-0__2.34-256.el9.x86_64", + sha256 = "08a447365679b957999efc5d0aabc7f683b7fc72461bfa4046189fda7e906889", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-headers-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/08a447365679b957999efc5d0aabc7f683b7fc72461bfa4046189fda7e906889", + ], +) + +rpm( + name = "glibc-langpack-en-0__2.34-256.el9.aarch64", + sha256 = "61a01121bb7608375077fc661e031916876c69ed665b19968c1038773c6bab8d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-langpack-en-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/61a01121bb7608375077fc661e031916876c69ed665b19968c1038773c6bab8d", + ], +) + +rpm( + name = "glibc-langpack-es-0__2.39-114.el10.aarch64", + sha256 = "a565534b17a0e8f446b611fc6304be058c358bc941b41108944542068f1c4c6f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-langpack-es-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-langpack-et-0__2.34-256.el9.s390x", + sha256 = "2dd542ed563f5aa9e920db1b32719c1895adfdaeb85ac2b9ae1e6a887ca04a05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-langpack-et-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2dd542ed563f5aa9e920db1b32719c1895adfdaeb85ac2b9ae1e6a887ca04a05", + ], +) + +rpm( + name = "glibc-langpack-eu-0__2.34-256.el9.x86_64", + sha256 = "1f9eeaefdd95d6974694fa9c28baf3cd29fc215b298fff3b92a1d7795f139568", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-langpack-eu-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f9eeaefdd95d6974694fa9c28baf3cd29fc215b298fff3b92a1d7795f139568", + ], +) + +rpm( + name = "glibc-langpack-fa-0__2.39-114.el10.x86_64", + sha256 = "0a2a7a3668677ac47648e1b229ad186d3c214939ac5a441d24a451478449e46d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-langpack-fa-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-langpack-ga-0__2.39-114.el10.s390x", + sha256 = "7dac921346c64ffc84662f35936fa8c87aae47c9f5f46dd135b0ef1bc5ce7a87", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-langpack-ga-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-168.el9.x86_64", + sha256 = "991b6d7370b237a3d576536a517d01a1ccc997959f4ea30ba07bd779641f79e8", + urls = ["https://storage.googleapis.com/builddeps/991b6d7370b237a3d576536a517d01a1ccc997959f4ea30ba07bd779641f79e8"], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-256.el9.aarch64", + sha256 = "6223607052336e57a06364f93047c67160e1f0bd6ba989b1a1ceb87824b58755", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-minimal-langpack-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6223607052336e57a06364f93047c67160e1f0bd6ba989b1a1ceb87824b58755", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-256.el9.s390x", + sha256 = "795d38261507a67e8c23446b899a3b0e056ee2fd785f6d16f669b7e666387e7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-minimal-langpack-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/795d38261507a67e8c23446b899a3b0e056ee2fd785f6d16f669b7e666387e7e", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-256.el9.x86_64", + sha256 = "840384c2b63ead3045c2ee3fb9893686bd07704cd31ff2bb64f0255611006fbf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-minimal-langpack-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/840384c2b63ead3045c2ee3fb9893686bd07704cd31ff2bb64f0255611006fbf", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.39-114.el10.aarch64", + sha256 = "c701b9a0e218d373ecd4951465ed45c0f30c5bcce1697d8944d69cd8eb8cb1dd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-minimal-langpack-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.39-114.el10.s390x", + sha256 = "619cf1f1feb3c79f561ed3d2954c93e65085ccc308c0449aaae1dbd1c5f07b1a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-minimal-langpack-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.39-114.el10.x86_64", + sha256 = "17a35df7844ce8322dfbd877f47940d6d33c21885006c5f9e8a20530718ce304", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-minimal-langpack-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-static-0__2.34-256.el9.aarch64", + sha256 = "19a6dc41af6303dafe99bd6d7c2e0d8678101ba4bae66e19f827eb67899b1244", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/glibc-static-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19a6dc41af6303dafe99bd6d7c2e0d8678101ba4bae66e19f827eb67899b1244", + ], +) + +rpm( + name = "glibc-static-0__2.34-256.el9.s390x", + sha256 = "5cae49aefbc89f0d27e99a9622a25e6c0b8a5178e2af49361e72330ea6b3fc72", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/glibc-static-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5cae49aefbc89f0d27e99a9622a25e6c0b8a5178e2af49361e72330ea6b3fc72", + ], +) + +rpm( + name = "glibc-static-0__2.34-256.el9.x86_64", + sha256 = "5a3cc7edbe18a1df6e7258de7279a20378f40af5cf276b5e1b7a7a5849c25463", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/glibc-static-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a3cc7edbe18a1df6e7258de7279a20378f40af5cf276b5e1b7a7a5849c25463", + ], +) + +rpm( + name = "glibc-static-0__2.39-114.el10.aarch64", + sha256 = "8187c65502242ffc476ea852cc3e63245fea69d4d3191c67f0502578a747f0e7", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/glibc-static-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-static-0__2.39-114.el10.s390x", + sha256 = "29bc94d97264749a2442d9304080043e07f1277cb31aef8108c8c18420e6233f", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/glibc-static-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-static-0__2.39-114.el10.x86_64", + sha256 = "49f80124ad4d72fcc6506ecf98123669d75dc6570010a9b20d5600cd7a8d584c", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/glibc-static-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.aarch64", + sha256 = "01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gmp-6.2.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.s390x", + sha256 = "c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gmp-6.2.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.x86_64", + sha256 = "b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gmp-6.2.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + ], +) + +rpm( + name = "gmp-1__6.2.1-12.el10.aarch64", + sha256 = "9bbe58df2a29320daf9b4c36305fcc7f781ab0bdd486736c6d8c685838141a41", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gmp-6.2.1-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9bbe58df2a29320daf9b4c36305fcc7f781ab0bdd486736c6d8c685838141a41", + ], +) + +rpm( + name = "gmp-1__6.2.1-12.el10.s390x", + sha256 = "54d437788539933aa6de0963c6b1303e50b07f17db9ea847a71e19d1b4ef6a66", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gmp-6.2.1-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/54d437788539933aa6de0963c6b1303e50b07f17db9ea847a71e19d1b4ef6a66", + ], +) + +rpm( + name = "gmp-1__6.2.1-12.el10.x86_64", + sha256 = "6678824b5d45f9b66e8bfeb8f32736e0d710e3b38531a85548f55702d96b63a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gmp-6.2.1-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6678824b5d45f9b66e8bfeb8f32736e0d710e3b38531a85548f55702d96b63a8", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-4.el9.x86_64", + sha256 = "03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnupg2-2.3.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-5.el9.s390x", + sha256 = "9cbb342b46df96e85e55919bee459b2fd5023642494eeb2466344b765c1802d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnupg2-2.3.3-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9cbb342b46df96e85e55919bee459b2fd5023642494eeb2466344b765c1802d3", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-5.el9.x86_64", + sha256 = "5628444d9a62a7b6b46951c5187ccf43cb4d9254a45ae225808c6ef7d28c027f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnupg2-2.3.3-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5628444d9a62a7b6b46951c5187ccf43cb4d9254a45ae225808c6ef7d28c027f", + ], +) + +rpm( + name = "gnupg2-0__2.4.5-4.el10.s390x", + sha256 = "2b576fbf4dafb91c6ed3ccb439f6ff4fa4057efd10d07949cf51fa2ef1f076f0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gnupg2-2.4.5-4.el10.s390x.rpm", + ], +) + +rpm( + name = "gnupg2-0__2.4.5-4.el10.x86_64", + sha256 = "0531cbe23b63a37972751c9fefb904041d304df93f21b97ad18271659b0a5643", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gnupg2-2.4.5-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el10.aarch64", + sha256 = "8d8d8ade46ec8214a50f4e3c1c749f0d04d2df012738f87cf5b031a286558710", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gnutls-3.8.10-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el10.s390x", + sha256 = "e7012d2c1c0df897340a99e80a19c7d52553b70a9be99fb132521a81c5798478", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gnutls-3.8.10-3.el10.s390x.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el10.x86_64", + sha256 = "6c16093eae7a14611b7c1c7049ec6c107440f1a950369779876aae5c848c7780", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.10-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el9.aarch64", + sha256 = "4b9e4757f999a9995f53e49577b9b3f3a5e0d683a227015c357e6d5603a87982", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gnutls-3.8.10-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4b9e4757f999a9995f53e49577b9b3f3a5e0d683a227015c357e6d5603a87982", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el9.s390x", + sha256 = "3d2808eadf410398ae827793fcc526af2bcc1e24a2551d33e61e1293786f1fb6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnutls-3.8.10-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d2808eadf410398ae827793fcc526af2bcc1e24a2551d33e61e1293786f1fb6", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el9.x86_64", + sha256 = "95b8f11db2d075d96817bad2ca9b131b78ad2836edc5a75f99f967c30249b1e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.10-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/95b8f11db2d075d96817bad2ca9b131b78ad2836edc5a75f99f967c30249b1e7", + ], +) + +rpm( + name = "gnutls-0__3.8.3-6.el9.x86_64", + sha256 = "97364bd099856650cdbcc18448e85a3cc6a3cebc9513190a1b4d7016132920d9", + urls = ["https://storage.googleapis.com/builddeps/97364bd099856650cdbcc18448e85a3cc6a3cebc9513190a1b4d7016132920d9"], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el10.aarch64", + sha256 = "6bfb9f3bb96a0fe3f4ae2c906f1c6769042df05c5eeffdae9e1389187d57f2d4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/gnutls-dane-3.8.10-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el10.s390x", + sha256 = "f26b50d4cca9316840d4944488e59bc53838e60d8a0fd8a50f309a208311bf24", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gnutls-dane-3.8.10-3.el10.s390x.rpm", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el10.x86_64", + sha256 = "aba49c14e53a10912aff385b1e8728d635a97fa691cd6b6bb53c7452deb2f5ba", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/gnutls-dane-3.8.10-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el9.aarch64", + sha256 = "a41c588fc3f4d6c3686f872f493ba32b61a46cfd0cb8f0c7458d9f62e7b7c22a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-dane-3.8.10-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a41c588fc3f4d6c3686f872f493ba32b61a46cfd0cb8f0c7458d9f62e7b7c22a", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el9.s390x", + sha256 = "8e8793bc2a500256747f4745bed2d7b494854153d52e064a51aeb252c214dd26", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-dane-3.8.10-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8e8793bc2a500256747f4745bed2d7b494854153d52e064a51aeb252c214dd26", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el9.x86_64", + sha256 = "9d8148e86c8013335fe8747bc113eda9ba6ad59921c057ab9715f6f9beb17288", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-dane-3.8.10-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9d8148e86c8013335fe8747bc113eda9ba6ad59921c057ab9715f6f9beb17288", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el10.aarch64", + sha256 = "02a5817d97614fda36e20c500ac1a87c3c3b25b3656236a205d0dac3504f5a0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/gnutls-utils-3.8.10-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el10.s390x", + sha256 = "8895aaf8347ebb6391468a1b4c1a41c3f2417332392f8ece56316b37f4062825", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gnutls-utils-3.8.10-3.el10.s390x.rpm", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el10.x86_64", + sha256 = "a8b0ec6837074d8f9fccf01ee563220b90a9404e7f9245e68a9589f26e1c3500", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/gnutls-utils-3.8.10-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el9.aarch64", + sha256 = "d88cfcc208c54f0fb9182785356382295d188d680e190340a2c187aa15e49faa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-utils-3.8.10-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d88cfcc208c54f0fb9182785356382295d188d680e190340a2c187aa15e49faa", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el9.s390x", + sha256 = "8938b2f992f04bd4a120d1052db7865c58dc42f88e35e917f3628ee00d5e091d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-utils-3.8.10-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8938b2f992f04bd4a120d1052db7865c58dc42f88e35e917f3628ee00d5e091d", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el9.x86_64", + sha256 = "e9e4aff0e53b81327f6bfd5c0a07de4be8900fd8e466c301c2b74c5af74fb508", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-utils-3.8.10-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e9e4aff0e53b81327f6bfd5c0a07de4be8900fd8e466c301c2b74c5af74fb508", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.aarch64", + sha256 = "bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gobject-introspection-1.68.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.s390x", + sha256 = "27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gobject-introspection-1.68.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.x86_64", + sha256 = "d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gobject-introspection-1.68.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + ], +) + +rpm( + name = "gobject-introspection-0__1.79.1-6.el10.aarch64", + sha256 = "a3bd85b169c321602bafe23ca724dfa2b897379a89384dfd453cbb3a03d25e66", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gobject-introspection-1.79.1-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a3bd85b169c321602bafe23ca724dfa2b897379a89384dfd453cbb3a03d25e66", + ], +) + +rpm( + name = "gobject-introspection-0__1.79.1-6.el10.s390x", + sha256 = "440ef891180126b7d295bca67df47a23bdf05dff3a43d535826b8aa82ad26bb3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gobject-introspection-1.79.1-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/440ef891180126b7d295bca67df47a23bdf05dff3a43d535826b8aa82ad26bb3", + ], +) + +rpm( + name = "gobject-introspection-0__1.79.1-6.el10.x86_64", + sha256 = "80913f97462db46c9962d539f325cef09bf85ab4c415a2c47b445fe96bba84b6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gobject-introspection-1.79.1-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/80913f97462db46c9962d539f325cef09bf85ab4c415a2c47b445fe96bba84b6", + ], +) + +rpm( + name = "grep-0__3.11-10.el10.aarch64", + sha256 = "d797740f7c738e5e7729949bde3d82274c5c6422242a82c1058fbe71ea0c37e9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/grep-3.11-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d797740f7c738e5e7729949bde3d82274c5c6422242a82c1058fbe71ea0c37e9", + ], +) + +rpm( + name = "grep-0__3.11-10.el10.s390x", + sha256 = "d30a1ab1991131978b67f26d6c119f97bb5408a4bebac0294f2ac5417fe12276", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/grep-3.11-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d30a1ab1991131978b67f26d6c119f97bb5408a4bebac0294f2ac5417fe12276", + ], +) + +rpm( + name = "grep-0__3.11-10.el10.x86_64", + sha256 = "a0eb701c640cd0a0c9195493a8fc9206fff62174d958ba4af2d92527191f803f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/grep-3.11-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0eb701c640cd0a0c9195493a8fc9206fff62174d958ba4af2d92527191f803f", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.aarch64", + sha256 = "33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/grep-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.s390x", + sha256 = "b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/grep-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.x86_64", + sha256 = "10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/grep-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-6.el9.x86_64", + sha256 = "9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-8.el9.s390x", + sha256 = "2de739236b8adb578b1dff03269c977b8ba9ad1ae6581793acf4614a70705638", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gsettings-desktop-schemas-40.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2de739236b8adb578b1dff03269c977b8ba9ad1ae6581793acf4614a70705638", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-8.el9.x86_64", + sha256 = "06b0fd5bd1b106371aa42cd47d8784f248c7df3962165cab4a58ff67d35512be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/06b0fd5bd1b106371aa42cd47d8784f248c7df3962165cab4a58ff67d35512be", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-2.el9.x86_64", + sha256 = "2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-5.el9.s390x", + sha256 = "09f07a0309459e9aeaa0d4004496a4bbbd10dc1ebf2ea0b97187a8a27020c08e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/guestfs-tools-1.52.2-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09f07a0309459e9aeaa0d4004496a4bbbd10dc1ebf2ea0b97187a8a27020c08e", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-5.el9.x86_64", + sha256 = "0d4ff23abb20c16245b8452201cd693aa864ba609f4fea36ba23612011c2a9bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0d4ff23abb20c16245b8452201cd693aa864ba609f4fea36ba23612011c2a9bf", + ], +) + +rpm( + name = "guestfs-tools-0__1.54.0-7.el10.s390x", + sha256 = "a8afff6d24bfb91072d2a0c98ad7d574ac5840da0f5a97e92b717862f8f28492", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/guestfs-tools-1.54.0-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a8afff6d24bfb91072d2a0c98ad7d574ac5840da0f5a97e92b717862f8f28492", + ], +) + +rpm( + name = "guestfs-tools-0__1.54.0-7.el10.x86_64", + sha256 = "8e050750f08fbb8a0fd2b0600e8d3acd966e74155bccafe0cd6eb0aaf9d087a3", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.54.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e050750f08fbb8a0fd2b0600e8d3acd966e74155bccafe0cd6eb0aaf9d087a3", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.aarch64", + sha256 = "5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gzip-1.12-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.s390x", + sha256 = "72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gzip-1.12-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.x86_64", + sha256 = "e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gzip-1.12-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + ], +) + +rpm( + name = "gzip-0__1.13-3.el10.aarch64", + sha256 = "9b276d61a13e3c996f059a095881630fab9ec5a4a56a07ddc711e4db0a3362d4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gzip-1.13-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9b276d61a13e3c996f059a095881630fab9ec5a4a56a07ddc711e4db0a3362d4", + ], +) + +rpm( + name = "gzip-0__1.13-3.el10.s390x", + sha256 = "d76be88d032b4f7525f5414d11081fb930fe338f108830b01b24f8501de3c2d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gzip-1.13-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d76be88d032b4f7525f5414d11081fb930fe338f108830b01b24f8501de3c2d5", + ], +) + +rpm( + name = "gzip-0__1.13-3.el10.x86_64", + sha256 = "b7117230deceaba8bcd1341f0528df5855e54997cea04379fd3cc2c7c1e07ba8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gzip-1.13-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b7117230deceaba8bcd1341f0528df5855e54997cea04379fd3cc2c7c1e07ba8", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.s390x", + sha256 = "d6a58dc3d17cad456ea20945a93ccca5bae70620a1d16ac059c9c8554337b33a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/hexedit-1.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6a58dc3d17cad456ea20945a93ccca5bae70620a1d16ac059c9c8554337b33a", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.x86_64", + sha256 = "8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hexedit-1.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + ], +) + +rpm( + name = "hexedit-0__1.6-8.el10.s390x", + sha256 = "3b3fa64ec84f359ff667cf1c9f0c66e5300d08284d6a944e295fefbd3fd1e720", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/hexedit-1.6-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3b3fa64ec84f359ff667cf1c9f0c66e5300d08284d6a944e295fefbd3fd1e720", + ], +) + +rpm( + name = "hexedit-0__1.6-8.el10.x86_64", + sha256 = "b4e61671ac71d0dc721f67b6a7d5ff28e3ec9c8e1b8251104bcd34d6f0611ce3", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/hexedit-1.6-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b4e61671ac71d0dc721f67b6a7d5ff28e3ec9c8e1b8251104bcd34d6f0611ce3", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.s390x", + sha256 = "1976d559fb2ad7ae330a7265d2ff03d59ca1726637db13a54bceba2be08d9920", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/hivex-libs-1.3.24-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1976d559fb2ad7ae330a7265d2ff03d59ca1726637db13a54bceba2be08d9920", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.x86_64", + sha256 = "f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hivex-libs-1.3.24-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-2.el10.s390x", + sha256 = "967989dfab46ed23e33b59c956d27ad881051582f1c59995824b93249c5ff004", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/hivex-libs-1.3.24-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/967989dfab46ed23e33b59c956d27ad881051582f1c59995824b93249c5ff004", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-2.el10.x86_64", + sha256 = "ecf17b83680af8d8a3cef0a632ec3a7163d01c3dddd2364c9b47a4ba79e23150", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/hivex-libs-1.3.24-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ecf17b83680af8d8a3cef0a632ec3a7163d01c3dddd2364c9b47a4ba79e23150", + ], +) + +rpm( + name = "hwdata-0__0.348-9.18.el9.x86_64", + sha256 = "b25f5743e2f54a34d41bb6b37602b301260629ef91713f0b894c8ed9dd37c137", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.18.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/b25f5743e2f54a34d41bb6b37602b301260629ef91713f0b894c8ed9dd37c137", + ], +) + +rpm( + name = "hwdata-0__0.348-9.22.el9.s390x", + sha256 = "c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/hwdata-0.348-9.22.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + ], +) + +rpm( + name = "hwdata-0__0.348-9.22.el9.x86_64", + sha256 = "c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.22.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + ], +) + +rpm( + name = "hwdata-0__0.379-10.8.el10.s390x", + sha256 = "b1503fb4af22475819cd6df6b86681266230cbe55def3c11dcee8f68e97050c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/hwdata-0.379-10.8.el10.noarch.rpm", + ], +) + +rpm( + name = "hwdata-0__0.379-10.8.el10.x86_64", + sha256 = "b1503fb4af22475819cd6df6b86681266230cbe55def3c11dcee8f68e97050c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/hwdata-0.379-10.8.el10.noarch.rpm", + ], +) + +rpm( + name = "iproute-0__6.11.0-1.el9.x86_64", + sha256 = "3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + ], +) + +rpm( + name = "iproute-0__6.17.0-1.el10.aarch64", + sha256 = "44ddded795dfa336e7c553ee68f70d2ccfbe5f954849cfba4975d1a914565398", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iproute-6.17.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/44ddded795dfa336e7c553ee68f70d2ccfbe5f954849cfba4975d1a914565398", + ], +) + +rpm( + name = "iproute-0__6.17.0-1.el10.s390x", + sha256 = "902537a96edca3984a114f83b7a927b83316104ae3ba34c9606b4a964dea7aba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iproute-6.17.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/902537a96edca3984a114f83b7a927b83316104ae3ba34c9606b4a964dea7aba", + ], +) + +rpm( + name = "iproute-0__6.17.0-1.el10.x86_64", + sha256 = "6ebcdb339cc28036f2dc26b8be2f38d628b7206c715c484dca6031631c304e88", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iproute-6.17.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6ebcdb339cc28036f2dc26b8be2f38d628b7206c715c484dca6031631c304e88", + ], +) + +rpm( + name = "iproute-0__6.17.0-2.el9.aarch64", + sha256 = "d388c9ac3e1ab6fdc97227710f35243bf63de4a4aa818222aa8f3fe241e8a9ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-6.17.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d388c9ac3e1ab6fdc97227710f35243bf63de4a4aa818222aa8f3fe241e8a9ae", + ], +) + +rpm( + name = "iproute-0__6.17.0-2.el9.s390x", + sha256 = "e838d01d8318ab25f322225b6cdb7dd906c5f1d35b95fa3c89cb8e8ae1450791", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-6.17.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e838d01d8318ab25f322225b6cdb7dd906c5f1d35b95fa3c89cb8e8ae1450791", + ], +) + +rpm( + name = "iproute-0__6.17.0-2.el9.x86_64", + sha256 = "95f9c5dc7e6bc06ce26c1f905bb1c9114aee2df223a20d0806396664bee2cc67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.17.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/95f9c5dc7e6bc06ce26c1f905bb1c9114aee2df223a20d0806396664bee2cc67", + ], +) + +rpm( + name = "iproute-tc-0__6.11.0-1.el9.x86_64", + sha256 = "0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-1.el10.aarch64", + sha256 = "46b8ce7f1acdae7878bf667f40c63c3497576749ced449f51ba5b951ca9c39c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iproute-tc-6.17.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/46b8ce7f1acdae7878bf667f40c63c3497576749ced449f51ba5b951ca9c39c8", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-1.el10.s390x", + sha256 = "50a10556d2351456e5e4cb6b5a17b608f731352c06046e4e5ce2bd7a6a387490", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iproute-tc-6.17.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/50a10556d2351456e5e4cb6b5a17b608f731352c06046e4e5ce2bd7a6a387490", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-1.el10.x86_64", + sha256 = "1956f5939d423ba743e5d30ca9310ed7e38c5b6cd671c966d0ed093edfa29ba9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.17.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1956f5939d423ba743e5d30ca9310ed7e38c5b6cd671c966d0ed093edfa29ba9", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-2.el9.aarch64", + sha256 = "906641c6eb987b2d1ae0e66ee81d50c88b1268894daa83884126a5005389f418", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-tc-6.17.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/906641c6eb987b2d1ae0e66ee81d50c88b1268894daa83884126a5005389f418", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-2.el9.s390x", + sha256 = "9ee321e9f865810eb4098788af2231918716c1a7c2b8b34b103b5cc636b1f3d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-tc-6.17.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9ee321e9f865810eb4098788af2231918716c1a7c2b8b34b103b5cc636b1f3d7", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-2.el9.x86_64", + sha256 = "8813251157fade8cfb191f476d568a8d8a86dcdd1537eeb5d6dfb636c630afcc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.17.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8813251157fade8cfb191f476d568a8d8a86dcdd1537eeb5d6dfb636c630afcc", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.aarch64", + sha256 = "097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iptables-libs-1.8.10-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.s390x", + sha256 = "469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iptables-libs-1.8.10-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.x86_64", + sha256 = "7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iptables-libs-1.8.10-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + ], +) + +rpm( + name = "iptables-libs-0__1.8.11-12.el10.aarch64", + sha256 = "4bf894764ed0f9e7e92228587b8ec02962197b6ff87db3c0562081daf54efb40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iptables-libs-1.8.11-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4bf894764ed0f9e7e92228587b8ec02962197b6ff87db3c0562081daf54efb40", + ], +) + +rpm( + name = "iptables-libs-0__1.8.11-12.el10.s390x", + sha256 = "c94759e8d3245cfbe43eb96964ee9a4031585e6874535d564a00596cd56a4d76", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iptables-libs-1.8.11-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/c94759e8d3245cfbe43eb96964ee9a4031585e6874535d564a00596cd56a4d76", + ], +) + +rpm( + name = "iptables-libs-0__1.8.11-12.el10.x86_64", + sha256 = "450dfc1d463564d4955c3a244cf190bd4544cf56288b9703e2d39af238494f6c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iptables-libs-1.8.11-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/450dfc1d463564d4955c3a244cf190bd4544cf56288b9703e2d39af238494f6c", + ], +) + +rpm( + name = "iputils-0__20210202-15.el9.aarch64", + sha256 = "834bb57dc3ce91c41050e1fab4d2808a10a2b410b7c4a07cce3199c57181fe4d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iputils-20210202-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/834bb57dc3ce91c41050e1fab4d2808a10a2b410b7c4a07cce3199c57181fe4d", + ], +) + +rpm( + name = "iputils-0__20210202-15.el9.s390x", + sha256 = "ed9f65c5d621415497674b76c248d79da0128d8fb1ee1838060129889f947360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iputils-20210202-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ed9f65c5d621415497674b76c248d79da0128d8fb1ee1838060129889f947360", + ], +) + +rpm( + name = "iputils-0__20210202-15.el9.x86_64", + sha256 = "225a2b191c1d5f9070dacb71ba3aed71f7247f0912a9ba18c6c08379587e4c37", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iputils-20210202-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/225a2b191c1d5f9070dacb71ba3aed71f7247f0912a9ba18c6c08379587e4c37", + ], +) + +rpm( + name = "iputils-0__20240905-5.el10.aarch64", + sha256 = "3ed67cca3fbb5f60f14f85ea712b1822f2a80c58287e744795ef995ebebc3761", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iputils-20240905-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3ed67cca3fbb5f60f14f85ea712b1822f2a80c58287e744795ef995ebebc3761", + ], +) + +rpm( + name = "iputils-0__20240905-5.el10.s390x", + sha256 = "bf09f778f68c47515f0763e7c4aa952ed32dea57608a9473cb8edd50742e8a6a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iputils-20240905-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bf09f778f68c47515f0763e7c4aa952ed32dea57608a9473cb8edd50742e8a6a", + ], +) + +rpm( + name = "iputils-0__20240905-5.el10.x86_64", + sha256 = "adfa1b26bf1cd23d0998c85da06ad787f0fa745bfd232f7acec225c1e88b05d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iputils-20240905-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/adfa1b26bf1cd23d0998c85da06ad787f0fa745bfd232f7acec225c1e88b05d8", + ], +) + +rpm( + name = "ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64", + sha256 = "fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/ipxe-roms-qemu-20200823-9.git4bd064de.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + ], +) + +rpm( + name = "ipxe-roms-qemu-0__20240119-5.gitde8a0821.el10.x86_64", + sha256 = "0b834df444ffe592d164f1dd5a2ce690417e459b8cd6d6c69b2075bbb9c8b4cb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/ipxe-roms-qemu-20240119-5.gitde8a0821.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0b834df444ffe592d164f1dd5a2ce690417e459b8cd6d6c69b2075bbb9c8b4cb", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.aarch64", + sha256 = "23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/jansson-2.14-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.s390x", + sha256 = "ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/jansson-2.14-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.x86_64", + sha256 = "c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/jansson-2.14-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + ], +) + +rpm( + name = "jansson-0__2.14-3.el10.aarch64", + sha256 = "a838d217420f9f10eb80a221b6cda50ff65e729c15be94f33cbb420f206ee880", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/jansson-2.14-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a838d217420f9f10eb80a221b6cda50ff65e729c15be94f33cbb420f206ee880", + ], +) + +rpm( + name = "jansson-0__2.14-3.el10.s390x", + sha256 = "cc054f4efd4b779ec708061759de28acd9eb9df0ad8f3b32f9fe4752b1dcb06c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/jansson-2.14-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/cc054f4efd4b779ec708061759de28acd9eb9df0ad8f3b32f9fe4752b1dcb06c", + ], +) + +rpm( + name = "jansson-0__2.14-3.el10.x86_64", + sha256 = "25d2ef852d5941b27ae105ec780aa367605a6f8b86e6c6a13abdee1c1065979f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/jansson-2.14-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/25d2ef852d5941b27ae105ec780aa367605a6f8b86e6c6a13abdee1c1065979f", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.aarch64", + sha256 = "65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-c-0.14-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.s390x", + sha256 = "224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-c-0.14-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.x86_64", + sha256 = "1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-c-0.14-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + ], +) + +rpm( + name = "json-c-0__0.18-3.el10.aarch64", + sha256 = "d3ecfebff7515c94e971c9584b0815202712cc2642526ee4fe5e424ec8ff2fae", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/json-c-0.18-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d3ecfebff7515c94e971c9584b0815202712cc2642526ee4fe5e424ec8ff2fae", + ], +) + +rpm( + name = "json-c-0__0.18-3.el10.s390x", + sha256 = "d4bc7597af6496e70ffa04858c8d2418267b302959db9da3f89c6edfc723ccd4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/json-c-0.18-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d4bc7597af6496e70ffa04858c8d2418267b302959db9da3f89c6edfc723ccd4", + ], +) + +rpm( + name = "json-c-0__0.18-3.el10.x86_64", + sha256 = "e73ae01d509fb9bef1bbd675be1c0003b0ee942a4187e9b14ef43e56e508245b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/json-c-0.18-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e73ae01d509fb9bef1bbd675be1c0003b0ee942a4187e9b14ef43e56e508245b", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.aarch64", + sha256 = "04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-glib-1.6.6-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.s390x", + sha256 = "5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-glib-1.6.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.x86_64", + sha256 = "d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-glib-1.6.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + ], +) + +rpm( + name = "json-glib-0__1.8.0-5.el10.aarch64", + sha256 = "41de435cef6d704c1bb85066b9711e44f60b1dbff3574997094e5ed166e2b95e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/json-glib-1.8.0-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/41de435cef6d704c1bb85066b9711e44f60b1dbff3574997094e5ed166e2b95e", + ], +) + +rpm( + name = "json-glib-0__1.8.0-5.el10.s390x", + sha256 = "851e663120bae993deed48bd36f06a84d9082b51b35c87244e7a8d3735bf422f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/json-glib-1.8.0-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/851e663120bae993deed48bd36f06a84d9082b51b35c87244e7a8d3735bf422f", + ], +) + +rpm( + name = "json-glib-0__1.8.0-5.el10.x86_64", + sha256 = "156fddb0053ab256ec6ecbe7818c0ec8e957228eb2ed1d7cd244ecda85e1197e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/json-glib-1.8.0-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/156fddb0053ab256ec6ecbe7818c0ec8e957228eb2ed1d7cd244ecda85e1197e", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-686.el9.aarch64", + sha256 = "23539bf902346ab880ca3bb58fc13f4e2351f699ac0f419e59b1f8662226831d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-headers-5.14.0-686.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23539bf902346ab880ca3bb58fc13f4e2351f699ac0f419e59b1f8662226831d", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-686.el9.s390x", + sha256 = "4e521fbe77edcedc41d06e22e8dbf5efd99043ffc04961974e8a085de4f892b2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/kernel-headers-5.14.0-686.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4e521fbe77edcedc41d06e22e8dbf5efd99043ffc04961974e8a085de4f892b2", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-686.el9.x86_64", + sha256 = "f6e5d44ad55edc1eafaa0842819f788636298c2ddf8a6f0c9dc7510946568ea8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-headers-5.14.0-686.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6e5d44ad55edc1eafaa0842819f788636298c2ddf8a6f0c9dc7510946568ea8", + ], +) + +rpm( + name = "kernel-headers-0__6.12.0-211.el10.aarch64", + sha256 = "1109f3c8a5725d7ab10eea8b99ab4be56486e69f76866e87be988c79488135a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/kernel-headers-6.12.0-211.el10.aarch64.rpm", + ], +) + +rpm( + name = "kernel-headers-0__6.12.0-211.el10.s390x", + sha256 = "d6850e41ac47e1c0f4e63822ac215f36cdc9c28af1e6e20afdfd1bd2de0cebfc", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/kernel-headers-6.12.0-211.el10.s390x.rpm", + ], +) + +rpm( + name = "kernel-headers-0__6.12.0-211.el10.x86_64", + sha256 = "caf9650fceb96c996aaf30d1df27b4fe670e408e2a3398efef7bc9796c8cf7a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/kernel-headers-6.12.0-211.el10.x86_64.rpm", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.aarch64", + sha256 = "5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/keyutils-libs-1.6.3-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.s390x", + sha256 = "954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/keyutils-libs-1.6.3-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.x86_64", + sha256 = "aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/keyutils-libs-1.6.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-5.el10.aarch64", + sha256 = "a6ff394736256d5c2317ab5503a056d0f60155a92090853179506358bfd2333f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/keyutils-libs-1.6.3-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a6ff394736256d5c2317ab5503a056d0f60155a92090853179506358bfd2333f", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-5.el10.s390x", + sha256 = "f2ed690c8ec6ef2a0b912ba324268d354d282f437b30044a44304543e78d9238", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/keyutils-libs-1.6.3-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f2ed690c8ec6ef2a0b912ba324268d354d282f437b30044a44304543e78d9238", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-5.el10.x86_64", + sha256 = "312e0bf42841bb330f7721012d1ee5816e5ea223e54fc5dfd1a95c6f1d7516b0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/keyutils-libs-1.6.3-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/312e0bf42841bb330f7721012d1ee5816e5ea223e54fc5dfd1a95c6f1d7516b0", + ], +) + +rpm( + name = "kmod-0__28-11.el9.aarch64", + sha256 = "857f2f75fc01e8228750d5aef82040c00520c0a91670c951620a4161a1ac2d77", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/kmod-28-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/857f2f75fc01e8228750d5aef82040c00520c0a91670c951620a4161a1ac2d77", + ], +) + +rpm( + name = "kmod-0__28-11.el9.s390x", + sha256 = "3021be113a18631fb55f76bc2491733b3d9887fa563be60004569e2f36caab6c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/kmod-28-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3021be113a18631fb55f76bc2491733b3d9887fa563be60004569e2f36caab6c", + ], +) + +rpm( + name = "kmod-0__28-11.el9.x86_64", + sha256 = "c2cd4a2dcdc7cc55fbaf97f5641487091dbd13a5ea7974087ef8215d18fe2ffb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-28-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c2cd4a2dcdc7cc55fbaf97f5641487091dbd13a5ea7974087ef8215d18fe2ffb", + ], +) + +rpm( + name = "kmod-0__31-13.el10.aarch64", + sha256 = "a3db8298e46e1ba852dec2537f616ae51c4ef14989932059c4c57563d30c4c82", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/kmod-31-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "kmod-0__31-13.el10.s390x", + sha256 = "e238e6f1772a648243c41cc4ccce6a592b12c16a460e0a90f662f23c1cabebc5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/kmod-31-13.el10.s390x.rpm", + ], +) + +rpm( + name = "kmod-0__31-13.el10.x86_64", + sha256 = "eccbe0bed15e27471945b486d82b6bc4b1003b63e579b99b79afc7cf897656a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/kmod-31-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "kmod-libs-0__28-10.el9.x86_64", + sha256 = "79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.aarch64", + sha256 = "68bd119a65b2d37388623c0e4a0a717b74787e1243244c8ffa0a448f42718ee4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/kmod-libs-28-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/68bd119a65b2d37388623c0e4a0a717b74787e1243244c8ffa0a448f42718ee4", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.s390x", + sha256 = "e04b90f099224b2cb1dd28df4ff45aaa1982d26b2e2f04cb7bdcdf9b5a1306c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/kmod-libs-28-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e04b90f099224b2cb1dd28df4ff45aaa1982d26b2e2f04cb7bdcdf9b5a1306c4", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.x86_64", + sha256 = "29d2fd267498f3e12d420a3d867483d32ce97d544327de983872f8ee89ec02b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/29d2fd267498f3e12d420a3d867483d32ce97d544327de983872f8ee89ec02b3", + ], +) + +rpm( + name = "kmod-libs-0__31-13.el10.aarch64", + sha256 = "9bd10be61b682fb1263c2c6afff852efc714f0cf04acbaa1ed1180f5abeca919", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/kmod-libs-31-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "kmod-libs-0__31-13.el10.s390x", + sha256 = "b164ddc883444eae10d296a4478e5fe2576a193c4ee0921ccdd4df7211e1aa55", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/kmod-libs-31-13.el10.s390x.rpm", + ], +) + +rpm( + name = "kmod-libs-0__31-13.el10.x86_64", + sha256 = "bdf857119d993a27da5b7b4bdfa581dd92f1c1e0a7a29596c21080e1ac8b4fc8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/kmod-libs-31-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-6.el9.x86_64", + sha256 = "50edf4089d0480048aeba2bfd736b93aa89dc25735cd02e80bad57e562e1e001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/50edf4089d0480048aeba2bfd736b93aa89dc25735cd02e80bad57e562e1e001", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.aarch64", + sha256 = "7671147fe79cb1fa2fd011cee451be325a8e4aca6290ff67eb9e4d01f0c1edfd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/krb5-libs-1.21.1-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7671147fe79cb1fa2fd011cee451be325a8e4aca6290ff67eb9e4d01f0c1edfd", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.s390x", + sha256 = "ea2d05d119e5b9072dd4c58d74079accfd24bae196d012e0de105ab3e0bcc892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/krb5-libs-1.21.1-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ea2d05d119e5b9072dd4c58d74079accfd24bae196d012e0de105ab3e0bcc892", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.x86_64", + sha256 = "d5d3473637d3453c3216b1f14fef500e10bd8158c99bbadb48b788b88d92786f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5d3473637d3453c3216b1f14fef500e10bd8158c99bbadb48b788b88d92786f", + ], +) + +rpm( + name = "krb5-libs-0__1.21.3-8.el10.aarch64", + sha256 = "ae0332e7dc9a151a1f86f44e8cd75148f8ced6aeb54d1d9671af752fd863b0c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/krb5-libs-1.21.3-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae0332e7dc9a151a1f86f44e8cd75148f8ced6aeb54d1d9671af752fd863b0c8", + ], +) + +rpm( + name = "krb5-libs-0__1.21.3-8.el10.s390x", + sha256 = "415688256b2cea553669441e078c28bcb9dc2227c4bbbd29c46c505cec994d6e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/krb5-libs-1.21.3-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/415688256b2cea553669441e078c28bcb9dc2227c4bbbd29c46c505cec994d6e", + ], +) + +rpm( + name = "krb5-libs-0__1.21.3-8.el10.x86_64", + sha256 = "c19429221a54c4de8c9d88d6c6e0f929d1c4199828300c6f94b667c6f7ff00f4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.3-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c19429221a54c4de8c9d88d6c6e0f929d1c4199828300c6f94b667c6f7ff00f4", + ], +) + +rpm( + name = "less-0__590-5.el9.x86_64", + sha256 = "46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + ], +) + +rpm( + name = "less-0__590-6.el9.s390x", + sha256 = "0f83cc72b28298a902ac58ab5e0a0dfb092a9a218a00f5baaa45f07ec0fbc09d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/less-590-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0f83cc72b28298a902ac58ab5e0a0dfb092a9a218a00f5baaa45f07ec0fbc09d", + ], +) + +rpm( + name = "less-0__590-6.el9.x86_64", + sha256 = "c6d44d94d48746cb6a909c5a929f69c86db83aef59635cbabfc5a4a176a388a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c6d44d94d48746cb6a909c5a929f69c86db83aef59635cbabfc5a4a176a388a0", + ], +) + +rpm( + name = "less-0__661-3.el10.s390x", + sha256 = "6eb8705527ce26aa64dd692e6103e6b2197fb134a9e4f03e5db78d4c45035ddf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/less-661-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6eb8705527ce26aa64dd692e6103e6b2197fb134a9e4f03e5db78d4c45035ddf", + ], +) + +rpm( + name = "less-0__661-3.el10.x86_64", + sha256 = "1cf4afdf660772f65668cc702722facd7ed79d849150e14cab623cffd4167516", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/less-661-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1cf4afdf660772f65668cc702722facd7ed79d849150e14cab623cffd4167516", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.aarch64", + sha256 = "90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libacl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.s390x", + sha256 = "bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libacl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.x86_64", + sha256 = "60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libacl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + ], +) + +rpm( + name = "libacl-0__2.3.2-4.el10.aarch64", + sha256 = "20f3eeb53bf86dd2c7152fcdc33df3efd60777edd11f31f633739c0fdc0bdbf5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libacl-2.3.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/20f3eeb53bf86dd2c7152fcdc33df3efd60777edd11f31f633739c0fdc0bdbf5", + ], +) + +rpm( + name = "libacl-0__2.3.2-4.el10.s390x", + sha256 = "5f26a314b6e88e87516979610e9c0bda3dc55c67c9339bf79739574162eb1fa6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libacl-2.3.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5f26a314b6e88e87516979610e9c0bda3dc55c67c9339bf79739574162eb1fa6", + ], +) + +rpm( + name = "libacl-0__2.3.2-4.el10.x86_64", + sha256 = "dd06cfe883fcdf7cb14b749180abfd9fe9924723341a8644a9f65c086febc647", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libacl-2.3.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd06cfe883fcdf7cb14b749180abfd9fe9924723341a8644a9f65c086febc647", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.aarch64", + sha256 = "1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libaio-0.3.111-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.s390x", + sha256 = "b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libaio-0.3.111-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.x86_64", + sha256 = "7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libaio-0.3.111-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + ], +) + +rpm( + name = "libaio-0__0.3.111-22.el10.aarch64", + sha256 = "99660f7b25fdb5503e0414e263ad91d0c1b61f1dc4e106721c0d1380b239d17f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libaio-0.3.111-22.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99660f7b25fdb5503e0414e263ad91d0c1b61f1dc4e106721c0d1380b239d17f", + ], +) + +rpm( + name = "libaio-0__0.3.111-22.el10.s390x", + sha256 = "5ee6ef6f4625016ae0746586e62fcf1c70596f8b557d8e6ad54cc67a4ae26690", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libaio-0.3.111-22.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5ee6ef6f4625016ae0746586e62fcf1c70596f8b557d8e6ad54cc67a4ae26690", + ], +) + +rpm( + name = "libaio-0__0.3.111-22.el10.x86_64", + sha256 = "ea807b22c77a37a766e62ad533dc3f9b80fd5b260016487cecea55b095092446", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libaio-0.3.111-22.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea807b22c77a37a766e62ad533dc3f9b80fd5b260016487cecea55b095092446", + ], +) + +rpm( + name = "libarchive-0__3.5.3-4.el9.x86_64", + sha256 = "4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.aarch64", + sha256 = "737b5493221fbebb7d6578de00ccf9ee29a2685ef6cb6bc4705a4680384b63ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libarchive-3.5.3-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/737b5493221fbebb7d6578de00ccf9ee29a2685ef6cb6bc4705a4680384b63ae", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.s390x", + sha256 = "343b64738033626728e908dc8c3e186c64fb9eb1752f35a2cf5fefa5156fa593", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libarchive-3.5.3-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/343b64738033626728e908dc8c3e186c64fb9eb1752f35a2cf5fefa5156fa593", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.x86_64", + sha256 = "a8f609bd9ce84d600fd4b6843c93025569cec32e3006d065a5e4323d2ff5696a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a8f609bd9ce84d600fd4b6843c93025569cec32e3006d065a5e4323d2ff5696a", + ], +) + +rpm( + name = "libarchive-0__3.7.7-4.el10.s390x", + sha256 = "6d1dedaf9597a0df9e485662dda1f971639912c40af3c7fbc1150dab8622900a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libarchive-3.7.7-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d1dedaf9597a0df9e485662dda1f971639912c40af3c7fbc1150dab8622900a", + ], +) + +rpm( + name = "libarchive-0__3.7.7-4.el10.x86_64", + sha256 = "604bd62429638f12bd4699692e75f1bc0c2be2558c3e8abdf85d03974c443194", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libarchive-3.7.7-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/604bd62429638f12bd4699692e75f1bc0c2be2558c3e8abdf85d03974c443194", + ], +) + +rpm( + name = "libasan-0__11.5.0-14.el9.aarch64", + sha256 = "e2c312abf632bae493826b22f82b80809c307b40e7993226655bae9c9bafa228", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libasan-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e2c312abf632bae493826b22f82b80809c307b40e7993226655bae9c9bafa228", + ], +) + +rpm( + name = "libasan-0__11.5.0-14.el9.s390x", + sha256 = "d341357ba1a1add96ff4d59a34005e8618cca59c5d378f58148b9310d1401682", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libasan-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d341357ba1a1add96ff4d59a34005e8618cca59c5d378f58148b9310d1401682", + ], +) + +rpm( + name = "libasan-0__14.3.1-4.4.el10.aarch64", + sha256 = "1d1728b4d1ac7cdc05a696ef8b4f65346e788a79e11e25ddd38f4cc189539a8e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libasan-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libasan-0__14.3.1-4.4.el10.s390x", + sha256 = "cb18cf1281793fac52d882eb27c367da6551ee7e9802d1a329770f4dd2edd8a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libasan-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.s390x", + sha256 = "56a2e5e9e6c2fde071486b174eeecec2631d3b40a6bfc036019e5cd6e590a49c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libassuan-2.5.5-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56a2e5e9e6c2fde071486b174eeecec2631d3b40a6bfc036019e5cd6e590a49c", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.x86_64", + sha256 = "3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libassuan-2.5.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + ], +) + +rpm( + name = "libassuan-0__2.5.6-6.el10.s390x", + sha256 = "d31b659dd6036b990ea71c10c426df13f2f395685ea8674fcca49d6a5fbeb580", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libassuan-2.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d31b659dd6036b990ea71c10c426df13f2f395685ea8674fcca49d6a5fbeb580", + ], +) + +rpm( + name = "libassuan-0__2.5.6-6.el10.x86_64", + sha256 = "5cb1eff4efadf906bb8060bb41c205bf77eabe73142599053ae892ee7d85e9c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libassuan-2.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5cb1eff4efadf906bb8060bb41c205bf77eabe73142599053ae892ee7d85e9c0", + ], +) + +rpm( + name = "libatomic-0__11.5.0-14.el9.aarch64", + sha256 = "9111ad5dcd16ac04ee06dbedbc730bdf438d58f1f16af2de5cd3cdb3e346efbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libatomic-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9111ad5dcd16ac04ee06dbedbc730bdf438d58f1f16af2de5cd3cdb3e346efbe", + ], +) + +rpm( + name = "libatomic-0__11.5.0-14.el9.s390x", + sha256 = "b071b407128db07af4859894ee99fc7f1106be0a325bdb6242ca5d92752a3c5d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libatomic-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b071b407128db07af4859894ee99fc7f1106be0a325bdb6242ca5d92752a3c5d", + ], +) + +rpm( + name = "libatomic-0__14.3.1-4.4.el10.aarch64", + sha256 = "be72dc41f36eb4e8f01003b4ed4f45b921db5b8eced1fcde29b055a224b5d6d2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libatomic-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libatomic-0__14.3.1-4.4.el10.s390x", + sha256 = "bde0e892caec40bb5a2460e0b470d2e996b60678d50700927373fbcdd011fc7e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libatomic-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.aarch64", + sha256 = "a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libattr-2.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.s390x", + sha256 = "c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libattr-2.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.x86_64", + sha256 = "d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libattr-2.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + ], +) + +rpm( + name = "libattr-0__2.5.2-5.el10.aarch64", + sha256 = "37a06ff130ff4112ca431839607e4d7c583ec4b0191431aa9913bba754880040", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libattr-2.5.2-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/37a06ff130ff4112ca431839607e4d7c583ec4b0191431aa9913bba754880040", + ], +) + +rpm( + name = "libattr-0__2.5.2-5.el10.s390x", + sha256 = "583ef53e42b6928c6a707baee521a3161f0d00d094db96ce05b39ae4409c73f8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libattr-2.5.2-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/583ef53e42b6928c6a707baee521a3161f0d00d094db96ce05b39ae4409c73f8", + ], +) + +rpm( + name = "libattr-0__2.5.2-5.el10.x86_64", + sha256 = "2ec3c5ba70aaae97db5226f07476c3fd0adfeed15d7cce3b676288273c829274", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libattr-2.5.2-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ec3c5ba70aaae97db5226f07476c3fd0adfeed15d7cce3b676288273c829274", + ], +) + +rpm( + name = "libblkid-0__2.37.4-21.el9.x86_64", + sha256 = "2433f8829f894c7c5ba0639eb37a18a92632d4f9383551c901434b4353f96fc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libblkid-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2433f8829f894c7c5ba0639eb37a18a92632d4f9383551c901434b4353f96fc4", + ], +) + +rpm( + name = "libblkid-0__2.37.4-25.el9.aarch64", + sha256 = "40de20b6cbd0d5bf61e1576d47c154b349779be6790d8ad05d54cad94a8f9a3b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libblkid-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/40de20b6cbd0d5bf61e1576d47c154b349779be6790d8ad05d54cad94a8f9a3b", + ], +) + +rpm( + name = "libblkid-0__2.37.4-25.el9.s390x", + sha256 = "62d6027ed230599196800f12bbd058670aa4a8759c829c934e0b829c3996c288", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libblkid-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/62d6027ed230599196800f12bbd058670aa4a8759c829c934e0b829c3996c288", + ], +) + +rpm( + name = "libblkid-0__2.37.4-25.el9.x86_64", + sha256 = "2309af12b80fec77070d354fdae370ffa3e57209137b46098286895be5a484f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libblkid-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2309af12b80fec77070d354fdae370ffa3e57209137b46098286895be5a484f5", + ], +) + +rpm( + name = "libblkid-0__2.40.2-18.el10.aarch64", + sha256 = "67ab380cf5fc556fab3c5059885588f8c9318abc9e5627e61f825dbfc60f4d89", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libblkid-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libblkid-0__2.40.2-18.el10.s390x", + sha256 = "1575800e4ac6460c20042e4cfcd00d6f32dc9907068505ea0102702f88799066", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libblkid-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libblkid-0__2.40.2-18.el10.x86_64", + sha256 = "fcf4a4e003b682e00bba896f32ee14911f92b25f27c6df0f0d6e3cb91299718f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libblkid-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libbpf-2__1.5.0-1.el9.x86_64", + sha256 = "5280ff8fe8a1f217b54abeed8b357c4c3fd47fbcfa928483806effac723accba", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.5.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5280ff8fe8a1f217b54abeed8b357c4c3fd47fbcfa928483806effac723accba", + ], +) + +rpm( + name = "libbpf-2__1.5.0-3.el9.aarch64", + sha256 = "1aee4e44b6e5b6b0b888c2d994367efaa4c729521c925baef2e9f96c29813fa1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libbpf-1.5.0-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1aee4e44b6e5b6b0b888c2d994367efaa4c729521c925baef2e9f96c29813fa1", + ], +) + +rpm( + name = "libbpf-2__1.5.0-3.el9.s390x", + sha256 = "9087b5e9cc04fbffeaaa824b5fc050d41ad59cb7e0b3e2657810d4455308282b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbpf-1.5.0-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9087b5e9cc04fbffeaaa824b5fc050d41ad59cb7e0b3e2657810d4455308282b", + ], +) + +rpm( + name = "libbpf-2__1.5.0-3.el9.x86_64", + sha256 = "27859976d0cc4123f8f717dbb8e9b4031f685ac648851eb290b54b069d51c868", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.5.0-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27859976d0cc4123f8f717dbb8e9b4031f685ac648851eb290b54b069d51c868", + ], +) + +rpm( + name = "libbpf-2__1.7.0-1.el10.aarch64", + sha256 = "f89a67afcbc8eacc5c8c40e7c30ec5a5aaa78e89bca1dd1032b89c8634bbc605", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libbpf-1.7.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f89a67afcbc8eacc5c8c40e7c30ec5a5aaa78e89bca1dd1032b89c8634bbc605", + ], +) + +rpm( + name = "libbpf-2__1.7.0-1.el10.s390x", + sha256 = "0d45b7988fb7d679b8f4f9e88439b086c0c086a1ba7853bfd376b5061ac3c12b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libbpf-1.7.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/0d45b7988fb7d679b8f4f9e88439b086c0c086a1ba7853bfd376b5061ac3c12b", + ], +) + +rpm( + name = "libbpf-2__1.7.0-1.el10.x86_64", + sha256 = "1379b88512429975bbbdd65c8737cbc793664bef2f0e8c2e04c1481b939c85ca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libbpf-1.7.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1379b88512429975bbbdd65c8737cbc793664bef2f0e8c2e04c1481b939c85ca", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-7.el9.x86_64", + sha256 = "5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbrotli-1.0.9-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-9.el9.s390x", + sha256 = "aae2d2967058c0d6da0697788b37338a83dbb7c0a83c42e526051e2b12ee2c3f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbrotli-1.0.9-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/aae2d2967058c0d6da0697788b37338a83dbb7c0a83c42e526051e2b12ee2c3f", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-9.el9.x86_64", + sha256 = "b9add1a745e5a7edae289502896a3ac075fda4d097eb73c4cee592363cd976ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbrotli-1.0.9-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b9add1a745e5a7edae289502896a3ac075fda4d097eb73c4cee592363cd976ed", + ], +) + +rpm( + name = "libbrotli-0__1.1.0-7.el10.s390x", + sha256 = "6deea1eafedaa040d5c7c4af870f2ae2edb6742f02cd56cdf07789cf2acd1359", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libbrotli-1.1.0-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6deea1eafedaa040d5c7c4af870f2ae2edb6742f02cd56cdf07789cf2acd1359", + ], +) + +rpm( + name = "libbrotli-0__1.1.0-7.el10.x86_64", + sha256 = "9b397443a3ffe381380af22b55b0cac0f02412b859f92888138fba5e1df5e15d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libbrotli-1.1.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9b397443a3ffe381380af22b55b0cac0f02412b859f92888138fba5e1df5e15d", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.aarch64", + sha256 = "acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.s390x", + sha256 = "a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.x86_64", + sha256 = "356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + ], +) + +rpm( + name = "libburn-0__1.5.6-6.el10.aarch64", + sha256 = "221ced92933bca63eb94d1ed60699f364e5d0b0b9915a0fba39d8b98d513d887", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libburn-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/221ced92933bca63eb94d1ed60699f364e5d0b0b9915a0fba39d8b98d513d887", + ], +) + +rpm( + name = "libburn-0__1.5.6-6.el10.s390x", + sha256 = "6ac13f60b7e3bee622332411d4ec87c77dbd23f5710edf73209d29bf85904e4d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libburn-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6ac13f60b7e3bee622332411d4ec87c77dbd23f5710edf73209d29bf85904e4d", + ], +) + +rpm( + name = "libburn-0__1.5.6-6.el10.x86_64", + sha256 = "83ba66223a60bf93d13710b632ecc8c057c294a17f36ba31a18e16e7d4b97819", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libburn-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/83ba66223a60bf93d13710b632ecc8c057c294a17f36ba31a18e16e7d4b97819", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.aarch64", + sha256 = "7159fe4c1e6be9c8324632bfabcbc86ad8b7cb5105acb0b8a5c35774c93470f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-2.48-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7159fe4c1e6be9c8324632bfabcbc86ad8b7cb5105acb0b8a5c35774c93470f2", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.s390x", + sha256 = "2883f350016ef87b8f6aa33966023cb0f3c789bdcb36374037fc94096ee61bf7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-2.48-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2883f350016ef87b8f6aa33966023cb0f3c789bdcb36374037fc94096ee61bf7", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.x86_64", + sha256 = "bda5d981249ac16603228a4f544a15a140e1eed105ab1206da6bef9705cddee7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bda5d981249ac16603228a4f544a15a140e1eed105ab1206da6bef9705cddee7", + ], +) + +rpm( + name = "libcap-0__2.48-9.el9.x86_64", + sha256 = "7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + ], +) + +rpm( + name = "libcap-0__2.69-7.el10.aarch64", + sha256 = "38c8ab1a8883b39bf46006ed39b7834cfa0df2ca0a4825908f7da4ed631c8fc6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcap-2.69-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/38c8ab1a8883b39bf46006ed39b7834cfa0df2ca0a4825908f7da4ed631c8fc6", + ], +) + +rpm( + name = "libcap-0__2.69-7.el10.s390x", + sha256 = "3f7016928e759a177e4103d6c31dc0833ec43eae5836d871bc5ea540fd3d0c7b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcap-2.69-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3f7016928e759a177e4103d6c31dc0833ec43eae5836d871bc5ea540fd3d0c7b", + ], +) + +rpm( + name = "libcap-0__2.69-7.el10.x86_64", + sha256 = "54c14cb5c8dc3536f43d632d766ed302a8ecad2ad8efd6aa2d079dafc11d1cd9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcap-2.69-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/54c14cb5c8dc3536f43d632d766ed302a8ecad2ad8efd6aa2d079dafc11d1cd9", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.aarch64", + sha256 = "1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-ng-0.8.2-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.s390x", + sha256 = "9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-ng-0.8.2-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.x86_64", + sha256 = "62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-ng-0.8.2-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + ], +) + +rpm( + name = "libcap-ng-0__0.8.4-6.el10.aarch64", + sha256 = "993a88b692dbb7a73ec214c464d8c267155c87ebdb18fb3ecb8782a2f777ce31", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcap-ng-0.8.4-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/993a88b692dbb7a73ec214c464d8c267155c87ebdb18fb3ecb8782a2f777ce31", + ], +) + +rpm( + name = "libcap-ng-0__0.8.4-6.el10.s390x", + sha256 = "8256ca0cc7612b3bc6d2f86039c914f90c349fda27513cb42868242cb4949542", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcap-ng-0.8.4-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/8256ca0cc7612b3bc6d2f86039c914f90c349fda27513cb42868242cb4949542", + ], +) + +rpm( + name = "libcap-ng-0__0.8.4-6.el10.x86_64", + sha256 = "38b2ce6018bc0c73cdbc79f5cb2bad63045d84c308a56085a9de4adfd3250add", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcap-ng-0.8.4-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/38b2ce6018bc0c73cdbc79f5cb2bad63045d84c308a56085a9de4adfd3250add", + ], +) + +rpm( + name = "libcbor-0__0.11.0-3.el10.aarch64", + sha256 = "588538490e8d295a4b0833bfcec72eeb378e7175e5d1df3c50341f6537ba15a9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcbor-0.11.0-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "libcbor-0__0.11.0-3.el10.s390x", + sha256 = "cebf5e31b218be5724ff76f34f60e3ef673e821ca5b5a7ea60e1dea67cfd271a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcbor-0.11.0-3.el10.s390x.rpm", + ], +) + +rpm( + name = "libcbor-0__0.11.0-3.el10.x86_64", + sha256 = "49a800e8569ac3e22fbe1b3595683f9934cbeabc6fd03c1a224b97441af7d3ab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcbor-0.11.0-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-7.el9.x86_64", + sha256 = "d11e18dbfddd56538c476851d98bd96795f34045e14ebe7b3285f225c4b4b189", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d11e18dbfddd56538c476851d98bd96795f34045e14ebe7b3285f225c4b4b189", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.aarch64", + sha256 = "7bf194e4f69e548566ff21b178ae1f47d5e00f064bfa492616e4dd42f812f2a7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcom_err-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7bf194e4f69e548566ff21b178ae1f47d5e00f064bfa492616e4dd42f812f2a7", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.s390x", + sha256 = "b8aa8922757718f85c31dfc7c333434e576a52f9425e91f51db8fb082661c3ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcom_err-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8aa8922757718f85c31dfc7c333434e576a52f9425e91f51db8fb082661c3ff", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.x86_64", + sha256 = "ef43794f39d49b69e12506722e432a497e7f96038e26cab2c34476aad4b3d413", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef43794f39d49b69e12506722e432a497e7f96038e26cab2c34476aad4b3d413", + ], +) + +rpm( + name = "libcom_err-0__1.47.1-5.el10.aarch64", + sha256 = "97380e5fe0fce42be70418333bae2d5d9044c5f7fbda30c9b28f7776718e76a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcom_err-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/97380e5fe0fce42be70418333bae2d5d9044c5f7fbda30c9b28f7776718e76a2", + ], +) + +rpm( + name = "libcom_err-0__1.47.1-5.el10.s390x", + sha256 = "09f3032ebafe4e8d93152c940f160b68df98b1a1c978fae86b8524a8d7713467", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcom_err-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/09f3032ebafe4e8d93152c940f160b68df98b1a1c978fae86b8524a8d7713467", + ], +) + +rpm( + name = "libcom_err-0__1.47.1-5.el10.x86_64", + sha256 = "37b036aa4cb44adade9c4206f2eea389035387082be0d2eda0249d9fd07fb842", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcom_err-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/37b036aa4cb44adade9c4206f2eea389035387082be0d2eda0249d9fd07fb842", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.s390x", + sha256 = "6000e568152331fe40da9b244e579aa22c404bed59b4f33b08de2c962f5849b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libconfig-1.7.2-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6000e568152331fe40da9b244e579aa22c404bed59b4f33b08de2c962f5849b4", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.x86_64", + sha256 = "e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libconfig-1.7.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + ], +) + +rpm( + name = "libconfig-0__1.7.3-10.el10.s390x", + sha256 = "2df21ddec6f917d330835cee60c9c71a604fa3f988aabe5f1deeebd76582dc5a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libconfig-1.7.3-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2df21ddec6f917d330835cee60c9c71a604fa3f988aabe5f1deeebd76582dc5a", + ], +) + +rpm( + name = "libconfig-0__1.7.3-10.el10.x86_64", + sha256 = "5bee52a5f0599fc6a59df28222e6e831c441887471412a3d18e6d13ddfaaa881", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libconfig-1.7.3-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5bee52a5f0599fc6a59df28222e6e831c441887471412a3d18e6d13ddfaaa881", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-40.el9.aarch64", + sha256 = "888e91e92f094f60d88b501ae583ec1e440fb3f9ba5faa41ba520f8c11623ea2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcurl-minimal-7.76.1-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/888e91e92f094f60d88b501ae583ec1e440fb3f9ba5faa41ba520f8c11623ea2", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-40.el9.s390x", + sha256 = "e9bb1bbb6e5239f02eded93f1774e535d0d215c91b59149c76a3101a26422f33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcurl-minimal-7.76.1-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e9bb1bbb6e5239f02eded93f1774e535d0d215c91b59149c76a3101a26422f33", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-40.el9.x86_64", + sha256 = "e2153e0e701347fd2cbf7660905b21ad9707342b4c1a715a8d49aaf555471d51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e2153e0e701347fd2cbf7660905b21ad9707342b4c1a715a8d49aaf555471d51", + ], +) + +rpm( + name = "libcurl-minimal-0__8.12.1-4.el10.aarch64", + sha256 = "17a02035eee04463ae727468fb756a7088e83fe3db93138b8a1e5a6d8a7b2904", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcurl-minimal-8.12.1-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/17a02035eee04463ae727468fb756a7088e83fe3db93138b8a1e5a6d8a7b2904", + ], +) + +rpm( + name = "libcurl-minimal-0__8.12.1-4.el10.s390x", + sha256 = "4acfbb95ccb0ba29bd9598472942f3df90a6e3bbe7e4ec7893ec92dd97636a66", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcurl-minimal-8.12.1-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4acfbb95ccb0ba29bd9598472942f3df90a6e3bbe7e4ec7893ec92dd97636a66", + ], +) + +rpm( + name = "libcurl-minimal-0__8.12.1-4.el10.x86_64", + sha256 = "053872b16ba35bdac16d7e3b3bed01fde3143face1ac9292dde9ac9b44a96758", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-8.12.1-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/053872b16ba35bdac16d7e3b3bed01fde3143face1ac9292dde9ac9b44a96758", + ], +) + +rpm( + name = "libdb-0__5.3.28-55.el9.x86_64", + sha256 = "e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.aarch64", + sha256 = "32cfcb3dbd040c206ead6aae6bb3378246af95ab2c7ba18a9db7ec0cec649f34", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libdb-5.3.28-57.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/32cfcb3dbd040c206ead6aae6bb3378246af95ab2c7ba18a9db7ec0cec649f34", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.s390x", + sha256 = "5bae96e362fb4731b841f84d22b8ec876eeca2519404625afc51b5ae9fcd6326", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libdb-5.3.28-57.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5bae96e362fb4731b841f84d22b8ec876eeca2519404625afc51b5ae9fcd6326", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.x86_64", + sha256 = "17f7fd8c15436826da5ac9d0428ecb83feec18c01b6c5057ab9b85ab97314c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-57.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/17f7fd8c15436826da5ac9d0428ecb83feec18c01b6c5057ab9b85ab97314c96", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.x86_64", + sha256 = "ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libeconf-0.4.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + ], +) + +rpm( + name = "libeconf-0__0.4.1-5.el9.aarch64", + sha256 = "40675233785bf5ffc0e97cd559efd2e9f4b8b8c392013bb6c9441c6e01b332d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libeconf-0.4.1-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/40675233785bf5ffc0e97cd559efd2e9f4b8b8c392013bb6c9441c6e01b332d6", + ], +) + +rpm( + name = "libeconf-0__0.4.1-5.el9.s390x", + sha256 = "025025697e1f9d222fb6224be5f6a463ad630971c67f4a55ff8d70fc25780443", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libeconf-0.4.1-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/025025697e1f9d222fb6224be5f6a463ad630971c67f4a55ff8d70fc25780443", + ], +) + +rpm( + name = "libeconf-0__0.4.1-5.el9.x86_64", + sha256 = "aba2474e57729f395e1918638270e7aa7cf8de8f3fc31b81f9412888320459e8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libeconf-0.4.1-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aba2474e57729f395e1918638270e7aa7cf8de8f3fc31b81f9412888320459e8", + ], +) + +rpm( + name = "libeconf-0__0.6.2-4.el10.aarch64", + sha256 = "1bb73420b4f72fb200ccc560224107e1ae62b8a7156051a88c9239c9def47983", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libeconf-0.6.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1bb73420b4f72fb200ccc560224107e1ae62b8a7156051a88c9239c9def47983", + ], +) + +rpm( + name = "libeconf-0__0.6.2-4.el10.s390x", + sha256 = "eb314cc56ffe80a641f97664b4d5a7313e3be7f1bef79e6636bcaab5751b350f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libeconf-0.6.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/eb314cc56ffe80a641f97664b4d5a7313e3be7f1bef79e6636bcaab5751b350f", + ], +) + +rpm( + name = "libeconf-0__0.6.2-4.el10.x86_64", + sha256 = "1cdb8e5bf4d7680e41ebb2b76da3aab34c1ece4bba2fed952d8f49da69117dfa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libeconf-0.6.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1cdb8e5bf4d7680e41ebb2b76da3aab34c1ece4bba2fed952d8f49da69117dfa", + ], +) + +rpm( + name = "libevent-0__2.1.12-16.el10.aarch64", + sha256 = "275530b6896bec203e5cdf0cb427c78da43f5b01d3d26b0a2b239f2ad49fcda2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libevent-2.1.12-16.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/275530b6896bec203e5cdf0cb427c78da43f5b01d3d26b0a2b239f2ad49fcda2", + ], +) + +rpm( + name = "libevent-0__2.1.12-16.el10.s390x", + sha256 = "11e041d07e9f2f30736efa420ed437e11676bc796914f22c7b3fc322f08e997a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libevent-2.1.12-16.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/11e041d07e9f2f30736efa420ed437e11676bc796914f22c7b3fc322f08e997a", + ], +) + +rpm( + name = "libevent-0__2.1.12-16.el10.x86_64", + sha256 = "f8f5c3946bbd53590978e9aeca3064d81ab580492c4ff8044c48797870276f47", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libevent-2.1.12-16.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f8f5c3946bbd53590978e9aeca3064d81ab580492c4ff8044c48797870276f47", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.aarch64", + sha256 = "abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libevent-2.1.12-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.s390x", + sha256 = "5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libevent-2.1.12-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.x86_64", + sha256 = "5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libevent-2.1.12-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-21.el9.x86_64", + sha256 = "9a594c51e3bf09cb5016485ee2f143de6db960ff1c7e135c0097f59fa51b2edb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libfdisk-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9a594c51e3bf09cb5016485ee2f143de6db960ff1c7e135c0097f59fa51b2edb", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-25.el9.aarch64", + sha256 = "d724b6dd4dc886b1d598edc24d30ebb06dfc675252073e04838c56d0ed18e173", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libfdisk-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d724b6dd4dc886b1d598edc24d30ebb06dfc675252073e04838c56d0ed18e173", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-25.el9.s390x", + sha256 = "7584b9f892c5378bfa976d40c1e02e5a9ee058fd09ee14658aa13b1ab3448b6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libfdisk-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7584b9f892c5378bfa976d40c1e02e5a9ee058fd09ee14658aa13b1ab3448b6b", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-25.el9.x86_64", + sha256 = "57e990f6940ce2caed0d9578838549576535ad83f93ffc97df3bcbaf1ae72567", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libfdisk-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/57e990f6940ce2caed0d9578838549576535ad83f93ffc97df3bcbaf1ae72567", + ], +) + +rpm( + name = "libfdisk-0__2.40.2-18.el10.aarch64", + sha256 = "6551849727350c641fe821f772e5777bd8422db3403a54fbcd66c7b03896371f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libfdisk-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libfdisk-0__2.40.2-18.el10.s390x", + sha256 = "35bac963613af20328d16c8051c7bd86a147ac2570c01ab516e4c325b6db52c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libfdisk-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libfdisk-0__2.40.2-18.el10.x86_64", + sha256 = "48fc0ae109cf63e1fdef4ef81839e6a817ce07567e2631d22f6c057795e25b93", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libfdisk-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.aarch64", + sha256 = "19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libfdt-1.6.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.s390x", + sha256 = "fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libfdt-1.6.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.x86_64", + sha256 = "a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfdt-1.6.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + ], +) + +rpm( + name = "libfdt-0__1.7.0-12.el10.aarch64", + sha256 = "2a568810d2b8fbd8425eeb64738491a514feaec766f1b90d320caf320e543134", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libfdt-1.7.0-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2a568810d2b8fbd8425eeb64738491a514feaec766f1b90d320caf320e543134", + ], +) + +rpm( + name = "libfdt-0__1.7.0-12.el10.s390x", + sha256 = "bd49a0dac4411aca4319b6dc670e0fab0fb9672eaedd83aab40452878fbe46ac", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libfdt-1.7.0-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bd49a0dac4411aca4319b6dc670e0fab0fb9672eaedd83aab40452878fbe46ac", + ], +) + +rpm( + name = "libfdt-0__1.7.0-12.el10.x86_64", + sha256 = "9c519693ffe97be0dda3e06ea9708446b2692b5fd72b8cfb93f0b78ddc6418d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libfdt-1.7.0-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9c519693ffe97be0dda3e06ea9708446b2692b5fd72b8cfb93f0b78ddc6418d5", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.aarch64", + sha256 = "da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libffi-3.4.2-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.s390x", + sha256 = "25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libffi-3.4.2-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.x86_64", + sha256 = "110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libffi-3.4.2-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + ], +) + +rpm( + name = "libffi-0__3.4.4-10.el10.aarch64", + sha256 = "87b620ad4069f0a9623913acc568a2659bcee3695293b275a9f09b809437bf6e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libffi-3.4.4-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/87b620ad4069f0a9623913acc568a2659bcee3695293b275a9f09b809437bf6e", + ], +) + +rpm( + name = "libffi-0__3.4.4-10.el10.s390x", + sha256 = "592be60a3f4ee70236cc254894f587012ce533a6f4fc74031bf6674792782338", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libffi-3.4.4-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/592be60a3f4ee70236cc254894f587012ce533a6f4fc74031bf6674792782338", + ], +) + +rpm( + name = "libffi-0__3.4.4-10.el10.x86_64", + sha256 = "72aff2f3b4291f5418491e612be4f92d65a9239224a4906c0c63dbc4fc668e73", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libffi-3.4.4-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/72aff2f3b4291f5418491e612be4f92d65a9239224a4906c0c63dbc4fc668e73", + ], +) + +rpm( + name = "libfido2-0__1.14.0-7.el10.aarch64", + sha256 = "8ac9963cf2e29f6450213363a9f963747e185cbab7b9d472d0cd275768139d4a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libfido2-1.14.0-7.el10.aarch64.rpm", + ], +) + +rpm( + name = "libfido2-0__1.14.0-7.el10.s390x", + sha256 = "3ff583eaa691f84cb0f3f4b49b7454880f2aca54db749a2532c03d0f361de529", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libfido2-1.14.0-7.el10.s390x.rpm", + ], +) + +rpm( + name = "libfido2-0__1.14.0-7.el10.x86_64", + sha256 = "5652d77a1394ba80ece520e817832224a03b693d172b7b32587d0fc502419bdd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libfido2-1.14.0-7.el10.x86_64.rpm", + ], +) + +rpm( + name = "libgcc-0__11.5.0-14.el9.aarch64", + sha256 = "ed0598c9cb4f10406c662d17ac2367eeba1e207683953410146927bba3d92c46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcc-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ed0598c9cb4f10406c662d17ac2367eeba1e207683953410146927bba3d92c46", + ], +) + +rpm( + name = "libgcc-0__11.5.0-14.el9.s390x", + sha256 = "6ccddf8ec532ddc49d7b857ad46cb5404efc30a1ba2d4af575db77c402efdb8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcc-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6ccddf8ec532ddc49d7b857ad46cb5404efc30a1ba2d4af575db77c402efdb8e", + ], +) + +rpm( + name = "libgcc-0__11.5.0-14.el9.x86_64", + sha256 = "8e9b2f611466e02703348bfd7fbdc40035898c804dcc417b920d6ad77bf077e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e9b2f611466e02703348bfd7fbdc40035898c804dcc417b920d6ad77bf077e9", + ], +) + +rpm( + name = "libgcc-0__11.5.0-5.el9.x86_64", + sha256 = "442c065a815212ac21760ff9f0bd93e9f5d5972925d9e987a421cbf6ebba41d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/442c065a815212ac21760ff9f0bd93e9f5d5972925d9e987a421cbf6ebba41d2", + ], +) + +rpm( + name = "libgcc-0__14.3.1-4.4.el10.aarch64", + sha256 = "0f93f59846c59092b90d4170499f7b4c61de30c2b359cf853f4251dc09c7629e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libgcc-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libgcc-0__14.3.1-4.4.el10.s390x", + sha256 = "bbbc0d0e0ca942e402d9ab30b693566e596ce4b6a404f2e2c9f3d9e5fcb56924", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgcc-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libgcc-0__14.3.1-4.4.el10.x86_64", + sha256 = "ffbc36198762cf0ea31e129109744f85fbc9b708faf5a34201e9d4c54c9a1422", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgcc-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.aarch64", + sha256 = "932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcrypt-1.10.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.s390x", + sha256 = "cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcrypt-1.10.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.x86_64", + sha256 = "0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcrypt-1.10.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + ], +) + +rpm( + name = "libgcrypt-0__1.11.0-6.el10.s390x", + sha256 = "b4383e8187d076c47b732487866eeebc0e40c1474e0dd6d927dfca6172cb274f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgcrypt-1.11.0-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4383e8187d076c47b732487866eeebc0e40c1474e0dd6d927dfca6172cb274f", + ], +) + +rpm( + name = "libgcrypt-0__1.11.0-6.el10.x86_64", + sha256 = "1be7cfbc9f69f9e2b3d3f0621e14ded96e27d1c334decb5c88d1e396edf825e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgcrypt-1.11.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1be7cfbc9f69f9e2b3d3f0621e14ded96e27d1c334decb5c88d1e396edf825e2", + ], +) + +rpm( + name = "libgomp-0__11.5.0-14.el9.aarch64", + sha256 = "24d684550fda70ed7eaf592393f78249fb8b0f4879793cdcd36e08c7b9af4ff5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgomp-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/24d684550fda70ed7eaf592393f78249fb8b0f4879793cdcd36e08c7b9af4ff5", + ], +) + +rpm( + name = "libgomp-0__11.5.0-14.el9.s390x", + sha256 = "39a911cdfa8dfbef686c9f2ba74f17b0abafe30ef99f93cae00e3cd1d8d0571a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgomp-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/39a911cdfa8dfbef686c9f2ba74f17b0abafe30ef99f93cae00e3cd1d8d0571a", + ], +) + +rpm( + name = "libgomp-0__11.5.0-14.el9.x86_64", + sha256 = "a2b750f8588cfb3d4caefea5f25a8585ed732775ab20dd243531ec136c21476d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2b750f8588cfb3d4caefea5f25a8585ed732775ab20dd243531ec136c21476d", + ], +) + +rpm( + name = "libgomp-0__11.5.0-5.el9.x86_64", + sha256 = "0158d5640d1f4b3841b681fa26a17361c56d7b1231e64eb163e3d75155913053", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0158d5640d1f4b3841b681fa26a17361c56d7b1231e64eb163e3d75155913053", + ], +) + +rpm( + name = "libgomp-0__14.3.1-4.4.el10.aarch64", + sha256 = "63c5829dbcc69c44de060cee7ee1f8a68c93d81107808f7b6941642b52694e3c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libgomp-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libgomp-0__14.3.1-4.4.el10.s390x", + sha256 = "a9e15dd3591b45f9c71bac57a880f9e2edee06842ff475e67d27469dbb7b573c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgomp-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libgomp-0__14.3.1-4.4.el10.x86_64", + sha256 = "6f9e43fe4ff233974a5f9405c8ee5535b6999e2214cab947f57250133816c6a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgomp-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.aarch64", + sha256 = "ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgpg-error-1.42-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.s390x", + sha256 = "655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgpg-error-1.42-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.x86_64", + sha256 = "a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgpg-error-1.42-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + ], +) + +rpm( + name = "libgpg-error-0__1.50-2.el10.s390x", + sha256 = "d2ae277868010dcf3003a59234b70743f2ff0846e0f8aba6cf349de19d6c2173", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgpg-error-1.50-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2ae277868010dcf3003a59234b70743f2ff0846e0f8aba6cf349de19d6c2173", + ], +) + +rpm( + name = "libgpg-error-0__1.50-2.el10.x86_64", + sha256 = "b7d74c79f82abf581fdb5b9fbd0b3792640c26780652036be284347b7b339fff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgpg-error-1.50-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b7d74c79f82abf581fdb5b9fbd0b3792640c26780652036be284347b7b339fff", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-3.el9.x86_64", + sha256 = "1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86", + urls = ["https://storage.googleapis.com/builddeps/1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86"], +) + +rpm( + name = "libguestfs-1__1.54.0-9.el9.s390x", + sha256 = "612deb549f07c32689421856afa195f003ec9fb2ac9161dfa8b4f631348cdaef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libguestfs-1.54.0-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/612deb549f07c32689421856afa195f003ec9fb2ac9161dfa8b4f631348cdaef", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-9.el9.x86_64", + sha256 = "262f8449b469e08285e008ac903a02da4587560e3c3c11f695f0abc4870ee627", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libguestfs-1.54.0-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/262f8449b469e08285e008ac903a02da4587560e3c3c11f695f0abc4870ee627", + ], +) + +rpm( + name = "libguestfs-1__1.58.1-2.el10.s390x", + sha256 = "5546a48cbc10fe6dac94e219d9458be67cfb047a60482e4429987461a4f7ee71", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libguestfs-1.58.1-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5546a48cbc10fe6dac94e219d9458be67cfb047a60482e4429987461a4f7ee71", + ], +) + +rpm( + name = "libguestfs-1__1.58.1-2.el10.x86_64", + sha256 = "9e258c41aeb346fd4e37d13a3346f89c9a5d1354586da91567a948e520da78bd", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libguestfs-1.58.1-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9e258c41aeb346fd4e37d13a3346f89c9a5d1354586da91567a948e520da78bd", + ], +) + +rpm( + name = "libibverbs-0__54.0-1.el9.x86_64", + sha256 = "b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + ], +) + +rpm( + name = "libibverbs-0__61.0-1.el10.aarch64", + sha256 = "b0dc731c64d219ff6c9a34e9342d1b20c5989329a8ccf4ec1ddce2e73e907aad", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libibverbs-61.0-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libibverbs-0__61.0-1.el10.s390x", + sha256 = "380ef8d3445d73c8024d54eced9c2128ed7e09be1ef27c6351de878ad2103b39", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libibverbs-61.0-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libibverbs-0__61.0-1.el10.x86_64", + sha256 = "88dca8a716e29a92ebc90427d331c3039e3f333d4977a008a3359f1ea07f61cc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libibverbs-61.0-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libibverbs-0__61.0-2.el9.aarch64", + sha256 = "ef89a4e7bb3dcaf8967b83b97b8f8f2820a7ab9d6e1a042c3babe316b10f91ee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libibverbs-61.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ef89a4e7bb3dcaf8967b83b97b8f8f2820a7ab9d6e1a042c3babe316b10f91ee", + ], +) + +rpm( + name = "libibverbs-0__61.0-2.el9.s390x", + sha256 = "a515a7d9cea9d8d82ef327460795cd7fe41299684ae1e514e7fb3015db0f8ac8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libibverbs-61.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a515a7d9cea9d8d82ef327460795cd7fe41299684ae1e514e7fb3015db0f8ac8", + ], +) + +rpm( + name = "libibverbs-0__61.0-2.el9.x86_64", + sha256 = "f28e91c9e94d8a9dc0e418be86422c261d1018d6bae88ae66b51f1cce57c23c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-61.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f28e91c9e94d8a9dc0e418be86422c261d1018d6bae88ae66b51f1cce57c23c4", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.aarch64", + sha256 = "6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libidn2-2.3.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.s390x", + sha256 = "716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libidn2-2.3.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.x86_64", + sha256 = "f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libidn2-2.3.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + ], +) + +rpm( + name = "libidn2-0__2.3.7-3.el10.aarch64", + sha256 = "947248aeedd08f88d9490f3020dee6416595cf8d25e15738c306d55e9cae8bfc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libidn2-2.3.7-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/947248aeedd08f88d9490f3020dee6416595cf8d25e15738c306d55e9cae8bfc", + ], +) + +rpm( + name = "libidn2-0__2.3.7-3.el10.s390x", + sha256 = "7d75542211c9b7b8e53aaf6aee0dc430f091414fb2ca755baadc35f844bded75", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libidn2-2.3.7-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7d75542211c9b7b8e53aaf6aee0dc430f091414fb2ca755baadc35f844bded75", + ], +) + +rpm( + name = "libidn2-0__2.3.7-3.el10.x86_64", + sha256 = "04ae61bbe2cc0db7581d6f96a562b9b87a8a4dba714a0cf2c73bba6306e94c27", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libidn2-2.3.7-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/04ae61bbe2cc0db7581d6f96a562b9b87a8a4dba714a0cf2c73bba6306e94c27", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.aarch64", + sha256 = "1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisoburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.s390x", + sha256 = "0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisoburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.x86_64", + sha256 = "ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisoburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + ], +) + +rpm( + name = "libisoburn-0__1.5.6-6.el10.aarch64", + sha256 = "038aa1a45c117b4c4abbeedc3f67faa01a66570bc554f0e53955ce83a26e7281", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libisoburn-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/038aa1a45c117b4c4abbeedc3f67faa01a66570bc554f0e53955ce83a26e7281", + ], +) + +rpm( + name = "libisoburn-0__1.5.6-6.el10.s390x", + sha256 = "52fa5b55814330bf00ce834de3fa86c0dff29691feb242800f04cc13c44f2f3a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libisoburn-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/52fa5b55814330bf00ce834de3fa86c0dff29691feb242800f04cc13c44f2f3a", + ], +) + +rpm( + name = "libisoburn-0__1.5.6-6.el10.x86_64", + sha256 = "6f41c5e8e0d9dedf3c0b07f2ddc0748870cb18ed15a23dc22038a022c1d38e74", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libisoburn-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6f41c5e8e0d9dedf3c0b07f2ddc0748870cb18ed15a23dc22038a022c1d38e74", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.aarch64", + sha256 = "0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisofs-1.5.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.s390x", + sha256 = "d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisofs-1.5.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.x86_64", + sha256 = "78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisofs-1.5.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + ], +) + +rpm( + name = "libisofs-0__1.5.6-6.el10.aarch64", + sha256 = "cacea726d7dd126a364ec2431f49417b884287c84664042d51d59011acac34d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libisofs-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cacea726d7dd126a364ec2431f49417b884287c84664042d51d59011acac34d6", + ], +) + +rpm( + name = "libisofs-0__1.5.6-6.el10.s390x", + sha256 = "655af71fa634d1bb1c86b6c4810c452c98c1772dc9d55da3e3e9f2413bafc293", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libisofs-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/655af71fa634d1bb1c86b6c4810c452c98c1772dc9d55da3e3e9f2413bafc293", + ], +) + +rpm( + name = "libisofs-0__1.5.6-6.el10.x86_64", + sha256 = "a61eda57352e86657ca99fc774d0d74c0fbd67dad5bcd02139ff6de466a038ac", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libisofs-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a61eda57352e86657ca99fc774d0d74c0fbd67dad5bcd02139ff6de466a038ac", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.s390x", + sha256 = "10e17f1f886f90259f915e855389f3e3852fddd52be35110ebe0d0f4b9b4f51a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libksba-1.5.1-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/10e17f1f886f90259f915e855389f3e3852fddd52be35110ebe0d0f4b9b4f51a", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.x86_64", + sha256 = "8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libksba-1.5.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + ], +) + +rpm( + name = "libksba-0__1.6.7-2.el10.s390x", + sha256 = "f4a0e294968ce54ad30e4de5baabcdebd7a9db7900266e4feb7cadecd7f18cba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libksba-1.6.7-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f4a0e294968ce54ad30e4de5baabcdebd7a9db7900266e4feb7cadecd7f18cba", + ], +) + +rpm( + name = "libksba-0__1.6.7-2.el10.x86_64", + sha256 = "2bfa8330ad9c63eaecd2bd1d0989625e812d853a85c505cb759a2d1c06750607", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libksba-1.6.7-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2bfa8330ad9c63eaecd2bd1d0989625e812d853a85c505cb759a2d1c06750607", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.aarch64", + sha256 = "c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmnl-1.0.4-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.s390x", + sha256 = "344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmnl-1.0.4-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.x86_64", + sha256 = "e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmnl-1.0.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + ], +) + +rpm( + name = "libmnl-0__1.0.5-7.el10.aarch64", + sha256 = "786a9caea9de8f4529e5ec07ac24c9cfccd50ee5f4b045c37dbd4eb074b34f34", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libmnl-1.0.5-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/786a9caea9de8f4529e5ec07ac24c9cfccd50ee5f4b045c37dbd4eb074b34f34", + ], +) + +rpm( + name = "libmnl-0__1.0.5-7.el10.s390x", + sha256 = "bb6229f5c62e69828f94cd16f0086115e17ea9c9ab831ad14781f9b9807cd3d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libmnl-1.0.5-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bb6229f5c62e69828f94cd16f0086115e17ea9c9ab831ad14781f9b9807cd3d8", + ], +) + +rpm( + name = "libmnl-0__1.0.5-7.el10.x86_64", + sha256 = "1e1d36725d958fc3f9016cc85b238bf5462a43ae7be144d0a4a72be0982d68ce", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libmnl-1.0.5-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1e1d36725d958fc3f9016cc85b238bf5462a43ae7be144d0a4a72be0982d68ce", + ], +) + +rpm( + name = "libmount-0__2.37.4-21.el9.x86_64", + sha256 = "d8bfc70d1a9a594569c8c95bda682804a20bb4ee602db3efa7b6e76d289ecc66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmount-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8bfc70d1a9a594569c8c95bda682804a20bb4ee602db3efa7b6e76d289ecc66", + ], +) + +rpm( + name = "libmount-0__2.37.4-25.el9.aarch64", + sha256 = "903e1c5a61a57eafa8b68d5d23b1288cae061b65fdd4a942933cf8862ee4b1e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmount-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/903e1c5a61a57eafa8b68d5d23b1288cae061b65fdd4a942933cf8862ee4b1e3", + ], +) + +rpm( + name = "libmount-0__2.37.4-25.el9.s390x", + sha256 = "e4f81986fd3609aeaf6099697a7aebcd72dc96f160ee79c3dc2e8c8c5f1df10b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmount-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e4f81986fd3609aeaf6099697a7aebcd72dc96f160ee79c3dc2e8c8c5f1df10b", + ], +) + +rpm( + name = "libmount-0__2.37.4-25.el9.x86_64", + sha256 = "ffb1ab2134b59539b097ce4a3c5287c61d2d4a626f512dbb93036d90ce2d755a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmount-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ffb1ab2134b59539b097ce4a3c5287c61d2d4a626f512dbb93036d90ce2d755a", + ], +) + +rpm( + name = "libmount-0__2.40.2-18.el10.aarch64", + sha256 = "d69eef12863a3d4151fb962d6b21e266b2d002f61361a4796068396ecb596c1e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libmount-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libmount-0__2.40.2-18.el10.s390x", + sha256 = "7f9ce4256596ae04bf08ecef2dd139e8955c1938889b49d332b93e225346bd1f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libmount-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libmount-0__2.40.2-18.el10.x86_64", + sha256 = "01c23ccc522521ddac819e2b8089320f1e8cfdfbdc36ea6b7688f0065bd4f427", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libmount-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.aarch64", + sha256 = "489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libmpc-1.2.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.s390x", + sha256 = "3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libmpc-1.2.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.x86_64", + sha256 = "207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmpc-1.2.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + ], +) + +rpm( + name = "libmpc-0__1.3.1-7.el10.aarch64", + sha256 = "bb46a7465559a26c085bf1c02f0764332430a6c1b8fb3f08c8cee184e3d1f02a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libmpc-1.3.1-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bb46a7465559a26c085bf1c02f0764332430a6c1b8fb3f08c8cee184e3d1f02a", + ], +) + +rpm( + name = "libmpc-0__1.3.1-7.el10.s390x", + sha256 = "ad956e3c217ba500101acb4219f4e07390ca5ac8a14f99ca9cca85220b525da1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libmpc-1.3.1-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ad956e3c217ba500101acb4219f4e07390ca5ac8a14f99ca9cca85220b525da1", + ], +) + +rpm( + name = "libmpc-0__1.3.1-7.el10.x86_64", + sha256 = "daaa73a35dfe21a8201581e333b79ccd296ae87a93f9796ba522e58edc23777c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libmpc-1.3.1-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/daaa73a35dfe21a8201581e333b79ccd296ae87a93f9796ba522e58edc23777c", + ], +) + +rpm( + name = "libnbd-0__1.20.3-1.el9.x86_64", + sha256 = "4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.aarch64", + sha256 = "7c9bb6872b93d95b2a2bf729793b50848cde216089293010197471146d23d9a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libnbd-1.20.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7c9bb6872b93d95b2a2bf729793b50848cde216089293010197471146d23d9a4", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.s390x", + sha256 = "d73945914b3ea835369f64416cf111fcf527775d70e35109f2a270763328e6ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libnbd-1.20.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d73945914b3ea835369f64416cf111fcf527775d70e35109f2a270763328e6ce", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.x86_64", + sha256 = "d74d51b389dcf44bd2e10e76085dc41db925debee2ce33b721c554a9dd1f40af", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d74d51b389dcf44bd2e10e76085dc41db925debee2ce33b721c554a9dd1f40af", + ], +) + +rpm( + name = "libnbd-0__1.24.1-1.el10.aarch64", + sha256 = "0c10ff0bfd22ba853ab4d21287afa51791a9ce1302176ff63d502d38d7334277", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libnbd-1.24.1-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnbd-0__1.24.1-1.el10.s390x", + sha256 = "223da7e9c0b17ca7b0a831d7222b38247d801aa282463e110ca25142fcc2b075", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libnbd-1.24.1-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libnbd-0__1.24.1-1.el10.x86_64", + sha256 = "9bd98e418aa33430c4c576c8ae13c5141e64960a21a7fcd4ea13ed0eee5ddda4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libnbd-1.24.1-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnbd-devel-0__1.20.3-4.el9.aarch64", + sha256 = "cb38d0fc674e15a84caa1606fdb7430ba3c0e61bfc2a7dd3a9719ff82dfa920f", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libnbd-devel-1.20.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cb38d0fc674e15a84caa1606fdb7430ba3c0e61bfc2a7dd3a9719ff82dfa920f", + ], +) + +rpm( + name = "libnbd-devel-0__1.20.3-4.el9.s390x", + sha256 = "3289f3e0c7d6f290c79faca35a80b3b3170941bdd478468d339c692c3e35c882", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libnbd-devel-1.20.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3289f3e0c7d6f290c79faca35a80b3b3170941bdd478468d339c692c3e35c882", + ], +) + +rpm( + name = "libnbd-devel-0__1.20.3-4.el9.x86_64", + sha256 = "88dbe3a521391c371075dc20f70de464004ea8d3bca120f5fa8fdd66ef244847", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libnbd-devel-1.20.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/88dbe3a521391c371075dc20f70de464004ea8d3bca120f5fa8fdd66ef244847", + ], +) + +rpm( + name = "libnbd-devel-0__1.24.1-1.el10.aarch64", + sha256 = "f4e05d53cf0e8c6d062aa0deda4704eff44160025ed8ad75a382fe1582a99f51", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/libnbd-devel-1.24.1-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnbd-devel-0__1.24.1-1.el10.s390x", + sha256 = "93b7164eda1d37d47cc19f75b942cb9054c02efd4c0d5813933a3a0fcbef00db", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/libnbd-devel-1.24.1-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libnbd-devel-0__1.24.1-1.el10.x86_64", + sha256 = "dd4d89a9a64d82e468bd9686cc420d4266294f358a6ac3d267d136fa341a4f77", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/libnbd-devel-1.24.1-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.aarch64", + sha256 = "6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.s390x", + sha256 = "803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.x86_64", + sha256 = "f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-12.el10.aarch64", + sha256 = "53c1b45e66ef040f6486052395cfda198d9b8b3058834ae7e8b7864b04f9c766", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.9-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/53c1b45e66ef040f6486052395cfda198d9b8b3058834ae7e8b7864b04f9c766", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-12.el10.s390x", + sha256 = "f7f15dc88c380db9cbf6e62c1a04b872867d7f5a4f2cc0b2f9988db963d8401d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnetfilter_conntrack-1.0.9-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7f15dc88c380db9cbf6e62c1a04b872867d7f5a4f2cc0b2f9988db963d8401d", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-12.el10.x86_64", + sha256 = "71af0b9fb8b790e3d471a74ef463dc3cbb0267c9bdbaf876160fa9821f63200f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.9-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/71af0b9fb8b790e3d471a74ef463dc3cbb0267c9bdbaf876160fa9821f63200f", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.aarch64", + sha256 = "8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.1-23.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.s390x", + sha256 = "1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnfnetlink-1.0.1-23.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.x86_64", + sha256 = "c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.2-3.el10.aarch64", + sha256 = "0ac9c6ebd2c5652bea632435fd73bfb36785d2f15eb840ca53049d6bb3abe639", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.2-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0ac9c6ebd2c5652bea632435fd73bfb36785d2f15eb840ca53049d6bb3abe639", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.2-3.el10.s390x", + sha256 = "433915ab5525daf404ae37d47f1f735d257a33ff8a2565741e3449d5b39b0cab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnfnetlink-1.0.2-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/433915ab5525daf404ae37d47f1f735d257a33ff8a2565741e3449d5b39b0cab", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.2-3.el10.x86_64", + sha256 = "2988f90762058160e4071b79b96523901a2170bc6242488878ce51fbc0d871ca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.2-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2988f90762058160e4071b79b96523901a2170bc6242488878ce51fbc0d871ca", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.aarch64", + sha256 = "59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnftnl-1.2.6-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.s390x", + sha256 = "1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnftnl-1.2.6-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.x86_64", + sha256 = "45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnftnl-1.2.6-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + ], +) + +rpm( + name = "libnftnl-0__1.3.0-3.el10.aarch64", + sha256 = "d5467150ed76b14237d86554566ef07c0025d59f0ebc34348b503cc823784c80", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnftnl-1.3.0-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnftnl-0__1.3.0-3.el10.s390x", + sha256 = "b7f11ace02687c972f83c414b2a7a9e9a58979fa4630f4aae50608c686145a54", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnftnl-1.3.0-3.el10.s390x.rpm", + ], +) + +rpm( + name = "libnftnl-0__1.3.0-3.el10.x86_64", + sha256 = "4721d71306d4330cac0868ea25e2f0dfd816fc3c3e618c91212eb9a854322e60", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnftnl-1.3.0-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.aarch64", + sha256 = "b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnghttp2-1.43.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.s390x", + sha256 = "6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnghttp2-1.43.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.x86_64", + sha256 = "fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnghttp2-1.43.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + ], +) + +rpm( + name = "libnghttp2-0__1.68.0-3.el10.aarch64", + sha256 = "149d789b9369351d2494ef2b6575f9bb872c3d7d70ce7bbf286be9a4e6eceeff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnghttp2-1.68.0-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnghttp2-0__1.68.0-3.el10.s390x", + sha256 = "52f87178a4126738bb4fe1437ceb45dc182d60221b18f48750b8f96cda847362", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnghttp2-1.68.0-3.el10.s390x.rpm", + ], +) + +rpm( + name = "libnghttp2-0__1.68.0-3.el10.x86_64", + sha256 = "fafe027fa1052db01ce62d95321d61f102d7dd53bb790e69fec4136f3052134b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnghttp2-1.68.0-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el10.aarch64", + sha256 = "b27497d441cd6ae6fbf6a077913eff334c64ace7b6030d6c11a221316a8c8d92", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnl3-3.11.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b27497d441cd6ae6fbf6a077913eff334c64ace7b6030d6c11a221316a8c8d92", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el10.s390x", + sha256 = "4171ef398ec29504e828c461581fa44e6afe6b36ff84da66f902edd932271b34", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnl3-3.11.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4171ef398ec29504e828c461581fa44e6afe6b36ff84da66f902edd932271b34", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el10.x86_64", + sha256 = "886324f9d4b8c95a46d5c77c0f5cd90051c83462e78ca752c70cc709f5a01d90", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnl3-3.11.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/886324f9d4b8c95a46d5c77c0f5cd90051c83462e78ca752c70cc709f5a01d90", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.aarch64", + sha256 = "931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnl3-3.11.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.s390x", + sha256 = "af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnl3-3.11.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.x86_64", + sha256 = "8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnl3-3.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.s390x", + sha256 = "f7704e01f4ab1315cf32f5e2f8d2bb33411e403fdbd4398ea1d76eb4f90550a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libosinfo-1.10.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7704e01f4ab1315cf32f5e2f8d2bb33411e403fdbd4398ea1d76eb4f90550a1", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.x86_64", + sha256 = "ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libosinfo-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + ], +) + +rpm( + name = "libosinfo-0__1.11.0-8.el10.s390x", + sha256 = "3ae1d93313b6b63d6cf2887307a539e9a371d64134ad7a363d5b31c64ee2734d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libosinfo-1.11.0-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3ae1d93313b6b63d6cf2887307a539e9a371d64134ad7a363d5b31c64ee2734d", + ], +) + +rpm( + name = "libosinfo-0__1.11.0-8.el10.x86_64", + sha256 = "e632610473056869e88ddaa33511e043721d89f8c2216590a274e638f64e98fa", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libosinfo-1.11.0-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e632610473056869e88ddaa33511e043721d89f8c2216590a274e638f64e98fa", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.aarch64", + sha256 = "c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpcap-1.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.s390x", + sha256 = "ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpcap-1.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.x86_64", + sha256 = "c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpcap-1.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + ], +) + +rpm( + name = "libpcap-14__1.10.4-7.el10.aarch64", + sha256 = "f15a71822ba8269643911bdd5455e2c24c2489927217d3512c9453a6ff8af5bf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpcap-1.10.4-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f15a71822ba8269643911bdd5455e2c24c2489927217d3512c9453a6ff8af5bf", + ], +) + +rpm( + name = "libpcap-14__1.10.4-7.el10.s390x", + sha256 = "98f721f0b8b731a77d27bcb3178c7297e84372095a452ab52a98192c76953d3f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpcap-1.10.4-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/98f721f0b8b731a77d27bcb3178c7297e84372095a452ab52a98192c76953d3f", + ], +) + +rpm( + name = "libpcap-14__1.10.4-7.el10.x86_64", + sha256 = "a933eb7fba1535c9df52f7e44504535b25f8b6fb79c5cf68a0b6e80eb4b9dbf8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpcap-1.10.4-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a933eb7fba1535c9df52f7e44504535b25f8b6fb79c5cf68a0b6e80eb4b9dbf8", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.s390x", + sha256 = "56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + ], +) + +rpm( + name = "libpkgconf-0__2.1.0-3.el10.aarch64", + sha256 = "fc2db71a801f4cd03425463d0aea745da36837f25d8cc2042eb747c8a336f989", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpkgconf-2.1.0-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fc2db71a801f4cd03425463d0aea745da36837f25d8cc2042eb747c8a336f989", + ], +) + +rpm( + name = "libpkgconf-0__2.1.0-3.el10.s390x", + sha256 = "7d503fcdd8154231531ec1e076ac2552b9d0a5fe096fb50d3a9ff0ebce07d92d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpkgconf-2.1.0-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7d503fcdd8154231531ec1e076ac2552b9d0a5fe096fb50d3a9ff0ebce07d92d", + ], +) + +rpm( + name = "libpkgconf-0__2.1.0-3.el10.x86_64", + sha256 = "813f59114413d5e14fc566262ee3d4b56b621beacbe40eda6f28d31f464de1a6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpkgconf-2.1.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/813f59114413d5e14fc566262ee3d4b56b621beacbe40eda6f28d31f464de1a6", + ], +) + +rpm( + name = "libpmem-0__1.12.1-1.el9.x86_64", + sha256 = "5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpmem-1.12.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.x86_64", + sha256 = "b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpng-1.6.37-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + ], +) + +rpm( + name = "libpng-2__1.6.37-14.el9.aarch64", + sha256 = "f9cf4691ea7d887c5d4a6b2a023a4694dab5d25af3f76039f2e6fb4c7e5957f9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpng-1.6.37-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f9cf4691ea7d887c5d4a6b2a023a4694dab5d25af3f76039f2e6fb4c7e5957f9", + ], +) + +rpm( + name = "libpng-2__1.6.37-14.el9.s390x", + sha256 = "5b6206be72368b174de554c7642ad01559abf0f7c48419dfd25eea67e8bd360f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libpng-1.6.37-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5b6206be72368b174de554c7642ad01559abf0f7c48419dfd25eea67e8bd360f", + ], +) + +rpm( + name = "libpng-2__1.6.37-14.el9.x86_64", + sha256 = "5511df7ac4a309e37955e0bf2b7d9a96c50101ceb9afd2c5a2ab6d441d1bd173", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpng-1.6.37-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5511df7ac4a309e37955e0bf2b7d9a96c50101ceb9afd2c5a2ab6d441d1bd173", + ], +) + +rpm( + name = "libpng-2__1.6.40-10.el10.aarch64", + sha256 = "ea33f09d919a0c0c9e315d3b593f9c8d1712b2e21472a32d0a27fbd2864ce053", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpng-1.6.40-10.el10.aarch64.rpm", + ], +) + +rpm( + name = "libpng-2__1.6.40-10.el10.s390x", + sha256 = "0707c714c3ab7ed02bfa9b3be03a148beeb80b0d687403ba96676b36f1d06d31", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libpng-1.6.40-10.el10.s390x.rpm", + ], +) + +rpm( + name = "libpng-2__1.6.40-10.el10.x86_64", + sha256 = "c11442c5ceb92c6965906e48a85da7a9bd365d1844dbf3067c559d0eb292ece6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpng-1.6.40-10.el10.x86_64.rpm", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.s390x", + sha256 = "1ce49253ec771fbeefb6fa26ae07707fe0039e7f393cf24845d88f2453b7c116", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libproxy-0.4.15-35.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1ce49253ec771fbeefb6fa26ae07707fe0039e7f393cf24845d88f2453b7c116", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.x86_64", + sha256 = "0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libproxy-0.4.15-35.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.s390x", + sha256 = "d54f8e3050d403352fe6afcf6aa34838017b2d56026625ea29f5307fc2ce173c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpsl-0.21.1-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d54f8e3050d403352fe6afcf6aa34838017b2d56026625ea29f5307fc2ce173c", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.x86_64", + sha256 = "42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpsl-0.21.1-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + ], +) + +rpm( + name = "libpsl-0__0.21.5-6.el10.s390x", + sha256 = "ef89d923a60bc9658e5524a80960a865d805aa136b7dd3761a162d58b2aff46d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpsl-0.21.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ef89d923a60bc9658e5524a80960a865d805aa136b7dd3761a162d58b2aff46d", + ], +) + +rpm( + name = "libpsl-0__0.21.5-6.el10.x86_64", + sha256 = "1dca94a85aabd9730bc731fa8a6abb138fec28b75c6a39694d862135c2ade0f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpsl-0.21.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1dca94a85aabd9730bc731fa8a6abb138fec28b75c6a39694d862135c2ade0f3", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.aarch64", + sha256 = "3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpwquality-1.4.4-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.s390x", + sha256 = "b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpwquality-1.4.4-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.x86_64", + sha256 = "93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + ], +) + +rpm( + name = "libpwquality-0__1.4.5-12.el10.aarch64", + sha256 = "0d0d6a0e741f94889796b551935f72cf551587067f0c9b64531b5c34b03ab1d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpwquality-1.4.5-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0d0d6a0e741f94889796b551935f72cf551587067f0c9b64531b5c34b03ab1d8", + ], +) + +rpm( + name = "libpwquality-0__1.4.5-12.el10.s390x", + sha256 = "bff94322487bd0bd36640c27e56d7b0167187772cab630758bc56aada0038aea", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpwquality-1.4.5-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bff94322487bd0bd36640c27e56d7b0167187772cab630758bc56aada0038aea", + ], +) + +rpm( + name = "libpwquality-0__1.4.5-12.el10.x86_64", + sha256 = "eda9e6acc99c2c9fa058a9db428da1b0c7441f2be174b9aa7f1628359e36e6ab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpwquality-1.4.5-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eda9e6acc99c2c9fa058a9db428da1b0c7441f2be174b9aa7f1628359e36e6ab", + ], +) + +rpm( + name = "librdmacm-0__54.0-1.el9.x86_64", + sha256 = "82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + ], +) + +rpm( + name = "librdmacm-0__61.0-2.el9.aarch64", + sha256 = "f02fbb25e313058137f32a3d20b7da2421c1cbc6cb35991158b0c400b970db3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/librdmacm-61.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f02fbb25e313058137f32a3d20b7da2421c1cbc6cb35991158b0c400b970db3a", + ], +) + +rpm( + name = "librdmacm-0__61.0-2.el9.x86_64", + sha256 = "b3ec91b7db56ab47cbdd3a8bd80a19e450a84f098aef29bedb082f198f4e17c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-61.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b3ec91b7db56ab47cbdd3a8bd80a19e450a84f098aef29bedb082f198f4e17c1", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.aarch64", + sha256 = "ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libseccomp-2.5.2-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.s390x", + sha256 = "1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libseccomp-2.5.2-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.x86_64", + sha256 = "d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libseccomp-2.5.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + ], +) + +rpm( + name = "libseccomp-0__2.5.6-1.el10.aarch64", + sha256 = "322aa4ea140a63645c7f086b58a08346617eea2efee8044287b76373d633b65f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libseccomp-2.5.6-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/322aa4ea140a63645c7f086b58a08346617eea2efee8044287b76373d633b65f", + ], +) + +rpm( + name = "libseccomp-0__2.5.6-1.el10.s390x", + sha256 = "e652de14f8c0d52480c2bba779daf5da7b7fd66e65090e1781f41d3bee250840", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libseccomp-2.5.6-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/e652de14f8c0d52480c2bba779daf5da7b7fd66e65090e1781f41d3bee250840", + ], +) + +rpm( + name = "libseccomp-0__2.5.6-1.el10.x86_64", + sha256 = "654051862cc301ed43501ab36b687ed5adeb3ca57689f54a80bf760ad9686e54", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libseccomp-2.5.6-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/654051862cc301ed43501ab36b687ed5adeb3ca57689f54a80bf760ad9686e54", + ], +) + +rpm( + name = "libselinux-0__3.10-1.el10.aarch64", + sha256 = "225f1d0267da0839f21e8f845fb9bf872f829e599a315351fd47a977567ea363", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libselinux-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libselinux-0__3.10-1.el10.s390x", + sha256 = "f3e96be14d13e9cad47ee8e2e1e7c1ec6a2fb3e480e743c2c17ed2418e5634c3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libselinux-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libselinux-0__3.10-1.el10.x86_64", + sha256 = "8fa9d21f1d9bbe179e527d42954d13b25dd4942c0a2a684aad19e5d8cab35cbd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libselinux-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.aarch64", + sha256 = "42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.s390x", + sha256 = "16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.x86_64", + sha256 = "79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + ], +) + +rpm( + name = "libselinux-utils-0__3.10-1.el10.aarch64", + sha256 = "13ae3185d4d7b48f7d64c0244df6a7a85b45a3995c23b289db8b441e12163366", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libselinux-utils-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libselinux-utils-0__3.10-1.el10.s390x", + sha256 = "b6843b431f0b9567cff7716d84c4216059341fe765e580e62c1f60e71242e5af", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libselinux-utils-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libselinux-utils-0__3.10-1.el10.x86_64", + sha256 = "6d2ea032523a605212d9b5e559e59d08e6da7510047ff8007555aa479d2ad440", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libselinux-utils-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.aarch64", + sha256 = "5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-utils-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.s390x", + sha256 = "05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-utils-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.x86_64", + sha256 = "f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-utils-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + ], +) + +rpm( + name = "libsemanage-0__3.10-1.el10.aarch64", + sha256 = "1bcf6028098bf2fbb99b9aa822f1ba67f8701fbdab080ce47ff3b9964f6e20fd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsemanage-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libsemanage-0__3.10-1.el10.s390x", + sha256 = "f9796dbdb7ede125766680a5f32df1a325d8f5a749df6e9bf0e660c5aaa74778", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsemanage-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libsemanage-0__3.10-1.el10.x86_64", + sha256 = "3f5fabb9a3e0d90c3d94d4340eece1afe1311209ea8d25b94e1e75cc129b7020", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsemanage-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.aarch64", + sha256 = "f5402c7056dc92ea2e52ad436c6eece8c18040ac77141e5f0ffe01eea209dfe7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsemanage-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f5402c7056dc92ea2e52ad436c6eece8c18040ac77141e5f0ffe01eea209dfe7", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.s390x", + sha256 = "888a4ef687c43c03324bfe3c5815810d48322478cd966b4bcb1d237a16b3a0b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsemanage-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/888a4ef687c43c03324bfe3c5815810d48322478cd966b4bcb1d237a16b3a0b0", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.x86_64", + sha256 = "3dcf6e7f2779434d9dc7aef0065c3a2977792170264a60d4324f6625bb9cd69a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsemanage-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3dcf6e7f2779434d9dc7aef0065c3a2977792170264a60d4324f6625bb9cd69a", + ], +) + +rpm( + name = "libsepol-0__3.10-1.el10.aarch64", + sha256 = "f62ef4b2712f4e4f6372d531d08106738add4b97d0394df64184a425a233904f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsepol-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libsepol-0__3.10-1.el10.s390x", + sha256 = "1af3b302cd2f14ba9020e3be0061dd3e0d6167460898a29bc8d68a4f320209f9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsepol-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libsepol-0__3.10-1.el10.x86_64", + sha256 = "cf9df5a3fbd190dd5401233ef65d283a17a5b4194555ec1cf2dde3a7f029426d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsepol-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libsepol-0__3.6-2.el9.x86_64", + sha256 = "7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.aarch64", + sha256 = "2cd63ed497af8a202c79790b04362ba224b50ec7c377abb21901160e4000e07d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsepol-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2cd63ed497af8a202c79790b04362ba224b50ec7c377abb21901160e4000e07d", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.s390x", + sha256 = "c1246f8553c2aec3ca86721f8bd77fab4f4fcd22527bb6a6e494b4046ee17461", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsepol-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c1246f8553c2aec3ca86721f8bd77fab4f4fcd22527bb6a6e494b4046ee17461", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.x86_64", + sha256 = "6d3d16c3121ccf989f8a123812e524cb1fc098fb01ec9f1c6327544e85aaf84d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6d3d16c3121ccf989f8a123812e524cb1fc098fb01ec9f1c6327544e85aaf84d", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.aarch64", + sha256 = "097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsigsegv-2.13-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.s390x", + sha256 = "730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsigsegv-2.13-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.x86_64", + sha256 = "931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsigsegv-2.13-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.aarch64", + sha256 = "52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libslirp-4.4.0-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.s390x", + sha256 = "d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libslirp-4.4.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.x86_64", + sha256 = "aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libslirp-4.4.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + ], +) + +rpm( + name = "libslirp-0__4.7.0-10.el10.aarch64", + sha256 = "077e56fc67d139c2569bdd6b920777df742773a155425b11401406aac39f4e7b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libslirp-4.7.0-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/077e56fc67d139c2569bdd6b920777df742773a155425b11401406aac39f4e7b", + ], +) + +rpm( + name = "libslirp-0__4.7.0-10.el10.s390x", + sha256 = "392067b3525f2d603a121d6a2b7e5683c7a903a7be677ffc94fe2f1b278d3a11", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libslirp-4.7.0-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/392067b3525f2d603a121d6a2b7e5683c7a903a7be677ffc94fe2f1b278d3a11", + ], +) + +rpm( + name = "libslirp-0__4.7.0-10.el10.x86_64", + sha256 = "bc98bf4c15d226b809474c1237700e4e3158d77c4b7488611599672ac0b570af", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libslirp-4.7.0-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc98bf4c15d226b809474c1237700e4e3158d77c4b7488611599672ac0b570af", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-21.el9.x86_64", + sha256 = "30e2a071ad6f1939f14fc89c827d61ccb28a6cbf6e443db39e8019a18c7e18d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30e2a071ad6f1939f14fc89c827d61ccb28a6cbf6e443db39e8019a18c7e18d4", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-25.el9.aarch64", + sha256 = "a6c8e44ec15936163ca5075ede209fe4f4ec96a2b8656b517962f4db3f082951", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsmartcols-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a6c8e44ec15936163ca5075ede209fe4f4ec96a2b8656b517962f4db3f082951", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-25.el9.s390x", + sha256 = "b9f7f3209532892849db09656f9c2ccffbdda7c60fe1a0cc0c32d9efaeaf065e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsmartcols-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b9f7f3209532892849db09656f9c2ccffbdda7c60fe1a0cc0c32d9efaeaf065e", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-25.el9.x86_64", + sha256 = "d3cc89b398cd94f8ead47a313ce1988b1b887b065842368b6a994559bca02b28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d3cc89b398cd94f8ead47a313ce1988b1b887b065842368b6a994559bca02b28", + ], +) + +rpm( + name = "libsmartcols-0__2.40.2-18.el10.aarch64", + sha256 = "0b19da51c225a5ce0278e21481412f550e134bb174931a7b342f0a3de78ab352", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsmartcols-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libsmartcols-0__2.40.2-18.el10.s390x", + sha256 = "fa932b57f128095c93ea36564e9cf1d2a25936cfb49accb8f370a215f8b58c44", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsmartcols-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libsmartcols-0__2.40.2-18.el10.x86_64", + sha256 = "d2114b2301e7adefb36bc8cf1afa4619778e66f293b7d34fb8c37c9621c5d4a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.s390x", + sha256 = "5c157ebfd258aaa833701f0e48d2a8e54064d5e9fbcdae9f4e426ef84efa1a75", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libsoup-2.72.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c157ebfd258aaa833701f0e48d2a8e54064d5e9fbcdae9f4e426ef84efa1a75", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.x86_64", + sha256 = "e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsoup-2.72.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + ], +) + +rpm( + name = "libsoup3-0__3.6.5-5.el10.s390x", + sha256 = "eb1082bb8403619c3ce9352feab119dd27eaf3e10417d7968c0342c0269d6272", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libsoup3-3.6.5-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/eb1082bb8403619c3ce9352feab119dd27eaf3e10417d7968c0342c0269d6272", + ], +) + +rpm( + name = "libsoup3-0__3.6.5-5.el10.x86_64", + sha256 = "38b4b20b159ae75afc780d10b1f212a2337a750e42c9183b071f5164a6cdfeac", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libsoup3-3.6.5-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/38b4b20b159ae75afc780d10b1f212a2337a750e42c9183b071f5164a6cdfeac", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.aarch64", + sha256 = "52ba79e72eb6feef925cd94e1989b879750a33a5f926cc48f576368211799796", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libss-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52ba79e72eb6feef925cd94e1989b879750a33a5f926cc48f576368211799796", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.s390x", + sha256 = "95a10e09d72daebb2cdae054cadd8e9ef3c3689dade4236723e8e69fdd674d3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libss-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/95a10e09d72daebb2cdae054cadd8e9ef3c3689dade4236723e8e69fdd674d3a", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.x86_64", + sha256 = "095ae726757b2e9a0c17f4391b9667210c84f4fa72dbd65f006db78e47f3915d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libss-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/095ae726757b2e9a0c17f4391b9667210c84f4fa72dbd65f006db78e47f3915d", + ], +) + +rpm( + name = "libss-0__1.47.1-5.el10.aarch64", + sha256 = "edb0a7af06913af8ce5a72ab62de780b8b08ad7a7db6cabc4bae9b95d4253607", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libss-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/edb0a7af06913af8ce5a72ab62de780b8b08ad7a7db6cabc4bae9b95d4253607", + ], +) + +rpm( + name = "libss-0__1.47.1-5.el10.s390x", + sha256 = "1a38ebb62511e39bae10e1cbde35152562e90d8014f243696bed5c3deef6bf9f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libss-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a38ebb62511e39bae10e1cbde35152562e90d8014f243696bed5c3deef6bf9f", + ], +) + +rpm( + name = "libss-0__1.47.1-5.el10.x86_64", + sha256 = "2dea843b06f0bd161807d8cfd7e3ef05f5944f5ea57332e5b58700bd93262765", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libss-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2dea843b06f0bd161807d8cfd7e3ef05f5944f5ea57332e5b58700bd93262765", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.x86_64", + sha256 = "08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-0.10.4-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + ], +) + +rpm( + name = "libssh-0__0.10.4-17.el9.aarch64", + sha256 = "420be5bba5c7c331c5c93d0c9b5a5bc26f7fcee99156e0e2ad0fbd21556c325f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-0.10.4-17.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/420be5bba5c7c331c5c93d0c9b5a5bc26f7fcee99156e0e2ad0fbd21556c325f", + ], +) + +rpm( + name = "libssh-0__0.10.4-17.el9.s390x", + sha256 = "6e1fb62c5a61b432f7e18255677155a9de94241c18bff17786a001c8776aec1c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-0.10.4-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6e1fb62c5a61b432f7e18255677155a9de94241c18bff17786a001c8776aec1c", + ], +) + +rpm( + name = "libssh-0__0.10.4-17.el9.x86_64", + sha256 = "5bcf6ec9ec3cd108791fcb93d95c71209e1080598b5e6f45b9371a43e0b4519f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-0.10.4-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5bcf6ec9ec3cd108791fcb93d95c71209e1080598b5e6f45b9371a43e0b4519f", + ], +) + +rpm( + name = "libssh-0__0.12.0-2.el10.aarch64", + sha256 = "3c3d290af7c115d4021a7181e762dcfe9b877f86283cdf0ae84a6a89870ba391", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libssh-0.12.0-2.el10.aarch64.rpm", + ], +) + +rpm( + name = "libssh-0__0.12.0-2.el10.s390x", + sha256 = "94a3568a4e8767a31ca1e199c6c7ec8a8557a2e7373994247963753f1acc6b51", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libssh-0.12.0-2.el10.s390x.rpm", + ], +) + +rpm( + name = "libssh-0__0.12.0-2.el10.x86_64", + sha256 = "4fff653207041b86cb0aaf4d8617e1768a71674bc4aedf848617cb509a5fe867", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libssh-0.12.0-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.x86_64", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-17.el9.aarch64", + sha256 = "ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-config-0.10.4-17.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-17.el9.s390x", + sha256 = "ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-config-0.10.4-17.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-17.el9.x86_64", + sha256 = "ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-config-0.10.4-17.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + ], +) + +rpm( + name = "libssh-config-0__0.12.0-2.el10.aarch64", + sha256 = "0f026e18f36d57bb55567368920420a28f5f7384612fa0348d154241f4171b42", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libssh-config-0.12.0-2.el10.noarch.rpm", + ], +) + +rpm( + name = "libssh-config-0__0.12.0-2.el10.s390x", + sha256 = "0f026e18f36d57bb55567368920420a28f5f7384612fa0348d154241f4171b42", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libssh-config-0.12.0-2.el10.noarch.rpm", + ], +) + +rpm( + name = "libssh-config-0__0.12.0-2.el10.x86_64", + sha256 = "0f026e18f36d57bb55567368920420a28f5f7384612fa0348d154241f4171b42", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libssh-config-0.12.0-2.el10.noarch.rpm", + ], +) + +rpm( + name = "libsss_idmap-0__2.12.0-1.el10.aarch64", + sha256 = "5d56064a3fe65a8eb6b9e02b239587bc9a3e132a947d836c5edf4f02d538fd03", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsss_idmap-2.12.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5d56064a3fe65a8eb6b9e02b239587bc9a3e132a947d836c5edf4f02d538fd03", + ], +) + +rpm( + name = "libsss_idmap-0__2.12.0-1.el10.s390x", + sha256 = "573803676a86b4f7d8ed234ce70c8a40412249a4bdbd8256c4fac09fb52eb2c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsss_idmap-2.12.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/573803676a86b4f7d8ed234ce70c8a40412249a4bdbd8256c4fac09fb52eb2c9", + ], +) + +rpm( + name = "libsss_idmap-0__2.12.0-1.el10.x86_64", + sha256 = "fbfda0b5f6b73eb4b75196370ea91361afb736e08212f291f6c5328ecab401de", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsss_idmap-2.12.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fbfda0b5f6b73eb4b75196370ea91361afb736e08212f291f6c5328ecab401de", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.8-1.el9.aarch64", + sha256 = "638b417e5c726de5fc158c03e0d67c9573a862d307660ec2954fb96285b86075", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_idmap-2.9.8-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/638b417e5c726de5fc158c03e0d67c9573a862d307660ec2954fb96285b86075", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.8-1.el9.s390x", + sha256 = "8999405bd3fb1901922bcec02c450852c2e2b1ebe305e57c5afba15015408232", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_idmap-2.9.8-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8999405bd3fb1901922bcec02c450852c2e2b1ebe305e57c5afba15015408232", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.8-1.el9.x86_64", + sha256 = "9a29f5bfe5f444071eda063ad9de94b00b6e5a9e3227505ef1b8ea7d11970d6a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_idmap-2.9.8-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9a29f5bfe5f444071eda063ad9de94b00b6e5a9e3227505ef1b8ea7d11970d6a", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.12.0-1.el10.aarch64", + sha256 = "fff9355f09c72d9e9f6eddf6a9b5ae5d91d03d34c9e09acd4790af60ef7e2fb5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.12.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fff9355f09c72d9e9f6eddf6a9b5ae5d91d03d34c9e09acd4790af60ef7e2fb5", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.12.0-1.el10.s390x", + sha256 = "cd8c9d8edca4e2658839230d7afd66c8e5c52c782169eb1cd1354b8683f9d606", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsss_nss_idmap-2.12.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/cd8c9d8edca4e2658839230d7afd66c8e5c52c782169eb1cd1354b8683f9d606", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.12.0-1.el10.x86_64", + sha256 = "690e064654f7f3ede0eed89565408970258329a37580c61ee04872a64c489b32", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.12.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/690e064654f7f3ede0eed89565408970258329a37580c61ee04872a64c489b32", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.8-1.el9.aarch64", + sha256 = "53a48e97f56f0ffc1e2536494d5e4d18b4b904e6fda3e2969ac377549f5ec202", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.9.8-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/53a48e97f56f0ffc1e2536494d5e4d18b4b904e6fda3e2969ac377549f5ec202", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.8-1.el9.s390x", + sha256 = "29baa933285a2b20e7571e346ab7dc1e2a0cbf74045646ad984e8569a9a53e31", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_nss_idmap-2.9.8-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/29baa933285a2b20e7571e346ab7dc1e2a0cbf74045646ad984e8569a9a53e31", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.8-1.el9.x86_64", + sha256 = "d80957b223b2e6489d9da5148aada13a5e745765633fe07c3e3ce9e0ba7c7801", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.9.8-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d80957b223b2e6489d9da5148aada13a5e745765633fe07c3e3ce9e0ba7c7801", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-14.el9.aarch64", + sha256 = "ec5482f096781a16d55762e96be3f6b21ee2f714bc8e45327ea978ae87951cc0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libstdc++-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ec5482f096781a16d55762e96be3f6b21ee2f714bc8e45327ea978ae87951cc0", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-14.el9.s390x", + sha256 = "e31be1174ae46e9e9cc6bce09d4cfd47eb280f96ef68488d4f0acefb2661a7df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libstdc++-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e31be1174ae46e9e9cc6bce09d4cfd47eb280f96ef68488d4f0acefb2661a7df", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-14.el9.x86_64", + sha256 = "5b9119d93375d19b8ab140c359f9623de0fde1487fc1e930bfa29f54962ec448", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5b9119d93375d19b8ab140c359f9623de0fde1487fc1e930bfa29f54962ec448", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-5.el9.x86_64", + sha256 = "6628a0027a113c8687d0cd52ed5725ee6cb1ee2a02897349289d683fc6453223", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6628a0027a113c8687d0cd52ed5725ee6cb1ee2a02897349289d683fc6453223", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__14.3.1-4.4.el10.aarch64", + sha256 = "315a351328eee84276c8a8d955b815ec952a8644af3bd16e51fa38d3b48fa6a5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libstdc++-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x", + sha256 = "8fc9f5265996b38b2f60128c3c77372db20a9d86aeab260e6c6d391d4d5c478b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libstdc++-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64", + sha256 = "b218d06d603585ed9e29b5aae21ecaafa2619620fa56f5a8afb3a010252a32ba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libstdc++-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.aarch64", + sha256 = "7b99e8f1081ba2c511021b666b9f8176abb31168920e86c392cd45299f400b59", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtasn1-4.16.0-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b99e8f1081ba2c511021b666b9f8176abb31168920e86c392cd45299f400b59", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.s390x", + sha256 = "0ebbc12c3ae3f270efef2965bb77d6e806733eb07505ec7a33468f0fd72360bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtasn1-4.16.0-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0ebbc12c3ae3f270efef2965bb77d6e806733eb07505ec7a33468f0fd72360bd", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.x86_64", + sha256 = "addd155d4abc41529d7e8588f442e50a87db3a1314bd2162fbb4950d898a2e28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtasn1-4.16.0-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/addd155d4abc41529d7e8588f442e50a87db3a1314bd2162fbb4950d898a2e28", + ], +) + +rpm( + name = "libtasn1-0__4.20.0-1.el10.aarch64", + sha256 = "f46e93f5bff81ef89c872c2ad91ddde57c9ee0025d162647618ba5e764520854", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libtasn1-4.20.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f46e93f5bff81ef89c872c2ad91ddde57c9ee0025d162647618ba5e764520854", + ], +) + +rpm( + name = "libtasn1-0__4.20.0-1.el10.s390x", + sha256 = "1c866239a4d6d0198fb9916c5ae132f19ccc576cb389101270291e7c1b5e3f1d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libtasn1-4.20.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1c866239a4d6d0198fb9916c5ae132f19ccc576cb389101270291e7c1b5e3f1d", + ], +) + +rpm( + name = "libtasn1-0__4.20.0-1.el10.x86_64", + sha256 = "6f88995a1e9181e8d99b77b8cc60681f79ba424382a17e590c3d813f300adf65", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libtasn1-4.20.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6f88995a1e9181e8d99b77b8cc60681f79ba424382a17e590c3d813f300adf65", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.aarch64", + sha256 = "a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtirpc-1.3.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.s390x", + sha256 = "59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtirpc-1.3.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.x86_64", + sha256 = "b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtirpc-1.3.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + ], +) + +rpm( + name = "libtirpc-0__1.3.5-1.el10.aarch64", + sha256 = "6e0345c38ef8c15d2f1743892063241f0273a6b14c1844ab127ad0c085b510e1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libtirpc-1.3.5-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6e0345c38ef8c15d2f1743892063241f0273a6b14c1844ab127ad0c085b510e1", + ], +) + +rpm( + name = "libtirpc-0__1.3.5-1.el10.s390x", + sha256 = "5f6160af1ea75ef4df15281225e50e13d7de69aad58a7bc08d558ffb88c86086", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libtirpc-1.3.5-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5f6160af1ea75ef4df15281225e50e13d7de69aad58a7bc08d558ffb88c86086", + ], +) + +rpm( + name = "libtirpc-0__1.3.5-1.el10.x86_64", + sha256 = "8692d388ed8b7fa6ffe56c9403576ea7b49d55c305e9a64dd44a59fb592fe295", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libtirpc-1.3.5-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8692d388ed8b7fa6ffe56c9403576ea7b49d55c305e9a64dd44a59fb592fe295", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.s390x", + sha256 = "548a2de100fb988854c4e3e814314eb03c8645f7a6e9f658b61adbed81c8251e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtool-ltdl-2.4.6-46.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/548a2de100fb988854c4e3e814314eb03c8645f7a6e9f658b61adbed81c8251e", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.x86_64", + sha256 = "a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtool-ltdl-2.4.6-46.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el10.aarch64", + sha256 = "3c666376aabf7fa14a76232e8709a390587bcebfebb24897de6c7c693703fed0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libtpms-0.9.6-11.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3c666376aabf7fa14a76232e8709a390587bcebfebb24897de6c7c693703fed0", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el10.s390x", + sha256 = "55e810e2e6a3c8b166c1fa48a38e2430a2f3b1587014009f48b88fc17ba2f5c4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libtpms-0.9.6-11.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/55e810e2e6a3c8b166c1fa48a38e2430a2f3b1587014009f48b88fc17ba2f5c4", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el10.x86_64", + sha256 = "595a554e74b9e9515d2d615b05ed13118f4a9e0c21f1afc74bf5b4e677b56c9a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libtpms-0.9.6-11.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/595a554e74b9e9515d2d615b05ed13118f4a9e0c21f1afc74bf5b4e677b56c9a", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.aarch64", + sha256 = "299e63f64347c8738e7d86d0c3410362d98866d68617b0f6f9247295347d89f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libtpms-0.9.6-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/299e63f64347c8738e7d86d0c3410362d98866d68617b0f6f9247295347d89f2", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.s390x", + sha256 = "0ec765f3f074c28652b8aabb010d4e64b4d2b1cb254c25e893be2af828c98687", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libtpms-0.9.6-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0ec765f3f074c28652b8aabb010d4e64b4d2b1cb254c25e893be2af828c98687", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.x86_64", + sha256 = "e5863ebf4aad8570d7cd58a65b854de53df4ca366244bb65521c9fb96099f1da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtpms-0.9.6-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5863ebf4aad8570d7cd58a65b854de53df4ca366244bb65521c9fb96099f1da", + ], +) + +rpm( + name = "libubsan-0__11.5.0-14.el9.aarch64", + sha256 = "a4f09558c0e26c82b5ae7c51d5d97d1b5ef9f0f50159c43a946a9958842af31e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libubsan-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a4f09558c0e26c82b5ae7c51d5d97d1b5ef9f0f50159c43a946a9958842af31e", + ], +) + +rpm( + name = "libubsan-0__11.5.0-14.el9.s390x", + sha256 = "248f8ad998b8bd25e583f6e6437d7f6a9ca9b9d0c8be2e212ce98fa9d3e85f12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libubsan-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/248f8ad998b8bd25e583f6e6437d7f6a9ca9b9d0c8be2e212ce98fa9d3e85f12", + ], +) + +rpm( + name = "libubsan-0__14.3.1-4.4.el10.aarch64", + sha256 = "db7102b99ef2e935f97f0fbf9dff45076c0fd3fb44cce77ef33d17b07302083d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libubsan-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libubsan-0__14.3.1-4.4.el10.s390x", + sha256 = "79db4832af64077ba6546b8aa25dac7821f6292f65e8090df960eaa0648f5a80", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libubsan-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.aarch64", + sha256 = "09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libunistring-0.9.10-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.s390x", + sha256 = "029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libunistring-0.9.10-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.x86_64", + sha256 = "11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libunistring-0.9.10-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + ], +) + +rpm( + name = "libunistring-0__1.1-10.el10.aarch64", + sha256 = "aa793b61f51cb8727c37520bc4b261845831b9a5789649a798c4e8a2cc207f4f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libunistring-1.1-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/aa793b61f51cb8727c37520bc4b261845831b9a5789649a798c4e8a2cc207f4f", + ], +) + +rpm( + name = "libunistring-0__1.1-10.el10.s390x", + sha256 = "9c45ddec6ffa51201a570b9881e9277b8f22c8eb40ee62b45d3c2b86bdc8eeac", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libunistring-1.1-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/9c45ddec6ffa51201a570b9881e9277b8f22c8eb40ee62b45d3c2b86bdc8eeac", + ], +) + +rpm( + name = "libunistring-0__1.1-10.el10.x86_64", + sha256 = "603c06593a43f5766a53588d9ba18855ddb7b238963b8e09d8a328a17959b774", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libunistring-1.1-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/603c06593a43f5766a53588d9ba18855ddb7b238963b8e09d8a328a17959b774", + ], +) + +rpm( + name = "liburing-0__2.12-1.el10.aarch64", + sha256 = "29f16a2950ef7ddaae31d7806d98961bf1f7d1772623782ae45cc687a3980c62", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/liburing-2.12-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29f16a2950ef7ddaae31d7806d98961bf1f7d1772623782ae45cc687a3980c62", + ], +) + +rpm( + name = "liburing-0__2.12-1.el10.s390x", + sha256 = "53f3015878c4044a13caf8060a4afa6c10aff93452aa4b8de84cd2374d456a51", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/liburing-2.12-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/53f3015878c4044a13caf8060a4afa6c10aff93452aa4b8de84cd2374d456a51", + ], +) + +rpm( + name = "liburing-0__2.12-1.el10.x86_64", + sha256 = "133309fc854ab7859713d7944e5a14e8cbc3f3916bbcd9f9e6af4d4850424c15", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/liburing-2.12-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/133309fc854ab7859713d7944e5a14e8cbc3f3916bbcd9f9e6af4d4850424c15", + ], +) + +rpm( + name = "liburing-0__2.12-1.el9.aarch64", + sha256 = "7b99b8c28e8cf9a7d355231207e6151cc3b98cd722682359fff41737744d35d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/liburing-2.12-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b99b8c28e8cf9a7d355231207e6151cc3b98cd722682359fff41737744d35d0", + ], +) + +rpm( + name = "liburing-0__2.12-1.el9.s390x", + sha256 = "b259bcadc7623840495a33d9dabec62511a0f2133b731d070b59c5df60e8f7c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/liburing-2.12-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b259bcadc7623840495a33d9dabec62511a0f2133b731d070b59c5df60e8f7c6", + ], +) + +rpm( + name = "liburing-0__2.12-1.el9.x86_64", + sha256 = "49b44a2192b8a3f3184d0ca80c318aa9852dddda391b66e7c38c53f900a08ce4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/liburing-2.12-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/49b44a2192b8a3f3184d0ca80c318aa9852dddda391b66e7c38c53f900a08ce4", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.x86_64", + sha256 = "12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/liburing-2.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + ], +) + +rpm( + name = "libusb1-0__1.0.29-3.el10.aarch64", + sha256 = "e0d9019535c50ac90e39e158bcf1b4ef7796d30aff42be9183e7177165b40f90", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libusb1-1.0.29-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e0d9019535c50ac90e39e158bcf1b4ef7796d30aff42be9183e7177165b40f90", + ], +) + +rpm( + name = "libusb1-0__1.0.29-3.el10.s390x", + sha256 = "9071987b92f299616adeffc5e6b6e0fe4ec0cd1d7cd293cedeb5e06f17ee6a9a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libusb1-1.0.29-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/9071987b92f299616adeffc5e6b6e0fe4ec0cd1d7cd293cedeb5e06f17ee6a9a", + ], +) + +rpm( + name = "libusb1-0__1.0.29-3.el10.x86_64", + sha256 = "60b40b436504fe0b046ea990512936c916c7500f08aaf82e8ea886cb06ca5f53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libusb1-1.0.29-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/60b40b436504fe0b046ea990512936c916c7500f08aaf82e8ea886cb06ca5f53", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.aarch64", + sha256 = "f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libusbx-1.0.26-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.s390x", + sha256 = "d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libusbx-1.0.26-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.x86_64", + sha256 = "bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libusbx-1.0.26-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + ], +) + +rpm( + name = "libutempter-0__1.2.1-15.el10.aarch64", + sha256 = "6444bf715fdd137bd1bd096d9903e29516c609d41113139756df2e9316825d6a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libutempter-1.2.1-15.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6444bf715fdd137bd1bd096d9903e29516c609d41113139756df2e9316825d6a", + ], +) + +rpm( + name = "libutempter-0__1.2.1-15.el10.s390x", + sha256 = "1314f6b74597ad5a5a85b51f5243f3802d2f722a5ed5a41a3ebca827eb7d6a6f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libutempter-1.2.1-15.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1314f6b74597ad5a5a85b51f5243f3802d2f722a5ed5a41a3ebca827eb7d6a6f", + ], +) + +rpm( + name = "libutempter-0__1.2.1-15.el10.x86_64", + sha256 = "db498c4b6ce6f223597f8ea955fe4e286f4fc5838e81579de877ca0e80c2d6eb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libutempter-1.2.1-15.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/db498c4b6ce6f223597f8ea955fe4e286f4fc5838e81579de877ca0e80c2d6eb", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.aarch64", + sha256 = "65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libutempter-1.2.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.s390x", + sha256 = "6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libutempter-1.2.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.x86_64", + sha256 = "fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libutempter-1.2.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + ], +) + +rpm( + name = "libuuid-0__2.37.4-21.el9.x86_64", + sha256 = "be4793be5af11772206abe023746ec4021a8b7bc124fdc7e7cdb92b57c46d125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libuuid-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be4793be5af11772206abe023746ec4021a8b7bc124fdc7e7cdb92b57c46d125", + ], +) + +rpm( + name = "libuuid-0__2.37.4-25.el9.aarch64", + sha256 = "5e740b232a2ab7deb56916d28ef026f16e3d5d11bedc7ceaa7381717193b3836", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libuuid-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5e740b232a2ab7deb56916d28ef026f16e3d5d11bedc7ceaa7381717193b3836", + ], +) + +rpm( + name = "libuuid-0__2.37.4-25.el9.s390x", + sha256 = "608adf99d9ad76624ef9d526748b8f0e95cc682edbe16e11ac22561b690dc0cd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libuuid-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/608adf99d9ad76624ef9d526748b8f0e95cc682edbe16e11ac22561b690dc0cd", + ], +) + +rpm( + name = "libuuid-0__2.37.4-25.el9.x86_64", + sha256 = "2305b6ddfd73d94cee66c8071d6ec30f7bd7e91792d76628b008c0d919e0c75e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libuuid-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2305b6ddfd73d94cee66c8071d6ec30f7bd7e91792d76628b008c0d919e0c75e", + ], +) + +rpm( + name = "libuuid-0__2.40.2-18.el10.aarch64", + sha256 = "eec5b782deaecda8d60ce24809e67b0b5d89f60a8d5c2de4fdb5fff2d7ba35b7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libuuid-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libuuid-0__2.40.2-18.el10.s390x", + sha256 = "d748a28468e628ed81b727ca96ac230378b6c70c100349451ebe888e6d88d5fc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libuuid-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libuuid-0__2.40.2-18.el10.x86_64", + sha256 = "82148fa02d6d8fae7809b8a5e03acddf2a23d8e0f6363fbe8a5e1b434b843cff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libuuid-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libverto-0__0.3.2-10.el10.aarch64", + sha256 = "0583db7823a8f33a1e09db1e4aa389c10bc98b58de3bd985b6f67be5351d814a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libverto-0.3.2-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0583db7823a8f33a1e09db1e4aa389c10bc98b58de3bd985b6f67be5351d814a", + ], +) + +rpm( + name = "libverto-0__0.3.2-10.el10.s390x", + sha256 = "80757eae2999d4dbc8975747eb4d8fdfb64b144826ba58215672a0f34d313228", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libverto-0.3.2-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/80757eae2999d4dbc8975747eb4d8fdfb64b144826ba58215672a0f34d313228", + ], +) + +rpm( + name = "libverto-0__0.3.2-10.el10.x86_64", + sha256 = "52777e532dc2351c83b72b5033c40df20494afb6504100f7413a65f74368c284", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libverto-0.3.2-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/52777e532dc2351c83b72b5033c40df20494afb6504100f7413a65f74368c284", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.aarch64", + sha256 = "1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libverto-0.3.2-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.s390x", + sha256 = "3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libverto-0.3.2-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.x86_64", + sha256 = "c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libverto-0.3.2-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + ], +) + +rpm( + name = "libvirt-client-0__11.10.0-4.el10.aarch64", + sha256 = "4c05f497b2faf1527211b60d3772b9fea720f03ac26bffe2ee9d38aa1c715ce4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-client-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-client-0__11.10.0-4.el10.s390x", + sha256 = "4d2baf90ed93b4708f72ebff5df384be9490044d206990c4f4dbe12dd01c4b4b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-client-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-client-0__11.10.0-4.el10.x86_64", + sha256 = "48c49b704b24a882f034b1dcf9faf74298e51401991dfec269823475a3f1bf07", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-client-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-client-0__11.9.0-1.el9.aarch64", + sha256 = "cbdd67bf9c4cc0c3d962c56b352d228901e8a833934f82eae835d9f2a8a49398", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-client-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cbdd67bf9c4cc0c3d962c56b352d228901e8a833934f82eae835d9f2a8a49398", + ], +) + +rpm( + name = "libvirt-client-0__11.9.0-1.el9.s390x", + sha256 = "99b00a3251310318b35e01ee502a1ddb24d1a3e8fc777b51d5b45fa0f7130a75", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-client-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/99b00a3251310318b35e01ee502a1ddb24d1a3e8fc777b51d5b45fa0f7130a75", + ], +) + +rpm( + name = "libvirt-client-0__11.9.0-1.el9.x86_64", + sha256 = "86a5c27f9b4f446760465836ed354761de714a6b08a75d2ea7a7c706a331ab86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-client-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/86a5c27f9b4f446760465836ed354761de714a6b08a75d2ea7a7c706a331ab86", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-7.el9.x86_64", + sha256 = "ce303675dd62e81a3d946c15e2938373be0988d9d64e62e620ef846a98be87af", + urls = ["https://storage.googleapis.com/builddeps/ce303675dd62e81a3d946c15e2938373be0988d9d64e62e620ef846a98be87af"], +) + +rpm( + name = "libvirt-daemon-common-0__11.10.0-4.el10.aarch64", + sha256 = "677f36668c0e5cac8a8425054c5d136194b5cc61781a5a9c08e5f4d401f89bc1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-daemon-common-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.10.0-4.el10.s390x", + sha256 = "5c44b4d1185db40077551f0cfe30827b7fa4a40225c27e8b007a8cbe849ddd8b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-common-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.10.0-4.el10.x86_64", + sha256 = "3f686ca53e62e80bca34d189e3a7589dacacba65e116faaa758c51047bb33f4f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-common-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.9.0-1.el9.aarch64", + sha256 = "e55036abe63905c336e4ab2a81ecb49c98ce83397dab4ed3a177487ba13e7fb4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-common-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e55036abe63905c336e4ab2a81ecb49c98ce83397dab4ed3a177487ba13e7fb4", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.9.0-1.el9.s390x", + sha256 = "957cdeb3a3e0708cc01912ce5c2eaadb01970b43f4fb29bed70768d79eb159a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-common-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/957cdeb3a3e0708cc01912ce5c2eaadb01970b43f4fb29bed70768d79eb159a4", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.9.0-1.el9.x86_64", + sha256 = "bc470fd7f29bb48410c65f12500681d27ee3adbc73e59cc7dd9fbb45a3ead2de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-common-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc470fd7f29bb48410c65f12500681d27ee3adbc73e59cc7dd9fbb45a3ead2de", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-7.el9.x86_64", + sha256 = "13031a6b2bae44c50808b89b820e47879ef6b7884e21e2a0c0e8aba52accd0b1", + urls = ["https://storage.googleapis.com/builddeps/13031a6b2bae44c50808b89b820e47879ef6b7884e21e2a0c0e8aba52accd0b1"], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.10.0-4.el10.aarch64", + sha256 = "3a5c8ef45f7896d7053c92e797fc66942468e7c1d6250bbfea2cb60809400add", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-daemon-driver-qemu-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.10.0-4.el10.s390x", + sha256 = "cd0845cace051f6a4a87fa57120a96de535c7725c673dce9c7f858c1cc15aaa8", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-qemu-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.10.0-4.el10.x86_64", + sha256 = "cc0c643b2070610bdbec7f23c7451e19a2baa18d5d589e53389c4ef8d2e97d92", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-qemu-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.9.0-1.el9.aarch64", + sha256 = "19fa15b5fd2bec4cfd6470e9595320be9c2c01ea5320a4dc4f2b3df1be87c5b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-driver-qemu-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19fa15b5fd2bec4cfd6470e9595320be9c2c01ea5320a4dc4f2b3df1be87c5b0", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.9.0-1.el9.s390x", + sha256 = "431c2264ae9b0cb79110f04586f7004222235050cf22989330a619dbefa7d71b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-qemu-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/431c2264ae9b0cb79110f04586f7004222235050cf22989330a619dbefa7d71b", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.9.0-1.el9.x86_64", + sha256 = "fc357ad81e321752e136a0252bf93fcc4c51705fdad5fe152e8b458c1bd7c804", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-qemu-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fc357ad81e321752e136a0252bf93fcc4c51705fdad5fe152e8b458c1bd7c804", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__10.10.0-7.el9.x86_64", + sha256 = "8d6d2229cde16e57787fd0125ca75dca31d89008446ff344d577ef3eaefcd0f3", + urls = ["https://storage.googleapis.com/builddeps/8d6d2229cde16e57787fd0125ca75dca31d89008446ff344d577ef3eaefcd0f3"], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.10.0-4.el10.s390x", + sha256 = "d257e7f382fd2bcf1007116183caa2e1ddb680ad2867c778112d53caeda1c324", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-secret-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.10.0-4.el10.x86_64", + sha256 = "008ec042342fb4d63fe3c27ab89e4a533285ac00ec11dcffa7d1c2f4e50bb356", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-secret-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.9.0-1.el9.s390x", + sha256 = "63920895b3ff60a8203e684f1bb1c0eab39f18c97ccd88b12e1de800f5894ca6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-secret-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/63920895b3ff60a8203e684f1bb1c0eab39f18c97ccd88b12e1de800f5894ca6", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.9.0-1.el9.x86_64", + sha256 = "9f7ad76f1918935dd25157f6f37930706b81449392e6bb720db1b4e7f9df9619", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-secret-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9f7ad76f1918935dd25157f6f37930706b81449392e6bb720db1b4e7f9df9619", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__10.10.0-7.el9.x86_64", + sha256 = "a95615f05b0ca4349c571b5a25c2e7151ae7a2d6e7205b5e5c3be26c89a98067", + urls = ["https://storage.googleapis.com/builddeps/a95615f05b0ca4349c571b5a25c2e7151ae7a2d6e7205b5e5c3be26c89a98067"], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.s390x", + sha256 = "e237f8b650e604ea58b35695ef7250f9c32d27081eb9081f446b938e8632c42b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-storage-core-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.x86_64", + sha256 = "3fe4d761cbe82fc8c7db6043b282529533473a113b45f88c4aa13355bc9f4b9f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-storage-core-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.s390x", + sha256 = "30e35bd1454accdcd90c255d660ce1e7e724329e70a424dee078de3d66547ebe", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-storage-core-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/30e35bd1454accdcd90c255d660ce1e7e724329e70a424dee078de3d66547ebe", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.x86_64", + sha256 = "9066ad1b758b950809a2761abc99ee8d96aab03d9150f24c3038f61e76180e32", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-storage-core-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9066ad1b758b950809a2761abc99ee8d96aab03d9150f24c3038f61e76180e32", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-7.el9.x86_64", + sha256 = "7fa94e83fcae83614c5c4c95a92f4cb3f0065d8971f4a4025c9fd262e68cddff", + urls = ["https://storage.googleapis.com/builddeps/7fa94e83fcae83614c5c4c95a92f4cb3f0065d8971f4a4025c9fd262e68cddff"], +) + +rpm( + name = "libvirt-daemon-log-0__11.10.0-4.el10.aarch64", + sha256 = "37bcf091904af712adc8cbd158b99029264d4e72013c1cdc30429b2aed95d278", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-daemon-log-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.10.0-4.el10.s390x", + sha256 = "e4373dea00854c968dd23c25a834787579aacd8541bac140a64ba86ffdc6117b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-log-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.10.0-4.el10.x86_64", + sha256 = "5ab4233af33887cac2cfb40a3190a8874ffaf6e32b05f1cd750bbf374ff14023", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-log-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.9.0-1.el9.aarch64", + sha256 = "a4fd6a282bf09969d6e11f2a7a68577d9c87fc529e5af76c64a94c0683f88bb7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-log-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a4fd6a282bf09969d6e11f2a7a68577d9c87fc529e5af76c64a94c0683f88bb7", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.9.0-1.el9.s390x", + sha256 = "49f189f5704b1e2b02333bb72954854659b00753eb1941931f672d3d647b9b35", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-log-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/49f189f5704b1e2b02333bb72954854659b00753eb1941931f672d3d647b9b35", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.9.0-1.el9.x86_64", + sha256 = "4e499cd2d4331c986b80249cabbbfa5c991b2a98ae301ff539a5ca201301400b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-log-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4e499cd2d4331c986b80249cabbbfa5c991b2a98ae301ff539a5ca201301400b", + ], +) + +rpm( + name = "libvirt-devel-0__11.10.0-4.el10.aarch64", + sha256 = "d1453ff4ae60dc4b1347590ea9d430e1b6309134c0a2a04144eac4abde1792a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/libvirt-devel-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-devel-0__11.10.0-4.el10.s390x", + sha256 = "7d0f7f4f0a5f46796f24ca556665c76c3210487a7940181618f4499af1936d46", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/libvirt-devel-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-devel-0__11.10.0-4.el10.x86_64", + sha256 = "651811e137f348e4c0dc18012fe119a2410e8cfa6e88a3758486ef378246a605", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/libvirt-devel-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-devel-0__11.9.0-1.el9.aarch64", + sha256 = "b4e5f496902c96280d2717b215e2365759c5e535210af6a8c0b7847e1c912be7", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libvirt-devel-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b4e5f496902c96280d2717b215e2365759c5e535210af6a8c0b7847e1c912be7", + ], +) + +rpm( + name = "libvirt-devel-0__11.9.0-1.el9.s390x", + sha256 = "3043bd36232c9625aba61c805307d557f7c05c19bb25169b1798aa09ef97f351", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libvirt-devel-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3043bd36232c9625aba61c805307d557f7c05c19bb25169b1798aa09ef97f351", + ], +) + +rpm( + name = "libvirt-devel-0__11.9.0-1.el9.x86_64", + sha256 = "37a170292e19a69bbbfcae3197a226dce84be287f4b5a53037880835b03c0d85", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libvirt-devel-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/37a170292e19a69bbbfcae3197a226dce84be287f4b5a53037880835b03c0d85", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-7.el9.x86_64", + sha256 = "72e64da467f4afbff2c96b6e46c779fa3abfaba2ddaf85ad0de6087c3d5ccc39", + urls = ["https://storage.googleapis.com/builddeps/72e64da467f4afbff2c96b6e46c779fa3abfaba2ddaf85ad0de6087c3d5ccc39"], +) + +rpm( + name = "libvirt-libs-0__11.10.0-4.el10.aarch64", + sha256 = "b3409350a0917743e019fb4bad9c9a1268829404772ebffe0f3b0d7eddfc1326", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-libs-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-libs-0__11.10.0-4.el10.s390x", + sha256 = "5e0f33b641cad02eb7a4a5bb1b934d39d0d13f918fdecaad0199ae03364f2079", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-libs-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-libs-0__11.10.0-4.el10.x86_64", + sha256 = "9eee6b008dc0fb35237bdd4e2f4e0bb4555369d11a3adfc3d9e684590b4f0d7d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-libs-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-libs-0__11.9.0-1.el9.aarch64", + sha256 = "5c189b32115edc2a71f73ab70e1964272ec6ee08d3c259c5104486683bc6d301", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-libs-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5c189b32115edc2a71f73ab70e1964272ec6ee08d3c259c5104486683bc6d301", + ], +) + +rpm( + name = "libvirt-libs-0__11.9.0-1.el9.s390x", + sha256 = "f87768c7ac75945faddeefdbcd3c560eb4f72cc26ed09720df2b0438d20e3770", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-libs-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f87768c7ac75945faddeefdbcd3c560eb4f72cc26ed09720df2b0438d20e3770", + ], +) + +rpm( + name = "libvirt-libs-0__11.9.0-1.el9.x86_64", + sha256 = "00e7d11d7515ad4343e73bfe2b01c3917bda350ba072fda3b0ee8ee5cddddb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-libs-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/00e7d11d7515ad4343e73bfe2b01c3917bda350ba072fda3b0ee8ee5cddddb43", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.aarch64", + sha256 = "f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxcrypt-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.s390x", + sha256 = "dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxcrypt-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.x86_64", + sha256 = "97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxcrypt-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + ], +) + +rpm( + name = "libxcrypt-0__4.4.36-10.el10.aarch64", + sha256 = "465ade16c8f369b5abc1a39671f882bc645ac90b1aeaa29cdfc3958e57640144", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libxcrypt-4.4.36-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/465ade16c8f369b5abc1a39671f882bc645ac90b1aeaa29cdfc3958e57640144", + ], +) + +rpm( + name = "libxcrypt-0__4.4.36-10.el10.s390x", + sha256 = "d14c5523dd6c7f233277acbbb11fb2644f26e91da18e6184ae6ad445e3835a36", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libxcrypt-4.4.36-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d14c5523dd6c7f233277acbbb11fb2644f26e91da18e6184ae6ad445e3835a36", + ], +) + +rpm( + name = "libxcrypt-0__4.4.36-10.el10.x86_64", + sha256 = "503a29c4c767637d810c7e89ed4355fe0b588381cb360517585fb56a2cf5ee46", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libxcrypt-4.4.36-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/503a29c4c767637d810c7e89ed4355fe0b588381cb360517585fb56a2cf5ee46", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.aarch64", + sha256 = "4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.s390x", + sha256 = "bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxcrypt-devel-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.x86_64", + sha256 = "162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.36-10.el10.aarch64", + sha256 = "2f86c95726f3c3efdcb2d97f5d0020e86d254defebb084df7c13a5fa51442b5a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libxcrypt-devel-4.4.36-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2f86c95726f3c3efdcb2d97f5d0020e86d254defebb084df7c13a5fa51442b5a", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.36-10.el10.s390x", + sha256 = "a3f57faa74cefedf8baddec91311a5e0cafe73878e83c3447335495c7ed7934b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libxcrypt-devel-4.4.36-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a3f57faa74cefedf8baddec91311a5e0cafe73878e83c3447335495c7ed7934b", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.36-10.el10.x86_64", + sha256 = "ccee1b09985e24bfed47cf7b5c965d7e0e869862ac55f3b7f783cdcec93716f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libxcrypt-devel-4.4.36-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ccee1b09985e24bfed47cf7b5c965d7e0e869862ac55f3b7f783cdcec93716f3", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.aarch64", + sha256 = "34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libxcrypt-static-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.s390x", + sha256 = "32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libxcrypt-static-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.x86_64", + sha256 = "251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxcrypt-static-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.36-10.el10.aarch64", + sha256 = "a2d13d4bb5d7ca66384346f0b90801862e9e58e016870565929a699bb1c15feb", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/libxcrypt-static-4.4.36-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a2d13d4bb5d7ca66384346f0b90801862e9e58e016870565929a699bb1c15feb", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.36-10.el10.s390x", + sha256 = "42d6494724ad9eb96949ac0632b9658b488c5db84d7aa2f9db3d20198a29f9fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/libxcrypt-static-4.4.36-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/42d6494724ad9eb96949ac0632b9658b488c5db84d7aa2f9db3d20198a29f9fe", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.36-10.el10.x86_64", + sha256 = "a4b6f28908fa252bac1c366f91bb37117c0b56ebce1743933dcf2029f10f86c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/libxcrypt-static-4.4.36-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a4b6f28908fa252bac1c366f91bb37117c0b56ebce1743933dcf2029f10f86c0", + ], +) + +rpm( + name = "libxml2-0__2.12.5-10.el10.aarch64", + sha256 = "25832e149d6f0252eaf3f885466c9d470205c5d1e80d0be4fa43559715d4b92a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libxml2-2.12.5-10.el10.aarch64.rpm", + ], +) + +rpm( + name = "libxml2-0__2.12.5-10.el10.s390x", + sha256 = "873d65d7d52716dfd36c38820b883e92edc5b315bc5cdefd546d615580645cfa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libxml2-2.12.5-10.el10.s390x.rpm", + ], +) + +rpm( + name = "libxml2-0__2.12.5-10.el10.x86_64", + sha256 = "671967be1ee8285e84ed241404ed05721b14a8530ccf640401f998f3c8931df5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libxml2-2.12.5-10.el10.x86_64.rpm", + ], +) + +rpm( + name = "libxml2-0__2.9.13-14.el9.aarch64", + sha256 = "f62d552977c2b1d53cc4f6d4e9ea91fa7c0351dcd3a5bec8ceb7f91bc1157aaf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxml2-2.9.13-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f62d552977c2b1d53cc4f6d4e9ea91fa7c0351dcd3a5bec8ceb7f91bc1157aaf", + ], +) + +rpm( + name = "libxml2-0__2.9.13-14.el9.s390x", + sha256 = "78256fb046360c848f4f4d2a0419705ce747e87de18bc0d3994c6d5865656992", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxml2-2.9.13-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/78256fb046360c848f4f4d2a0419705ce747e87de18bc0d3994c6d5865656992", + ], +) + +rpm( + name = "libxml2-0__2.9.13-14.el9.x86_64", + sha256 = "6e3e385bd23d1f0ecf30859d65eaaaa9583c814a9afb8e04379b1eeca21a54c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e3e385bd23d1f0ecf30859d65eaaaa9583c814a9afb8e04379b1eeca21a54c3", + ], +) + +rpm( + name = "libxml2-0__2.9.13-9.el9.x86_64", + sha256 = "70b74fdfab02d40caad350cf83bc676a782de69b25beb3d37dc193aaf381d9e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/70b74fdfab02d40caad350cf83bc676a782de69b25beb3d37dc193aaf381d9e0", + ], +) + +rpm( + name = "libxslt-0__1.1.34-12.el9.s390x", + sha256 = "d2a72b102141ce337c5dab51985071e29bc2e1a00008f866c1cfd265c49c5d65", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxslt-1.1.34-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2a72b102141ce337c5dab51985071e29bc2e1a00008f866c1cfd265c49c5d65", + ], +) + +rpm( + name = "libxslt-0__1.1.34-12.el9.x86_64", + sha256 = "d14a14cb0ab0be6864c26d26d2e0c580fdf50b534cf79f23cc7677d51ddb2adc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d14a14cb0ab0be6864c26d26d2e0c580fdf50b534cf79f23cc7677d51ddb2adc", + ], +) + +rpm( + name = "libxslt-0__1.1.34-9.el9.x86_64", + sha256 = "576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + ], +) + +rpm( + name = "libxslt-0__1.1.39-8.el10.s390x", + sha256 = "1e6ec8eb0dac9858a45d3b42ac6755ce77182581ca77af4eec34af9256aa874e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libxslt-1.1.39-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1e6ec8eb0dac9858a45d3b42ac6755ce77182581ca77af4eec34af9256aa874e", + ], +) + +rpm( + name = "libxslt-0__1.1.39-8.el10.x86_64", + sha256 = "394d4f76d3a0ed6283ecc2e840520958361f9764402d616014687f92ad750d81", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libxslt-1.1.39-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/394d4f76d3a0ed6283ecc2e840520958361f9764402d616014687f92ad750d81", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.aarch64", + sha256 = "49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libzstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.s390x", + sha256 = "720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libzstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.x86_64", + sha256 = "3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libzstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + ], +) + +rpm( + name = "libzstd-0__1.5.5-9.el10.aarch64", + sha256 = "474a4497b7901176be4a59895cd02bba744300fd673668ef068bd1dfc5e129c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libzstd-1.5.5-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/474a4497b7901176be4a59895cd02bba744300fd673668ef068bd1dfc5e129c7", + ], +) + +rpm( + name = "libzstd-0__1.5.5-9.el10.s390x", + sha256 = "59d29a77a5792bbc4ce42b3ac700a1df776ace058e040f391374f011d39f0eef", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libzstd-1.5.5-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/59d29a77a5792bbc4ce42b3ac700a1df776ace058e040f391374f011d39f0eef", + ], +) + +rpm( + name = "libzstd-0__1.5.5-9.el10.x86_64", + sha256 = "86f3cb406d56283119c45ec8c1f4689aa37ff6c04cf44f6608c10cfdcccdb2c1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libzstd-1.5.5-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/86f3cb406d56283119c45ec8c1f4689aa37ff6c04cf44f6608c10cfdcccdb2c1", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.aarch64", + sha256 = "bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lua-libs-5.4.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.s390x", + sha256 = "616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lua-libs-5.4.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.x86_64", + sha256 = "a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lua-libs-5.4.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + ], +) + +rpm( + name = "lua-libs-0__5.4.6-7.el10.s390x", + sha256 = "e0676e298166577f2766305025f4c99fe774473f084fe13fcdf8937b4b0e5eab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lua-libs-5.4.6-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/e0676e298166577f2766305025f4c99fe774473f084fe13fcdf8937b4b0e5eab", + ], +) + +rpm( + name = "lua-libs-0__5.4.6-7.el10.x86_64", + sha256 = "cb9268a17c06928ffb0805ff43d733b0c67171ff3a969cc16b40c7f3e59d64f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lua-libs-5.4.6-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cb9268a17c06928ffb0805ff43d733b0c67171ff3a969cc16b40c7f3e59d64f3", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.aarch64", + sha256 = "9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lz4-libs-1.9.3-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.s390x", + sha256 = "358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lz4-libs-1.9.3-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.x86_64", + sha256 = "cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lz4-libs-1.9.3-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + ], +) + +rpm( + name = "lz4-libs-0__1.9.4-8.el10.aarch64", + sha256 = "7db176282f02ed0243d66b9136e1269e4db85da61157392ecc0febeac418ec85", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/lz4-libs-1.9.4-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7db176282f02ed0243d66b9136e1269e4db85da61157392ecc0febeac418ec85", + ], +) + +rpm( + name = "lz4-libs-0__1.9.4-8.el10.s390x", + sha256 = "bd0ba485141caa931c930540a150a55a89ab3dfc6bba448aa592e5b9551dee2e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lz4-libs-1.9.4-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bd0ba485141caa931c930540a150a55a89ab3dfc6bba448aa592e5b9551dee2e", + ], +) + +rpm( + name = "lz4-libs-0__1.9.4-8.el10.x86_64", + sha256 = "de360e857e8465c4b38990375e9435efc78e20d022afe42dbf2986d11fc2c759", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lz4-libs-1.9.4-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/de360e857e8465c4b38990375e9435efc78e20d022afe42dbf2986d11fc2c759", + ], +) + +rpm( + name = "lzo-0__2.10-14.el10.aarch64", + sha256 = "677b7730dfa8e554a8ddd22940c5c6288b0d51cb09e9547c150905e856fb0575", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/lzo-2.10-14.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/677b7730dfa8e554a8ddd22940c5c6288b0d51cb09e9547c150905e856fb0575", + ], +) + +rpm( + name = "lzo-0__2.10-14.el10.s390x", + sha256 = "32bde43a3a00f4b5d078b2c831270f8cc195664e0e3ab5b1c5bcc6dc802e33d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lzo-2.10-14.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/32bde43a3a00f4b5d078b2c831270f8cc195664e0e3ab5b1c5bcc6dc802e33d5", + ], +) + +rpm( + name = "lzo-0__2.10-14.el10.x86_64", + sha256 = "9e4f4e6dc19d15eb865805a43f5834b0ce3a405dcc6df0fba72f0b73f59685a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lzo-2.10-14.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9e4f4e6dc19d15eb865805a43f5834b0ce3a405dcc6df0fba72f0b73f59685a2", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.aarch64", + sha256 = "eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzo-2.10-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.s390x", + sha256 = "d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzo-2.10-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.x86_64", + sha256 = "7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzo-2.10-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + ], +) + +rpm( + name = "lzop-0__1.04-16.el10.aarch64", + sha256 = "e463088918132202d22ada263686b6b723af02b6a49066fd6f9d48cf191cb25e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/lzop-1.04-16.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e463088918132202d22ada263686b6b723af02b6a49066fd6f9d48cf191cb25e", + ], +) + +rpm( + name = "lzop-0__1.04-16.el10.s390x", + sha256 = "5eeeda50a19223224ac6de6428853904e6210b0c11223e71aa39848e613bcb0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lzop-1.04-16.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5eeeda50a19223224ac6de6428853904e6210b0c11223e71aa39848e613bcb0b", + ], +) + +rpm( + name = "lzop-0__1.04-16.el10.x86_64", + sha256 = "925d4dfbf179f00032be3a3a1ec7cf8ed8f9b9b2cd8ea87c2a4da1e97fcfd180", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lzop-1.04-16.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/925d4dfbf179f00032be3a3a1ec7cf8ed8f9b9b2cd8ea87c2a4da1e97fcfd180", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.aarch64", + sha256 = "ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzop-1.04-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.s390x", + sha256 = "f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzop-1.04-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.x86_64", + sha256 = "ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzop-1.04-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + ], +) + +rpm( + name = "make-1__4.3-8.el9.aarch64", + sha256 = "65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/make-4.3-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + ], +) + +rpm( + name = "make-1__4.3-8.el9.s390x", + sha256 = "b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/make-4.3-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + ], +) + +rpm( + name = "make-1__4.3-8.el9.x86_64", + sha256 = "3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/make-4.3-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + ], +) + +rpm( + name = "make-1__4.4.1-9.el10.aarch64", + sha256 = "4cd069f5132c87ad16d02ff648b6389e3e303b41661362252134519993afc45c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/make-4.4.1-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4cd069f5132c87ad16d02ff648b6389e3e303b41661362252134519993afc45c", + ], +) + +rpm( + name = "make-1__4.4.1-9.el10.s390x", + sha256 = "aa138cd7a41f8b054dbecd74462e796b47d58cd9058ad8b56734c0cf242dcd80", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/make-4.4.1-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/aa138cd7a41f8b054dbecd74462e796b47d58cd9058ad8b56734c0cf242dcd80", + ], +) + +rpm( + name = "make-1__4.4.1-9.el10.x86_64", + sha256 = "7d0b52fe16c826f8b08656abd70509987e69e2b8a9f0c42fda803d41a9e7c74e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/make-4.4.1-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d0b52fe16c826f8b08656abd70509987e69e2b8a9f0c42fda803d41a9e7c74e", + ], +) + +rpm( + name = "mpdecimal-0__2.5.1-12.el10.aarch64", + sha256 = "f7755f98208b3f400c950ba46acf568f113029893fede5770d19eedadfa0b3ea", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/mpdecimal-2.5.1-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f7755f98208b3f400c950ba46acf568f113029893fede5770d19eedadfa0b3ea", + ], +) + +rpm( + name = "mpdecimal-0__2.5.1-12.el10.s390x", + sha256 = "2dd0dbab48a3481fab6bcb4554b0854cb66c8d142ef28b8e97b7dfc96d4c2c93", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/mpdecimal-2.5.1-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2dd0dbab48a3481fab6bcb4554b0854cb66c8d142ef28b8e97b7dfc96d4c2c93", + ], +) + +rpm( + name = "mpdecimal-0__2.5.1-12.el10.x86_64", + sha256 = "7d1762e4770170efa93ff4f7e07cf523f62d3e3378f50d87d7b307cd8a73ee77", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/mpdecimal-2.5.1-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d1762e4770170efa93ff4f7e07cf523f62d3e3378f50d87d7b307cd8a73ee77", + ], +) + +rpm( + name = "mpfr-0__4.1.0-10.el9.aarch64", + sha256 = "bea56ccc46a2a14f3f2c8d9624675abc135e4f002e87c76541784b047d51764d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/mpfr-4.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bea56ccc46a2a14f3f2c8d9624675abc135e4f002e87c76541784b047d51764d", + ], +) + +rpm( + name = "mpfr-0__4.1.0-10.el9.s390x", + sha256 = "b166f1d2ae951d053a5761c826cd5bd8735412e465ce7cbfe78b1292c27aa10e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/mpfr-4.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b166f1d2ae951d053a5761c826cd5bd8735412e465ce7cbfe78b1292c27aa10e", + ], +) + +rpm( + name = "mpfr-0__4.1.0-10.el9.x86_64", + sha256 = "11c1d6b33b7e64ddc40faf45b949618c829bd2e3d3661132417e4c8aee6ab0fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/mpfr-4.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11c1d6b33b7e64ddc40faf45b949618c829bd2e3d3661132417e4c8aee6ab0fd", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.x86_64", + sha256 = "179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/mpfr-4.1.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + ], +) + +rpm( + name = "mpfr-0__4.2.1-8.el10.aarch64", + sha256 = "df1662c3221a03d86963ca2f2b4db1b745493ce805e95fa07ebde2a8df7b3628", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/mpfr-4.2.1-8.el10.aarch64.rpm", + ], +) + +rpm( + name = "mpfr-0__4.2.1-8.el10.s390x", + sha256 = "3b4858c266478b5173b90c650c9d0bbe7a9f84c31bde1fb85ac709051531f98f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/mpfr-4.2.1-8.el10.s390x.rpm", + ], +) + +rpm( + name = "mpfr-0__4.2.1-8.el10.x86_64", + sha256 = "351ac05205dd7c29daecbeeb7e53bab4a130060d1d1d1f610097d8b5fc30289f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/mpfr-4.2.1-8.el10.x86_64.rpm", + ], +) + +rpm( + name = "ncurses-base-0__6.2-10.20210508.el9.x86_64", + sha256 = "00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-10.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.aarch64", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.s390x", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.x86_64", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.4-14.20240127.el10.aarch64", + sha256 = "6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/ncurses-base-6.4-14.20240127.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + ], +) + +rpm( + name = "ncurses-base-0__6.4-14.20240127.el10.s390x", + sha256 = "6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/ncurses-base-6.4-14.20240127.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + ], +) + +rpm( + name = "ncurses-base-0__6.4-14.20240127.el10.x86_64", + sha256 = "6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.4-14.20240127.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-10.20210508.el9.x86_64", + sha256 = "f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-10.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.aarch64", + sha256 = "7b61d1dab8d4113a6ad015c083ac3053ec9db1f2503527d547ba7c741d54e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b61d1dab8d4113a6ad015c083ac3053ec9db1f2503527d547ba7c741d54e57a", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.s390x", + sha256 = "d2a6307a398b9cde8f0a83fff92c3b31f5f6c4c15f911f64ff84168a7cd060a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-libs-6.2-12.20210508.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2a6307a398b9cde8f0a83fff92c3b31f5f6c4c15f911f64ff84168a7cd060a4", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.x86_64", + sha256 = "7b396883232158d4f9a6977bcd72b5e6f7fa6bc34a51030379833d4c0d24ab6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b396883232158d4f9a6977bcd72b5e6f7fa6bc34a51030379833d4c0d24ab6f", + ], +) + +rpm( + name = "ncurses-libs-0__6.4-14.20240127.el10.aarch64", + sha256 = "d781030401acc90746bf50c039bac36bcb812b33bb76965d6e6cfed43787a45b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/ncurses-libs-6.4-14.20240127.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d781030401acc90746bf50c039bac36bcb812b33bb76965d6e6cfed43787a45b", + ], +) + +rpm( + name = "ncurses-libs-0__6.4-14.20240127.el10.s390x", + sha256 = "9dccdd3dc565eb6a75ff4e9d359a7de762e11bf834ebfedf03a815188da8d429", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/ncurses-libs-6.4-14.20240127.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/9dccdd3dc565eb6a75ff4e9d359a7de762e11bf834ebfedf03a815188da8d429", + ], +) + +rpm( + name = "ncurses-libs-0__6.4-14.20240127.el10.x86_64", + sha256 = "80256770f1fb9639ea2e1cc744ba6cdbc6b65850d74c6e66a64fc9bcbb4837f4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.4-14.20240127.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/80256770f1fb9639ea2e1cc744ba6cdbc6b65850d74c6e66a64fc9bcbb4837f4", + ], +) + +rpm( + name = "ndctl-libs-0__78-2.el9.x86_64", + sha256 = "6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ndctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + ], +) + +rpm( + name = "ndctl-libs-0__82-1.el9.x86_64", + sha256 = "a0e0c0618946ac1cf3ede937f9a43787d7cb40fe2626ccbf29cc8267b75d48f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ndctl-libs-82-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0e0c0618946ac1cf3ede937f9a43787d7cb40fe2626ccbf29cc8267b75d48f5", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.aarch64", + sha256 = "caf6dda4eaf3c7e3061ec335d45176ebfcaa72ed583df59c32c9dffc00a24ad9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nettle-3.10.1-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/caf6dda4eaf3c7e3061ec335d45176ebfcaa72ed583df59c32c9dffc00a24ad9", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.s390x", + sha256 = "d05a33e0b673bc34580c443f7d7c28b50f8b4fd77ad87ed3cef30f991d7cbf09", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nettle-3.10.1-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d05a33e0b673bc34580c443f7d7c28b50f8b4fd77ad87ed3cef30f991d7cbf09", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.x86_64", + sha256 = "aa28996450c98399099cfcc0fb722723b5821edff27cff53288e1c0298a98190", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nettle-3.10.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa28996450c98399099cfcc0fb722723b5821edff27cff53288e1c0298a98190", + ], +) + +rpm( + name = "nftables-1__1.0.9-6.el9.aarch64", + sha256 = "961be61924e53a0e1f6c7cb70c2687eb8dbe131cacbef3c4d335c0df46f402a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nftables-1.0.9-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/961be61924e53a0e1f6c7cb70c2687eb8dbe131cacbef3c4d335c0df46f402a4", + ], +) + +rpm( + name = "nftables-1__1.0.9-6.el9.s390x", + sha256 = "e7672f3f0f6bce29e909386370325bf3de635bd34b318c5597aa92bd23331ce0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nftables-1.0.9-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e7672f3f0f6bce29e909386370325bf3de635bd34b318c5597aa92bd23331ce0", + ], +) + +rpm( + name = "nftables-1__1.0.9-6.el9.x86_64", + sha256 = "0c4a7846656c9da0e2f7c5be3173219fbe4ddda695d6609803487092dc505f9f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nftables-1.0.9-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0c4a7846656c9da0e2f7c5be3173219fbe4ddda695d6609803487092dc505f9f", + ], +) + +rpm( + name = "nftables-1__1.1.5-3.el10.aarch64", + sha256 = "be675a4acfbf9cf768d95dc25d5390eda069cf2ee8ac774bb81e701cd5ae3135", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/nftables-1.1.5-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/be675a4acfbf9cf768d95dc25d5390eda069cf2ee8ac774bb81e701cd5ae3135", + ], +) + +rpm( + name = "nftables-1__1.1.5-3.el10.s390x", + sha256 = "ce456b58b2f65c45c8ecaf147eb6936e106a9bc2169e9ba39f5ab760479e42a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/nftables-1.1.5-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ce456b58b2f65c45c8ecaf147eb6936e106a9bc2169e9ba39f5ab760479e42a0", + ], +) + +rpm( + name = "nftables-1__1.1.5-3.el10.x86_64", + sha256 = "b04022e2f5e38f6600bf9d3f8cad167704e19bd1191cdbf0dd62db3f15b16a1c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/nftables-1.1.5-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b04022e2f5e38f6600bf9d3f8cad167704e19bd1191cdbf0dd62db3f15b16a1c", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-5.el9.aarch64", + sha256 = "b19deb6d714c11d77f7ec5c3fe517346570099811885f56bb1ae93385886744b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/nmap-ncat-7.92-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b19deb6d714c11d77f7ec5c3fe517346570099811885f56bb1ae93385886744b", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-5.el9.s390x", + sha256 = "7389016c95bbc4adb59b9925a35924c21e821c63bfdf34d2bbe02867346bb4b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/nmap-ncat-7.92-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7389016c95bbc4adb59b9925a35924c21e821c63bfdf34d2bbe02867346bb4b9", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-5.el9.x86_64", + sha256 = "988deb2cb2041d9c7feec5bf829985dc15af58ef167006fa91e23a80f2103d96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/nmap-ncat-7.92-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/988deb2cb2041d9c7feec5bf829985dc15af58ef167006fa91e23a80f2103d96", + ], +) + +rpm( + name = "nmap-ncat-4__7.92-5.el10.aarch64", + sha256 = "7975edb3d4e9c583a41707bdd6f4d21dee67e571f7b7338352d75cf09130612e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/nmap-ncat-7.92-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7975edb3d4e9c583a41707bdd6f4d21dee67e571f7b7338352d75cf09130612e", + ], +) + +rpm( + name = "nmap-ncat-4__7.92-5.el10.s390x", + sha256 = "a0dd5969f49cf59a2448a75498a25007ea270fa25eed6b9d70c1148b88e37a96", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/nmap-ncat-7.92-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a0dd5969f49cf59a2448a75498a25007ea270fa25eed6b9d70c1148b88e37a96", + ], +) + +rpm( + name = "nmap-ncat-4__7.92-5.el10.x86_64", + sha256 = "30fcce0936e6fad42a6cca2d6999758fd637ad6d7057bd5c155eb8f49af53157", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/nmap-ncat-7.92-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30fcce0936e6fad42a6cca2d6999758fd637ad6d7057bd5c155eb8f49af53157", + ], +) + +rpm( + name = "npth-0__1.6-21.el10.s390x", + sha256 = "47f1f79ad844c4d845591871bc752bf8677fb257fa2cc4d58778fab215965bf1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/npth-1.6-21.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/47f1f79ad844c4d845591871bc752bf8677fb257fa2cc4d58778fab215965bf1", + ], +) + +rpm( + name = "npth-0__1.6-21.el10.x86_64", + sha256 = "9d5de697dd346d3eeac85008ab93fbfce90ea49342418402959eda90829578d0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/npth-1.6-21.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9d5de697dd346d3eeac85008ab93fbfce90ea49342418402959eda90829578d0", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.s390x", + sha256 = "f66f12068208409067e6c342e6c0f4f0646fe527dbb7d5bc3d41adb4d9802b52", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/npth-1.6-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f66f12068208409067e6c342e6c0f4f0646fe527dbb7d5bc3d41adb4d9802b52", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.x86_64", + sha256 = "a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/npth-1.6-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-1.el9.x86_64", + sha256 = "3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el10.aarch64", + sha256 = "81016ab56c83cb8c221216794571ae58bb914e21dd3794c242f7ce8a8d8fbf8f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/numactl-libs-2.0.19-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/81016ab56c83cb8c221216794571ae58bb914e21dd3794c242f7ce8a8d8fbf8f", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el10.s390x", + sha256 = "184bd0085cc03d74e317a2aad472fa7638fffc35e4e1a314700e31b00398a6cc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/numactl-libs-2.0.19-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/184bd0085cc03d74e317a2aad472fa7638fffc35e4e1a314700e31b00398a6cc", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el10.x86_64", + sha256 = "263ee2cba1d57996778f70045fbc4657067f73edafd6c6b04f4599c3eb12fbfd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/263ee2cba1d57996778f70045fbc4657067f73edafd6c6b04f4599c3eb12fbfd", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.aarch64", + sha256 = "ff63cef9b42cbc82149a6bc6970c20c9e781016dbb3eadd03effa330cb3b2bdd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numactl-libs-2.0.19-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ff63cef9b42cbc82149a6bc6970c20c9e781016dbb3eadd03effa330cb3b2bdd", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.s390x", + sha256 = "43de4c5b609d2914a7fd27937b3baf15a988be1c891ee17e1395cae2232a06c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/numactl-libs-2.0.19-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/43de4c5b609d2914a7fd27937b3baf15a988be1c891ee17e1395cae2232a06c4", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.x86_64", + sha256 = "ad52833edf28b5bf2053bd96d96b211de4c6b11376978379dae211460c4596d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad52833edf28b5bf2053bd96d96b211de4c6b11376978379dae211460c4596d8", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.aarch64", + sha256 = "c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numad-0.5-37.20150602git.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.x86_64", + sha256 = "82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numad-0.5-37.20150602git.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + ], +) + +rpm( + name = "numad-0__0.5-50.20251104git.el10.aarch64", + sha256 = "942f7db59b047cc56e6c53c5bb9a2a84ba4715088021e85526e973d9485bc8fa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/numad-0.5-50.20251104git.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/942f7db59b047cc56e6c53c5bb9a2a84ba4715088021e85526e973d9485bc8fa", + ], +) + +rpm( + name = "numad-0__0.5-50.20251104git.el10.x86_64", + sha256 = "91def9a46ee7b6ee35a11276987c7eace5b18e97d6d967fe09139e0a01cb0731", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/numad-0.5-50.20251104git.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/91def9a46ee7b6ee35a11276987c7eace5b18e97d6d967fe09139e0a01cb0731", + ], +) + +rpm( + name = "openldap-0__2.6.10-1.el10.s390x", + sha256 = "8ccbbb3c19df87e02214012a0fb7eed53455db552b6548e482734f65039b6057", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/openldap-2.6.10-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/8ccbbb3c19df87e02214012a0fb7eed53455db552b6548e482734f65039b6057", + ], +) + +rpm( + name = "openldap-0__2.6.10-1.el10.x86_64", + sha256 = "c9b225c90d849b679e4ecdc4108703b54749bed23af829d3238f1551dd88fd27", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/openldap-2.6.10-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c9b225c90d849b679e4ecdc4108703b54749bed23af829d3238f1551dd88fd27", + ], +) + +rpm( + name = "openldap-0__2.6.8-4.el9.s390x", + sha256 = "67a9f53b14250f7934faebcc7961b2f9c06875b9c8fb16d4ac19c0e110d0e446", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openldap-2.6.8-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a9f53b14250f7934faebcc7961b2f9c06875b9c8fb16d4ac19c0e110d0e446", + ], +) + +rpm( + name = "openldap-0__2.6.8-4.el9.x86_64", + sha256 = "606794339fa964e9c68a94fe756566e0651c52da47ebe7df5fb66f700c6a0421", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openldap-2.6.8-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/606794339fa964e9c68a94fe756566e0651c52da47ebe7df5fb66f700c6a0421", + ], +) + +rpm( + name = "openssl-1__3.2.2-6.el9.x86_64", + sha256 = "3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a", + urls = ["https://storage.googleapis.com/builddeps/3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a"], +) + +rpm( + name = "openssl-1__3.5.5-1.el9.aarch64", + sha256 = "9614ff011d01a53615fc9a05ab29de503af3576ea8aaadfb6f7405a1c60b5755", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-3.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9614ff011d01a53615fc9a05ab29de503af3576ea8aaadfb6f7405a1c60b5755", + ], +) + +rpm( + name = "openssl-1__3.5.5-1.el9.s390x", + sha256 = "37de2ce39ecacbb0105a0aaaf99d186d05814f34df79663ec73ae5e33a523dfc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-3.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/37de2ce39ecacbb0105a0aaaf99d186d05814f34df79663ec73ae5e33a523dfc", + ], +) + +rpm( + name = "openssl-1__3.5.5-1.el9.x86_64", + sha256 = "a847741effa30135a514d585303dd53e5d45f7be672accdb602e48162344e396", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-3.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a847741effa30135a514d585303dd53e5d45f7be672accdb602e48162344e396", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el10.aarch64", + sha256 = "8508a817efb181727d4cbed2ef81ddbde1f1da487709f0a6aaaea4ac265acea2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/openssl-fips-provider-3.5.5-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8508a817efb181727d4cbed2ef81ddbde1f1da487709f0a6aaaea4ac265acea2", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el10.s390x", + sha256 = "d9844964d1c85617b43d0a9a9cc92a98d50008925abfc6766edecda075085047", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/openssl-fips-provider-3.5.5-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d9844964d1c85617b43d0a9a9cc92a98d50008925abfc6766edecda075085047", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el10.x86_64", + sha256 = "8cd0358b2f324315431e075aa4f96aba00f2be2fbea15929808d77b38c450b7b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/openssl-fips-provider-3.5.5-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8cd0358b2f324315431e075aa4f96aba00f2be2fbea15929808d77b38c450b7b", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el9.aarch64", + sha256 = "e59ea0883ea57fe2b6c5d2ea52cafa8183a95fc83e0be7bd72ab4e4517f41588", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-fips-provider-3.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e59ea0883ea57fe2b6c5d2ea52cafa8183a95fc83e0be7bd72ab4e4517f41588", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el9.s390x", + sha256 = "1845bf99e7825235a6a0d5ae2990bd5bda0a9e889aa6a735c1e8f459b504195e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-fips-provider-3.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1845bf99e7825235a6a0d5ae2990bd5bda0a9e889aa6a735c1e8f459b504195e", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el9.x86_64", + sha256 = "5aec51f1d460ff8da23044b8462e3569ea5e87e531d0ecaf67639b039fbbb896", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-fips-provider-3.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5aec51f1d460ff8da23044b8462e3569ea5e87e531d0ecaf67639b039fbbb896", + ], +) + +rpm( + name = "openssl-libs-1__3.2.2-6.el9.x86_64", + sha256 = "4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738", + urls = ["https://storage.googleapis.com/builddeps/4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738"], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el10.aarch64", + sha256 = "b57aea518dd32913ada2d53def2aa2b67ddd97f9826c95392a9ff8942c0bc992", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/openssl-libs-3.5.5-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b57aea518dd32913ada2d53def2aa2b67ddd97f9826c95392a9ff8942c0bc992", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el10.s390x", + sha256 = "63346962f9adf622da34b1727f33e5abddbedd9ad47dfea2526f2f28ca0dcd47", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/openssl-libs-3.5.5-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/63346962f9adf622da34b1727f33e5abddbedd9ad47dfea2526f2f28ca0dcd47", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el10.x86_64", + sha256 = "f398762ae421f1aa605af7e3e8770da8b3fa6fbb0afcf74a2d82945dc4670c39", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/openssl-libs-3.5.5-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f398762ae421f1aa605af7e3e8770da8b3fa6fbb0afcf74a2d82945dc4670c39", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el9.aarch64", + sha256 = "2814ed29cf7d61164f9a0fdfa02ecf6f3d98b1341146effca29441ec2b0341bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-libs-3.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2814ed29cf7d61164f9a0fdfa02ecf6f3d98b1341146effca29441ec2b0341bd", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el9.s390x", + sha256 = "fdf91f4b3f4635964b6a04f76d18fdfdc7de47830a591171e95167047441df15", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-libs-3.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fdf91f4b3f4635964b6a04f76d18fdfdc7de47830a591171e95167047441df15", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el9.x86_64", + sha256 = "93be0a9dbce02f827ffe1f1dd538fd5f61b189f63d0d0b3b98b662d524321b30", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-libs-3.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/93be0a9dbce02f827ffe1f1dd538fd5f61b189f63d0d0b3b98b662d524321b30", + ], +) + +rpm( + name = "osinfo-db-0__20240701-3.el9.x86_64", + sha256 = "cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20240701-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el10.s390x", + sha256 = "44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/osinfo-db-20250606-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el10.x86_64", + sha256 = "44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/osinfo-db-20250606-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el9.s390x", + sha256 = "78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/osinfo-db-20250606-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el9.x86_64", + sha256 = "78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20250606-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.s390x", + sha256 = "2df9abce1b172c03c768b4f7ea7befe0c2e4d6647447d5b729caa061fdbf3803", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/osinfo-db-tools-1.10.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2df9abce1b172c03c768b4f7ea7befe0c2e4d6647447d5b729caa061fdbf3803", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.x86_64", + sha256 = "2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-tools-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.11.0-8.el10.s390x", + sha256 = "fed0a8870fb28338db4b8b2bb6f57d44fcbfcaafe88187d787e3bf6cd5f911f0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/osinfo-db-tools-1.11.0-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/fed0a8870fb28338db4b8b2bb6f57d44fcbfcaafe88187d787e3bf6cd5f911f0", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.11.0-8.el10.x86_64", + sha256 = "31d38586cdd723e3de145e9b03dd1f4eaa2e63681323a7d0bcce3a47cc2e1d62", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/osinfo-db-tools-1.11.0-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/31d38586cdd723e3de145e9b03dd1f4eaa2e63681323a7d0bcce3a47cc2e1d62", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.x86_64", + sha256 = "2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el10.aarch64", + sha256 = "93518eadefcbe6fb07cfa3d5d4cddd0820915ab44b9f4ce753af503558653d71", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/p11-kit-0.26.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el10.s390x", + sha256 = "2252c8486d84092c6dca6488d39d52c31c348441d311474943a37c3192cc62fb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/p11-kit-0.26.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el10.x86_64", + sha256 = "5787928d07bc6241e895500dee79ad8aa85de7ff997402c9c08e11dc9732240a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/p11-kit-0.26.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el9.aarch64", + sha256 = "078862b28f0e95c1464b8c8b85fd23a05351823acd3b60185af21a6ab5104271", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-0.26.2-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/078862b28f0e95c1464b8c8b85fd23a05351823acd3b60185af21a6ab5104271", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el9.s390x", + sha256 = "6743449ac49200da5f9ba3fcc8ef8f95880fbf8364ca67ccca5117dd9a126a0d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-0.26.2-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6743449ac49200da5f9ba3fcc8ef8f95880fbf8364ca67ccca5117dd9a126a0d", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el9.x86_64", + sha256 = "4e2f216f57ba90659679cb6cedcae7b38fb335a9d301c890ea7744b769ac15d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-0.26.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4e2f216f57ba90659679cb6cedcae7b38fb335a9d301c890ea7744b769ac15d8", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.x86_64", + sha256 = "f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el10.aarch64", + sha256 = "87acee4c95360a0858299917ce916696d037cfea50e5d2326c7c0e002ac04470", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/p11-kit-trust-0.26.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el10.s390x", + sha256 = "04dfaf06b01ee63eac7a2cf52bff14b94379a34cca6ec548a9cd7ecefc124c71", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/p11-kit-trust-0.26.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el10.x86_64", + sha256 = "21f8ff9b21243fbe951260c4dfd47058074c818be68bb274db3eb20378433f2a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.26.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el9.aarch64", + sha256 = "3db76997186c82a6c7b2ecf514b8098bfecf8db5358ebafdbed02b51b67465f6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-trust-0.26.2-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3db76997186c82a6c7b2ecf514b8098bfecf8db5358ebafdbed02b51b67465f6", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el9.s390x", + sha256 = "30854a67c6e2bcc1584210f0991704c64323d9a367ea1a98429e9a6a2d25b9b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-trust-0.26.2-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/30854a67c6e2bcc1584210f0991704c64323d9a367ea1a98429e9a6a2d25b9b0", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el9.x86_64", + sha256 = "d8dcb0fb0302e74bc2276e78d1bdcc2a512bcfaee86fe8b1d01e491bea6b250a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.26.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8dcb0fb0302e74bc2276e78d1bdcc2a512bcfaee86fe8b1d01e491bea6b250a", + ], +) + +rpm( + name = "pam-0__1.5.1-23.el9.x86_64", + sha256 = "fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + ], +) + +rpm( + name = "pam-0__1.5.1-28.el9.aarch64", + sha256 = "598477ca76dadefb1c80d4322c2b074aac54d9ecf3d717353641b939147d8caa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pam-1.5.1-28.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/598477ca76dadefb1c80d4322c2b074aac54d9ecf3d717353641b939147d8caa", + ], +) + +rpm( + name = "pam-0__1.5.1-28.el9.s390x", + sha256 = "f823ac185f1a0c966e608301f09e22a645e37c447f4dd49b6b6930ff67fd8156", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pam-1.5.1-28.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f823ac185f1a0c966e608301f09e22a645e37c447f4dd49b6b6930ff67fd8156", + ], +) + +rpm( + name = "pam-0__1.5.1-28.el9.x86_64", + sha256 = "3c92fd1347d78fc3621cd5ae62f7a159588d86a8a0c22ba4a754dcd51926b6b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-28.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3c92fd1347d78fc3621cd5ae62f7a159588d86a8a0c22ba4a754dcd51926b6b7", + ], +) + +rpm( + name = "pam-0__1.6.1-9.el10.aarch64", + sha256 = "48762bdea0227ff022ec0740b1241147e76d40898a041628e61d20fe8aea344c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pam-1.6.1-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/48762bdea0227ff022ec0740b1241147e76d40898a041628e61d20fe8aea344c", + ], +) + +rpm( + name = "pam-0__1.6.1-9.el10.s390x", + sha256 = "565a9b5f35ff92d0f91330974e0da3e7322bb87b398a081cef94258e1db17c76", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pam-1.6.1-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/565a9b5f35ff92d0f91330974e0da3e7322bb87b398a081cef94258e1db17c76", + ], +) + +rpm( + name = "pam-0__1.6.1-9.el10.x86_64", + sha256 = "0709423d4705d5f06c4cd6005d205a1a26fb3c4a9d08bbe197fa103924506157", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pam-1.6.1-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0709423d4705d5f06c4cd6005d205a1a26fb3c4a9d08bbe197fa103924506157", + ], +) + +rpm( + name = "pam-libs-0__1.6.1-9.el10.aarch64", + sha256 = "6d055fc43ae94b745214a675bc077261395a9c9475a66138912b77314fb064fd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pam-libs-1.6.1-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6d055fc43ae94b745214a675bc077261395a9c9475a66138912b77314fb064fd", + ], +) + +rpm( + name = "pam-libs-0__1.6.1-9.el10.s390x", + sha256 = "8927066863a1128bb08750c8e01a26f57b7393454a604436233b1779d55ae655", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pam-libs-1.6.1-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/8927066863a1128bb08750c8e01a26f57b7393454a604436233b1779d55ae655", + ], +) + +rpm( + name = "pam-libs-0__1.6.1-9.el10.x86_64", + sha256 = "4f5115114c1bf4882ce2ed5e7629f07a8d0b6e6a93412e9b3a00ab21d8f49973", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pam-libs-1.6.1-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4f5115114c1bf4882ce2ed5e7629f07a8d0b6e6a93412e9b3a00ab21d8f49973", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.s390x", + sha256 = "e328d103fa4e64fa6558998d79b42bb37882d068b9251fc3301b1001b7f01936", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/parted-3.5-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e328d103fa4e64fa6558998d79b42bb37882d068b9251fc3301b1001b7f01936", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.x86_64", + sha256 = "77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/parted-3.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + ], +) + +rpm( + name = "parted-0__3.6-7.el10.s390x", + sha256 = "bba170cbf71b85ebc299c466f4a15c14ce80fae6a138ec87014b772bab377f02", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/parted-3.6-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bba170cbf71b85ebc299c466f4a15c14ce80fae6a138ec87014b772bab377f02", + ], +) + +rpm( + name = "parted-0__3.6-7.el10.x86_64", + sha256 = "bb339dd10bc7951376243b5a9ae11e18f3ecd235db576739da006a147c6bf412", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/parted-3.6-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bb339dd10bc7951376243b5a9ae11e18f3ecd235db576739da006a147c6bf412", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64", + sha256 = "b25fd3d6395c66279b57f2c6cafa51d487b40cf7b3caa16915c7e702c5495679", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b25fd3d6395c66279b57f2c6cafa51d487b40cf7b3caa16915c7e702c5495679", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.s390x", + sha256 = "ee4e4896389277f09db8e3a112e83e83be80d1401b43a9993137c12c004bdafc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ee4e4896389277f09db8e3a112e83e83be80d1401b43a9993137c12c004bdafc", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64", + sha256 = "27818a1904c1d1e39890abe239ea156a29c3e548e83941d7696e0cd3113abfdd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27818a1904c1d1e39890abe239ea156a29c3e548e83941d7696e0cd3113abfdd", + ], +) + +rpm( + name = "passt-0__0__caret__20251210.gd04c480-3.el10.aarch64", + sha256 = "61ea2a17d69694b1f6681f38b7499d6cb8cc31890305f42d9fd88f44ff9e55e9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/passt-0%5E20251210.gd04c480-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "passt-0__0__caret__20251210.gd04c480-3.el10.s390x", + sha256 = "966273634d1eca6cd375f82c5688b755be02b969f88152b0fa56d3e1f60be252", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/passt-0%5E20251210.gd04c480-3.el10.s390x.rpm", + ], +) + +rpm( + name = "passt-0__0__caret__20251210.gd04c480-3.el10.x86_64", + sha256 = "8965cbfee22848c8f0a43c285993729a569b769af7997394c7dbf6ba37ced1b1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/passt-0%5E20251210.gd04c480-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.aarch64", + sha256 = "dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre-8.44-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.s390x", + sha256 = "e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre-8.44-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.x86_64", + sha256 = "7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre-8.44-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.aarch64", + sha256 = "c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-10.40-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.s390x", + sha256 = "f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-10.40-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.x86_64", + sha256 = "bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-10.40-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + ], +) + +rpm( + name = "pcre2-0__10.44-1.el10.3.aarch64", + sha256 = "23f2a34aa9bc9c8c6662e93d184e07d7e01d45d0fb1b554fd3ed92c03ba2ae3c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pcre2-10.44-1.el10.3.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23f2a34aa9bc9c8c6662e93d184e07d7e01d45d0fb1b554fd3ed92c03ba2ae3c", + ], +) + +rpm( + name = "pcre2-0__10.44-1.el10.3.s390x", + sha256 = "7577ec5ef81b0aa96e340c6d292c4b828e957508962ec1ed68c1f048dff3998e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pcre2-10.44-1.el10.3.s390x.rpm", + "https://storage.googleapis.com/builddeps/7577ec5ef81b0aa96e340c6d292c4b828e957508962ec1ed68c1f048dff3998e", + ], +) + +rpm( + name = "pcre2-0__10.44-1.el10.3.x86_64", + sha256 = "773781e3aa9994fa8d6105ddc0b3d00fdd735bd589a5d9fe40fe96be6a7d89a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pcre2-10.44-1.el10.3.x86_64.rpm", + "https://storage.googleapis.com/builddeps/773781e3aa9994fa8d6105ddc0b3d00fdd735bd589a5d9fe40fe96be6a7d89a7", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.aarch64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.s390x", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.x86_64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.44-1.el10.3.aarch64", + sha256 = "71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pcre2-syntax-10.44-1.el10.3.noarch.rpm", + "https://storage.googleapis.com/builddeps/71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + ], +) + +rpm( + name = "pcre2-syntax-0__10.44-1.el10.3.s390x", + sha256 = "71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pcre2-syntax-10.44-1.el10.3.noarch.rpm", + "https://storage.googleapis.com/builddeps/71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + ], +) + +rpm( + name = "pcre2-syntax-0__10.44-1.el10.3.x86_64", + sha256 = "71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pcre2-syntax-10.44-1.el10.3.noarch.rpm", + "https://storage.googleapis.com/builddeps/71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.aarch64", + sha256 = "949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/pixman-0.40.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.s390x", + sha256 = "8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/pixman-0.40.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.x86_64", + sha256 = "e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-0.40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + ], +) + +rpm( + name = "pixman-0__0.43.4-2.el10.aarch64", + sha256 = "dc2c0f98c210e8209690b1d2a4fffa348b6ad22062461f4b3ebc7d7f6dd0246e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/pixman-0.43.4-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/dc2c0f98c210e8209690b1d2a4fffa348b6ad22062461f4b3ebc7d7f6dd0246e", + ], +) + +rpm( + name = "pixman-0__0.43.4-2.el10.s390x", + sha256 = "269fcda361ff485d379f8a773e47752758b8c58e288f78196f169149570af637", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/pixman-0.43.4-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/269fcda361ff485d379f8a773e47752758b8c58e288f78196f169149570af637", + ], +) + +rpm( + name = "pixman-0__0.43.4-2.el10.x86_64", + sha256 = "c91d0077a917e843a009c69b63793de4b8d2f9a81414f63e319ac31bbf6a08cb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/pixman-0.43.4-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c91d0077a917e843a009c69b63793de4b8d2f9a81414f63e319ac31bbf6a08cb", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.s390x", + sha256 = "18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + ], +) + +rpm( + name = "pkgconf-0__2.1.0-3.el10.aarch64", + sha256 = "5bd76130128a85e6275c6e56f7e519532425cd2a5d2db7a795a4d1d15f7d0d57", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pkgconf-2.1.0-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5bd76130128a85e6275c6e56f7e519532425cd2a5d2db7a795a4d1d15f7d0d57", + ], +) + +rpm( + name = "pkgconf-0__2.1.0-3.el10.s390x", + sha256 = "010973bdd551e8489eb97446701fdf3100b8dd0b1ea7efd650412d8869d8181a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pkgconf-2.1.0-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/010973bdd551e8489eb97446701fdf3100b8dd0b1ea7efd650412d8869d8181a", + ], +) + +rpm( + name = "pkgconf-0__2.1.0-3.el10.x86_64", + sha256 = "ced8f494b664667d52245ff94ce6c0b2cad135586a36a9ff7f81281d1533f178", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pkgconf-2.1.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ced8f494b664667d52245ff94ce6c0b2cad135586a36a9ff7f81281d1533f178", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.aarch64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.s390x", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.x86_64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__2.1.0-3.el10.aarch64", + sha256 = "4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pkgconf-m4-2.1.0-3.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + ], +) + +rpm( + name = "pkgconf-m4-0__2.1.0-3.el10.s390x", + sha256 = "4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pkgconf-m4-2.1.0-3.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + ], +) + +rpm( + name = "pkgconf-m4-0__2.1.0-3.el10.x86_64", + sha256 = "4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pkgconf-m4-2.1.0-3.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.aarch64", + sha256 = "d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.s390x", + sha256 = "d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.x86_64", + sha256 = "e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__2.1.0-3.el10.aarch64", + sha256 = "3d646b74ccc730b097ceba50c5a054a6017b61e354b0e8731c66b5c266d55e40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pkgconf-pkg-config-2.1.0-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3d646b74ccc730b097ceba50c5a054a6017b61e354b0e8731c66b5c266d55e40", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__2.1.0-3.el10.s390x", + sha256 = "f895f22efbaa5a4f978600b3df480eabab7bb2eea7f0f8e90897ab4d76ae2102", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pkgconf-pkg-config-2.1.0-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f895f22efbaa5a4f978600b3df480eabab7bb2eea7f0f8e90897ab4d76ae2102", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__2.1.0-3.el10.x86_64", + sha256 = "4f5231ffccc59b5f1c42d85cc0dafea9b6901107660931071cf1e65f99af1e0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pkgconf-pkg-config-2.1.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4f5231ffccc59b5f1c42d85cc0dafea9b6901107660931071cf1e65f99af1e0b", + ], +) + +rpm( + name = "policycoreutils-0__3.10-1.el10.aarch64", + sha256 = "93f6ad5c7d6a7c8df55de7d0ddf385ae7a3933cca9a56a5345dbe06abba24f7e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/policycoreutils-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "policycoreutils-0__3.10-1.el10.s390x", + sha256 = "b33b595422bdb42604dbfcd53d4ecc449b3d8fa954425162bd72034c5af688df", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/policycoreutils-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "policycoreutils-0__3.10-1.el10.x86_64", + sha256 = "1e5911b958557d276758767a734baf38bcf60c749671bcb11bf89d656b5389e5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "policycoreutils-0__3.6-2.1.el9.x86_64", + sha256 = "a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-2.1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + ], +) + +rpm( + name = "policycoreutils-0__3.6-5.el9.aarch64", + sha256 = "98f6b034b67a76f18a7e44a8b1b22fd5fd293d326c833418cbb2313abffc57d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/policycoreutils-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/98f6b034b67a76f18a7e44a8b1b22fd5fd293d326c833418cbb2313abffc57d7", + ], +) + +rpm( + name = "policycoreutils-0__3.6-5.el9.s390x", + sha256 = "659c4c2fe612c6a3e9af23a90993d2772e771f5f83f3cf195e8117a06962c6a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/policycoreutils-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/659c4c2fe612c6a3e9af23a90993d2772e771f5f83f3cf195e8117a06962c6a1", + ], +) + +rpm( + name = "policycoreutils-0__3.6-5.el9.x86_64", + sha256 = "436dd0b9df40d54a5ff97051738e67bf080d2059d9e767ceac477f9155ab4ca9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/436dd0b9df40d54a5ff97051738e67bf080d2059d9e767ceac477f9155ab4ca9", + ], +) + +rpm( + name = "polkit-0__0.117-13.el9.x86_64", + sha256 = "81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.aarch64", + sha256 = "9b756ae0148672fd428182ecbfae0e6d4fe249ad41cddb5f99ef2868b1b07c27", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-0.117-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9b756ae0148672fd428182ecbfae0e6d4fe249ad41cddb5f99ef2868b1b07c27", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.s390x", + sha256 = "8d97919e210f66f10b8f4faad916eb21b9e33c3cdb088638bc6a1dd5efa75b9d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-0.117-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8d97919e210f66f10b8f4faad916eb21b9e33c3cdb088638bc6a1dd5efa75b9d", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.x86_64", + sha256 = "30f3a75427f33cd136ffbacbb01d4570a62a15b6da4ecb005a0e1da25f0ca57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30f3a75427f33cd136ffbacbb01d4570a62a15b6da4ecb005a0e1da25f0ca57a", + ], +) + +rpm( + name = "polkit-0__125-4.el10.aarch64", + sha256 = "c7e294ea2b01e7d3f52f3e88d9520f1c57ed7577a220fc1c25092f05c2c2be09", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/polkit-125-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7e294ea2b01e7d3f52f3e88d9520f1c57ed7577a220fc1c25092f05c2c2be09", + ], +) + +rpm( + name = "polkit-0__125-4.el10.s390x", + sha256 = "746bed9c6883ac33d60f35f0233289dc8e73137cc2e2028a6308b805385fb1e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/polkit-125-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/746bed9c6883ac33d60f35f0233289dc8e73137cc2e2028a6308b805385fb1e2", + ], +) + +rpm( + name = "polkit-0__125-4.el10.x86_64", + sha256 = "e4965cc1a34a64e8b5cc6c8738de6c6c0cf2f08f2dced23f9d88427575c3a386", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/polkit-125-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e4965cc1a34a64e8b5cc6c8738de6c6c0cf2f08f2dced23f9d88427575c3a386", + ], +) + +rpm( + name = "polkit-libs-0__0.117-13.el9.x86_64", + sha256 = "127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.aarch64", + sha256 = "a2021169f907a5cf2ac57193ff1d32d9df514db03a12aa5842ae7d358d66c20f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-libs-0.117-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a2021169f907a5cf2ac57193ff1d32d9df514db03a12aa5842ae7d358d66c20f", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.s390x", + sha256 = "475daa3f2f4890182b4aac23ca2fa0c071c536fbe5c7a1f17b5bf555d71eda26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-libs-0.117-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/475daa3f2f4890182b4aac23ca2fa0c071c536fbe5c7a1f17b5bf555d71eda26", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.x86_64", + sha256 = "b2acb122a1cbadef39c62cdbd34781aa094a07ee9fafc61f987dd43ea09f182f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b2acb122a1cbadef39c62cdbd34781aa094a07ee9fafc61f987dd43ea09f182f", + ], +) + +rpm( + name = "polkit-libs-0__125-4.el10.aarch64", + sha256 = "0b7197e7b1c5c394aeb3254f5678c7ec80053566cb367fd6c2d79a11e9a22f37", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/polkit-libs-125-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0b7197e7b1c5c394aeb3254f5678c7ec80053566cb367fd6c2d79a11e9a22f37", + ], +) + +rpm( + name = "polkit-libs-0__125-4.el10.s390x", + sha256 = "b8715d596f893869f60408286325995dbeeb570286fd397c3c611d86c30a7014", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/polkit-libs-125-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8715d596f893869f60408286325995dbeeb570286fd397c3c611d86c30a7014", + ], +) + +rpm( + name = "polkit-libs-0__125-4.el10.x86_64", + sha256 = "dea631790902108c8e2932c272cb24a5949c3c329009b96cf2f9c8fa5aaee29a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/polkit-libs-125-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dea631790902108c8e2932c272cb24a5949c3c329009b96cf2f9c8fa5aaee29a", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.aarch64", + sha256 = "032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/popt-1.18-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.s390x", + sha256 = "b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/popt-1.18-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.x86_64", + sha256 = "d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/popt-1.18-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + ], +) + +rpm( + name = "popt-0__1.19-8.el10.aarch64", + sha256 = "4c727d11de14d8bf1bc0df2be55c75cb0200a685c2737c740e636dedd3edbb0c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/popt-1.19-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4c727d11de14d8bf1bc0df2be55c75cb0200a685c2737c740e636dedd3edbb0c", + ], +) + +rpm( + name = "popt-0__1.19-8.el10.s390x", + sha256 = "3dca46c310266fc9cce48d39651984d726cf727e12f446b70db78cd6f96e3515", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/popt-1.19-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3dca46c310266fc9cce48d39651984d726cf727e12f446b70db78cd6f96e3515", + ], +) + +rpm( + name = "popt-0__1.19-8.el10.x86_64", + sha256 = "bd15d2816600655a5241bc3efe6e1ac386061ba6ff2d05e53c70683db8761e5f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/popt-1.19-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bd15d2816600655a5241bc3efe6e1ac386061ba6ff2d05e53c70683db8761e5f", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.aarch64", + sha256 = "a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/procps-ng-3.3.17-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.s390x", + sha256 = "3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/procps-ng-3.3.17-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.x86_64", + sha256 = "e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/procps-ng-3.3.17-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + ], +) + +rpm( + name = "procps-ng-0__4.0.4-11.el10.aarch64", + sha256 = "26a96aa657f03c0c9ffc1ba1aa4179968dc8562dfc318b580f4302488cd90eeb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/procps-ng-4.0.4-11.el10.aarch64.rpm", + ], +) + +rpm( + name = "procps-ng-0__4.0.4-11.el10.s390x", + sha256 = "f1495ad3d30b26ac57ca426afc269273a2c8b8fcab3038f89562cbb01ac8a46d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/procps-ng-4.0.4-11.el10.s390x.rpm", + ], +) + +rpm( + name = "procps-ng-0__4.0.4-11.el10.x86_64", + sha256 = "254f0ca7dff78c95f5b6319293cca056b666f2412bc94efd5fa4d39acecbf98b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/procps-ng-4.0.4-11.el10.x86_64.rpm", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.aarch64", + sha256 = "7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/protobuf-c-1.3.3-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.s390x", + sha256 = "a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/protobuf-c-1.3.3-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.x86_64", + sha256 = "3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/protobuf-c-1.3.3-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + ], +) + +rpm( + name = "protobuf-c-0__1.5.0-6.el10.aarch64", + sha256 = "3e17d0b103c0444852bbb952e39a64bb18b36f797cf5d4fd1bea57d9bc2c4cbe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/protobuf-c-1.5.0-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3e17d0b103c0444852bbb952e39a64bb18b36f797cf5d4fd1bea57d9bc2c4cbe", + ], +) + +rpm( + name = "protobuf-c-0__1.5.0-6.el10.s390x", + sha256 = "70c17f3805e9ecb6eaef0c13ae83b889405c22bdf09eafc74d3f0ba26e0882c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/protobuf-c-1.5.0-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/70c17f3805e9ecb6eaef0c13ae83b889405c22bdf09eafc74d3f0ba26e0882c0", + ], +) + +rpm( + name = "protobuf-c-0__1.5.0-6.el10.x86_64", + sha256 = "a7e792e5ed4f89d5f48eb60453619a6e0ad5cd34469526952c1748f1a99ce3ba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/protobuf-c-1.5.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7e792e5ed4f89d5f48eb60453619a6e0ad5cd34469526952c1748f1a99ce3ba", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.aarch64", + sha256 = "4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/psmisc-23.4-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.s390x", + sha256 = "2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/psmisc-23.4-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.x86_64", + sha256 = "e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/psmisc-23.4-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + ], +) + +rpm( + name = "psmisc-0__23.6-8.el10.aarch64", + sha256 = "cca0153b72dfb9c9e2f9f8386514ff9591b6166e0746ff32d5cda0eeb9adbaba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/psmisc-23.6-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cca0153b72dfb9c9e2f9f8386514ff9591b6166e0746ff32d5cda0eeb9adbaba", + ], +) + +rpm( + name = "psmisc-0__23.6-8.el10.s390x", + sha256 = "3c0f3724b4040c7a6c07f5405850ed172f906daa9a7904cd78c8e52c680d4611", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/psmisc-23.6-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3c0f3724b4040c7a6c07f5405850ed172f906daa9a7904cd78c8e52c680d4611", + ], +) + +rpm( + name = "psmisc-0__23.6-8.el10.x86_64", + sha256 = "9fea410c82d95565a4cbb178da9557ec9cef3512d573efd4dd940c9f2c4219cf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/psmisc-23.6-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9fea410c82d95565a4cbb178da9557ec9cef3512d573efd4dd940c9f2c4219cf", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.s390x", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.x86_64", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20240107-5.el10.s390x", + sha256 = "440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/publicsuffix-list-dafsa-20240107-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20240107-5.el10.x86_64", + sha256 = "440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20240107-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + ], +) + +rpm( + name = "python3-0__3.12.12-3.el10.aarch64", + sha256 = "21775dabf6661090390f8c62c21d436de108d0487e1cc2530c0523b869bd2b45", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-3.12.12-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/21775dabf6661090390f8c62c21d436de108d0487e1cc2530c0523b869bd2b45", + ], +) + +rpm( + name = "python3-0__3.12.12-3.el10.s390x", + sha256 = "a6bd9d3a578d948bb4deca00b9f0dbc9c6f3d44a318a97ebd469a8d89ca3d39e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-3.12.12-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a6bd9d3a578d948bb4deca00b9f0dbc9c6f3d44a318a97ebd469a8d89ca3d39e", + ], +) + +rpm( + name = "python3-0__3.12.12-3.el10.x86_64", + sha256 = "cd420c83445309ee7ded2740579742da574ab210ed2209d11472a34307fc1b5c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-3.12.12-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cd420c83445309ee7ded2740579742da574ab210ed2209d11472a34307fc1b5c", + ], +) + +rpm( + name = "python3-0__3.9.25-3.el9.aarch64", + sha256 = "6bcc49ccb04386015b21e0f9a97e4e74fddc3b2aaeb11a4de890662bea8116d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-3.9.25-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6bcc49ccb04386015b21e0f9a97e4e74fddc3b2aaeb11a4de890662bea8116d0", + ], +) + +rpm( + name = "python3-0__3.9.25-3.el9.s390x", + sha256 = "8d256069560f02e70dab77d81fb1f8427adcdabc8f55ac1d64e9c8975b0eab6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-3.9.25-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8d256069560f02e70dab77d81fb1f8427adcdabc8f55ac1d64e9c8975b0eab6e", + ], +) + +rpm( + name = "python3-0__3.9.25-3.el9.x86_64", + sha256 = "80665300816d833df3f3ed808022c53dda3c3687901bfaf802780bc0b7899842", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-3.9.25-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/80665300816d833df3f3ed808022c53dda3c3687901bfaf802780bc0b7899842", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.aarch64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.s390x", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.x86_64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-9.el10.aarch64", + sha256 = "bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-configshell-1.1.30-9.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-9.el10.s390x", + sha256 = "bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-configshell-1.1.30-9.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-9.el10.x86_64", + sha256 = "bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-configshell-1.1.30-9.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.aarch64", + sha256 = "ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-dbus-1.2.18-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.s390x", + sha256 = "6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-dbus-1.2.18-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.x86_64", + sha256 = "8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-dbus-1.2.18-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + ], +) + +rpm( + name = "python3-dbus-0__1.3.2-8.el10.aarch64", + sha256 = "6508de73c7fb8966b0d05f631af1002cb5238237791b0bd1b085384b9d6e15fd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-dbus-1.3.2-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6508de73c7fb8966b0d05f631af1002cb5238237791b0bd1b085384b9d6e15fd", + ], +) + +rpm( + name = "python3-dbus-0__1.3.2-8.el10.s390x", + sha256 = "98bf40e2dadd95cc0640650673b54d2dc7ebfa48bbba64a7857aede9c42550a5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-dbus-1.3.2-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/98bf40e2dadd95cc0640650673b54d2dc7ebfa48bbba64a7857aede9c42550a5", + ], +) + +rpm( + name = "python3-dbus-0__1.3.2-8.el10.x86_64", + sha256 = "95455a0bc5c76704ba2e46f5dd68b8bd47027b83ae551d62f02b15415a78a164", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-dbus-1.3.2-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/95455a0bc5c76704ba2e46f5dd68b8bd47027b83ae551d62f02b15415a78a164", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.aarch64", + sha256 = "815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-3.40.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.s390x", + sha256 = "7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-3.40.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.x86_64", + sha256 = "bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-3.40.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + ], +) + +rpm( + name = "python3-gobject-base-0__3.46.0-7.el10.aarch64", + sha256 = "66267f4d40ef4d29b7084c60752688856a78949de1347292d4fe25be501e024b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-3.46.0-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/66267f4d40ef4d29b7084c60752688856a78949de1347292d4fe25be501e024b", + ], +) + +rpm( + name = "python3-gobject-base-0__3.46.0-7.el10.s390x", + sha256 = "19a92f5cebbd47d89e69c63172d504154790e0ef013967d872ceb7ab0bc4b3f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-gobject-base-3.46.0-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/19a92f5cebbd47d89e69c63172d504154790e0ef013967d872ceb7ab0bc4b3f3", + ], +) + +rpm( + name = "python3-gobject-base-0__3.46.0-7.el10.x86_64", + sha256 = "dd8582c736f50481252e556960f885c63af2d6a64888027d9345e35ec9bc0e27", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-3.46.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd8582c736f50481252e556960f885c63af2d6a64888027d9345e35ec9bc0e27", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.s390x", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.46.0-7.el10.aarch64", + sha256 = "2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-noarch-3.46.0-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.46.0-7.el10.s390x", + sha256 = "2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-gobject-base-noarch-3.46.0-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.46.0-7.el10.x86_64", + sha256 = "2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-noarch-3.46.0-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.aarch64", + sha256 = "600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-kmod-0.9-32.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.s390x", + sha256 = "d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-kmod-0.9-32.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.x86_64", + sha256 = "e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-kmod-0.9-32.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + ], +) + +rpm( + name = "python3-kmod-0__0.9.2-6.el10.aarch64", + sha256 = "75e70ceef21104220cd13f4de2cd23669c5660c23a07d15e471b39fa61418e8e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-kmod-0.9.2-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/75e70ceef21104220cd13f4de2cd23669c5660c23a07d15e471b39fa61418e8e", + ], +) + +rpm( + name = "python3-kmod-0__0.9.2-6.el10.s390x", + sha256 = "cc4bf90e94d8a7ac36762f21899fc174fe734aae502af314933685c0a342e832", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-kmod-0.9.2-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/cc4bf90e94d8a7ac36762f21899fc174fe734aae502af314933685c0a342e832", + ], +) + +rpm( + name = "python3-kmod-0__0.9.2-6.el10.x86_64", + sha256 = "c9f50b595ee5a45bb14d571974662ed42c84bcb8660c3a78da891038847da651", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-kmod-0.9.2-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c9f50b595ee5a45bb14d571974662ed42c84bcb8660c3a78da891038847da651", + ], +) + +rpm( + name = "python3-libs-0__3.12.12-3.el10.aarch64", + sha256 = "9f56d7dd4675899a19162cce8b778a232afc8f4513b6c69c2e66dd6a4fe0bf5e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-libs-3.12.12-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9f56d7dd4675899a19162cce8b778a232afc8f4513b6c69c2e66dd6a4fe0bf5e", + ], +) + +rpm( + name = "python3-libs-0__3.12.12-3.el10.s390x", + sha256 = "0103b4031a7fb202d5361241ddfcee0d96e0ec33bc7161ca617a9a019d6f30f8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-libs-3.12.12-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/0103b4031a7fb202d5361241ddfcee0d96e0ec33bc7161ca617a9a019d6f30f8", + ], +) + +rpm( + name = "python3-libs-0__3.12.12-3.el10.x86_64", + sha256 = "d20b719ab3bd3456197544ea9f8e14d0c566987153480ca264ce1e15056b6da8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-libs-3.12.12-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d20b719ab3bd3456197544ea9f8e14d0c566987153480ca264ce1e15056b6da8", + ], +) + +rpm( + name = "python3-libs-0__3.9.25-3.el9.aarch64", + sha256 = "a7382c2bf7a19df0250ca2f28a7e25a294a19b42e54a5a63c5c499b8c6c6c685", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-libs-3.9.25-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a7382c2bf7a19df0250ca2f28a7e25a294a19b42e54a5a63c5c499b8c6c6c685", + ], +) + +rpm( + name = "python3-libs-0__3.9.25-3.el9.s390x", + sha256 = "48ddc59124e89c00be67d752f6d2c4f6e65c8681a454bc69b39392f569fe8518", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-libs-3.9.25-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/48ddc59124e89c00be67d752f6d2c4f6e65c8681a454bc69b39392f569fe8518", + ], +) + +rpm( + name = "python3-libs-0__3.9.25-3.el9.x86_64", + sha256 = "8929e0c6a72abb2f4890897b80ad9ad28c2cab6c7aeae8b145400c0f21443ace", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-libs-3.9.25-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8929e0c6a72abb2f4890897b80ad9ad28c2cab6c7aeae8b145400c0f21443ace", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.aarch64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.s390x", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.x86_64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__23.3.2-7.el10.aarch64", + sha256 = "19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-pip-wheel-23.3.2-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + ], +) + +rpm( + name = "python3-pip-wheel-0__23.3.2-7.el10.s390x", + sha256 = "19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-pip-wheel-23.3.2-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + ], +) + +rpm( + name = "python3-pip-wheel-0__23.3.2-7.el10.x86_64", + sha256 = "19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-pip-wheel-23.3.2-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.aarch64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.s390x", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.x86_64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__3.1.1-7.el10.aarch64", + sha256 = "8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-pyparsing-3.1.1-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + ], +) + +rpm( + name = "python3-pyparsing-0__3.1.1-7.el10.s390x", + sha256 = "8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-pyparsing-3.1.1-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + ], +) + +rpm( + name = "python3-pyparsing-0__3.1.1-7.el10.x86_64", + sha256 = "8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-pyparsing-3.1.1-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.aarch64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.s390x", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.x86_64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.24.1-10.el10.aarch64", + sha256 = "69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-pyudev-0.24.1-10.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + ], +) + +rpm( + name = "python3-pyudev-0__0.24.1-10.el10.s390x", + sha256 = "69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-pyudev-0.24.1-10.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + ], +) + +rpm( + name = "python3-pyudev-0__0.24.1-10.el10.x86_64", + sha256 = "69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-pyudev-0.24.1-10.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.aarch64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.s390x", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.x86_64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-12.el10.aarch64", + sha256 = "4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/python3-rtslib-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-12.el10.s390x", + sha256 = "4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/python3-rtslib-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-12.el10.x86_64", + sha256 = "4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/python3-rtslib-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.aarch64", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.s390x", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.x86_64", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.aarch64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.s390x", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.x86_64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.16.0-16.el10.aarch64", + sha256 = "587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-six-1.16.0-16.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + ], +) + +rpm( + name = "python3-six-0__1.16.0-16.el10.s390x", + sha256 = "587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-six-1.16.0-16.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + ], +) + +rpm( + name = "python3-six-0__1.16.0-16.el10.x86_64", + sha256 = "587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-six-1.16.0-16.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + ], +) + +rpm( + name = "python3-typing-extensions-0__4.9.0-6.el10.aarch64", + sha256 = "d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-typing-extensions-4.9.0-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + ], +) + +rpm( + name = "python3-typing-extensions-0__4.9.0-6.el10.s390x", + sha256 = "d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-typing-extensions-4.9.0-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + ], +) + +rpm( + name = "python3-typing-extensions-0__4.9.0-6.el10.x86_64", + sha256 = "d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-typing-extensions-4.9.0-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.aarch64", + sha256 = "a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-urwid-2.1.2-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.s390x", + sha256 = "8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-urwid-2.1.2-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.x86_64", + sha256 = "b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-urwid-2.1.2-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + ], +) + +rpm( + name = "python3-urwid-0__2.5.3-4.el10.aarch64", + sha256 = "b754bb3fe723d716e43404b58f706b506b14123fbfd3cad0fa016da10ce7aaf0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-urwid-2.5.3-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b754bb3fe723d716e43404b58f706b506b14123fbfd3cad0fa016da10ce7aaf0", + ], +) + +rpm( + name = "python3-urwid-0__2.5.3-4.el10.s390x", + sha256 = "e73588c982971858102bb9a6804391709e72e5dd765034f5e4b1d7bea8c59332", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-urwid-2.5.3-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/e73588c982971858102bb9a6804391709e72e5dd765034f5e4b1d7bea8c59332", + ], +) + +rpm( + name = "python3-urwid-0__2.5.3-4.el10.x86_64", + sha256 = "8ccc08409b227ee8b2cc6879a3b2f84a0e9cc792b720f3b5b7dd1381109a51cd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-urwid-2.5.3-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8ccc08409b227ee8b2cc6879a3b2f84a0e9cc792b720f3b5b7dd1381109a51cd", + ], +) + +rpm( + name = "python3-wcwidth-0__0.2.6-6.el10.aarch64", + sha256 = "0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-wcwidth-0.2.6-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + ], +) + +rpm( + name = "python3-wcwidth-0__0.2.6-6.el10.s390x", + sha256 = "0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-wcwidth-0.2.6-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + ], +) + +rpm( + name = "python3-wcwidth-0__0.2.6-6.el10.x86_64", + sha256 = "0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-wcwidth-0.2.6-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + ], +) + +rpm( + name = "qemu-img-17__10.1.0-10.el9.aarch64", + sha256 = "b3c671a12649fcba7d3874ac0e0c0afc270a3faeef9c1a790c97befd38a30872", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-img-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b3c671a12649fcba7d3874ac0e0c0afc270a3faeef9c1a790c97befd38a30872", + ], +) + +rpm( + name = "qemu-img-17__10.1.0-10.el9.s390x", + sha256 = "f70342c7ed802c44ae8bde3519d4b9f502f843f248846955960a39a2a1ece164", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-img-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f70342c7ed802c44ae8bde3519d4b9f502f843f248846955960a39a2a1ece164", + ], +) + +rpm( + name = "qemu-img-17__10.1.0-10.el9.x86_64", + sha256 = "020472c00f3160f8bcc5b13cfdacc46d5e65676b40e5758a6b7f64de168fac79", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-img-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/020472c00f3160f8bcc5b13cfdacc46d5e65676b40e5758a6b7f64de168fac79", + ], +) + +rpm( + name = "qemu-img-17__9.1.0-15.el9.x86_64", + sha256 = "6149224d6968142db7c12330dd4d9f6882af2ad73a97e591214a3869603b663f", + urls = ["https://storage.googleapis.com/builddeps/6149224d6968142db7c12330dd4d9f6882af2ad73a97e591214a3869603b663f"], +) + +rpm( + name = "qemu-img-18__10.1.0-13.el10.aarch64", + sha256 = "c334bac151735990b5942f1e76682d90a61e7fe46a8cdb184d14d273c7ae0f8a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-img-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-img-18__10.1.0-13.el10.s390x", + sha256 = "2f2f9b0eaa327acf3c8480d7c34971d212fb2c4c649cf635be680148ad90f8e0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-img-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-img-18__10.1.0-13.el10.x86_64", + sha256 = "eddf85aa1c66c902f296086d9ee9209eedaf7756b88b021becbf52250d57ff84", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-img-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-common-17__10.1.0-10.el9.aarch64", + sha256 = "7850e9a4e039659e3fd94e1b45a46eab5b069c78832a6f1520eb6e60c0681b47", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-common-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7850e9a4e039659e3fd94e1b45a46eab5b069c78832a6f1520eb6e60c0681b47", + ], +) + +rpm( + name = "qemu-kvm-common-17__10.1.0-10.el9.s390x", + sha256 = "0fe7718edf8c464fdc6c346bbd65bd2468f3266c34960426f1fe02303183d2c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-common-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0fe7718edf8c464fdc6c346bbd65bd2468f3266c34960426f1fe02303183d2c3", + ], +) + +rpm( + name = "qemu-kvm-common-17__10.1.0-10.el9.x86_64", + sha256 = "8ef35ad940fedae158346385fe825c0309f8ad6495df73a552b13c3383b9d4b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-common-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8ef35ad940fedae158346385fe825c0309f8ad6495df73a552b13c3383b9d4b7", + ], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-15.el9.x86_64", + sha256 = "345b3dae626a756f160321e025774d3d3e193a767388e69ffc832ea75988b166", + urls = ["https://storage.googleapis.com/builddeps/345b3dae626a756f160321e025774d3d3e193a767388e69ffc832ea75988b166"], +) + +rpm( + name = "qemu-kvm-common-18__10.1.0-13.el10.aarch64", + sha256 = "291dd37954e59493a89223ad9f81a9314640d199defa685c8673b1966c4cdbc7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-common-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-common-18__10.1.0-13.el10.s390x", + sha256 = "4da254d139019a8f383a647eae10e7346f9b81223455be5c085274ca7e6683cb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-common-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-common-18__10.1.0-13.el10.x86_64", + sha256 = "bf468ce8b8c945949bab6a483aa5a2d37972388603a1d263a0f7abe4371c48da", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-common-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-core-17__10.1.0-10.el9.aarch64", + sha256 = "2b27d861d1f8019b3db06ba1ddfc6e4278ec5df2e6eca20251367465e39258f7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-core-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2b27d861d1f8019b3db06ba1ddfc6e4278ec5df2e6eca20251367465e39258f7", + ], +) + +rpm( + name = "qemu-kvm-core-17__10.1.0-10.el9.s390x", + sha256 = "34181ed8209aed15c3039287631e63958cecfd79e62f60f67aa9b7c4899b8ba1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-core-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/34181ed8209aed15c3039287631e63958cecfd79e62f60f67aa9b7c4899b8ba1", + ], +) + +rpm( + name = "qemu-kvm-core-17__10.1.0-10.el9.x86_64", + sha256 = "e24d2e3154b71618031cdd3314e7de9d6d68b032531a2098bf3d6cbcc0d9f4ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-core-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e24d2e3154b71618031cdd3314e7de9d6d68b032531a2098bf3d6cbcc0d9f4ef", + ], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-15.el9.x86_64", + sha256 = "aa36521b947a78d2d06d90e1a8f5d74bab5ffbbb6d8ca8d939497477c4878565", + urls = ["https://storage.googleapis.com/builddeps/aa36521b947a78d2d06d90e1a8f5d74bab5ffbbb6d8ca8d939497477c4878565"], +) + +rpm( + name = "qemu-kvm-core-18__10.1.0-13.el10.aarch64", + sha256 = "e1351b19e80bf371530b8d49d8d589e1a789cc0464a2f999a1770b5c43320a52", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-core-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-core-18__10.1.0-13.el10.s390x", + sha256 = "d2b3095a770314729c41aee04e9ffca1b4f8d9c79bc6b93d9e58620411b7592a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-core-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-core-18__10.1.0-13.el10.x86_64", + sha256 = "f2651a1a227fef8b5fc1848763d001a9ca40743334643e469f7258486d07b10a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-core-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.aarch64", + sha256 = "57f01d67fb90e28f8a0651b495f25a3f10e87ac96eef2227d3c3af01791e6e71", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/57f01d67fb90e28f8a0651b495f25a3f10e87ac96eef2227d3c3af01791e6e71", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.s390x", + sha256 = "c93b176d87f21c58ee277f3abaa04eebba2af8465356bc34a94b23207d0f4bd3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c93b176d87f21c58ee277f3abaa04eebba2af8465356bc34a94b23207d0f4bd3", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.x86_64", + sha256 = "a851e72c1f1684006e1bd104297beb94ac486dd931930ad59a754bdbaf1955ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a851e72c1f1684006e1bd104297beb94ac486dd931930ad59a754bdbaf1955ac", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.aarch64", + sha256 = "7d99b599a9fc94ab0e3f64904814d651093bd56e7fdffdd7541cdf4f4759dc50", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.s390x", + sha256 = "2a8e4788a6c853da54727e737ec1e1b26356610d3725dd55bba7ea7e1f4cc6d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.x86_64", + sha256 = "b70e259b1255e70cc87ebf3613199a501da745c08d48c7d4a2e5d8b18ca7e4fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-ccw-17__10.1.0-10.el9.s390x", + sha256 = "f1915ceafea5f2ad0ce567d25bb9d904c30139ab2924bb6ee43759959e68278f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-ccw-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f1915ceafea5f2ad0ce567d25bb9d904c30139ab2924bb6ee43759959e68278f", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-ccw-18__10.1.0-13.el10.s390x", + sha256 = "1fee5e6c7115e83a8739f82b51c1288b278b03eec3c7f2e00ed7eeded562d98f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-ccw-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.aarch64", + sha256 = "f3adcc8def322ea354c6a1a03cb984fdb983bfcb570d9a5c2d22c356edb068c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f3adcc8def322ea354c6a1a03cb984fdb983bfcb570d9a5c2d22c356edb068c2", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.x86_64", + sha256 = "abda4ef1719f3dd33951b9a6b95056ba370d34c72440c84f1a04c652a77f066d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/abda4ef1719f3dd33951b9a6b95056ba370d34c72440c84f1a04c652a77f066d", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.aarch64", + sha256 = "dbed8391729d60c658e7f548e9fa3e3070d25bc8b609e2432bdc875700999828", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.x86_64", + sha256 = "35bb029888dc5143dc869aca7e731979270074982bad51e6cc13b35d2ac771fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-vga-17__10.1.0-10.el9.x86_64", + sha256 = "b11c166261824350ea29f31dbc4327e6bf445fe340e2f91cd4f2c26b44332b6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-vga-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b11c166261824350ea29f31dbc4327e6bf445fe340e2f91cd4f2c26b44332b6b", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-vga-18__10.1.0-13.el10.x86_64", + sha256 = "364ce3b445a7adda3bf16965ba2a1ea8f0847079999fc6ff5ab0baede02daabc", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-vga-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__10.1.0-10.el9.aarch64", + sha256 = "82663b34760d96ffa404d63d386d8d886fe8ad25cf8e4856fe8ad3dec131742b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-host-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/82663b34760d96ffa404d63d386d8d886fe8ad25cf8e4856fe8ad3dec131742b", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__10.1.0-10.el9.s390x", + sha256 = "0eafa1d32cb0eb8fe9397093b4afc7bcbc0c3a2dc64f0accba099697c5ab30ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-usb-host-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0eafa1d32cb0eb8fe9397093b4afc7bcbc0c3a2dc64f0accba099697c5ab30ed", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__10.1.0-10.el9.x86_64", + sha256 = "2575227bcaed72dedc44c71b8fb893a58fe7322abfc3ca8f707073cedc6858ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-host-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2575227bcaed72dedc44c71b8fb893a58fe7322abfc3ca8f707073cedc6858ce", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-18__10.1.0-13.el10.aarch64", + sha256 = "2b0e780aebb78d567bedc65556d19b83929a2b5ac1114d7d7f745b120149db02", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-host-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-18__10.1.0-13.el10.s390x", + sha256 = "dc15b2d6dc2608866fc811f6dc3bc825d2e09e6fd3b75e977904da5e0af3e297", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-device-usb-host-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-18__10.1.0-13.el10.x86_64", + sha256 = "5ced8d0c7f3cff2e2fdc40020ca2b4d84e1b50b1fa6ce692859ff79fcb3bcc3b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-host-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.aarch64", + sha256 = "98897947fe9bce3726f43d6f1c594253a31e908a31e50d3d763d7c94db4de8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/98897947fe9bce3726f43d6f1c594253a31e908a31e50d3d763d7c94db4de8a1", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.x86_64", + sha256 = "54740022c454f0eb9fadd8f7eaa9f94e24115523fb473b034d46016806bc5c1f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/54740022c454f0eb9fadd8f7eaa9f94e24115523fb473b034d46016806bc5c1f", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.aarch64", + sha256 = "0cd21fde592c387c98f1891756edda010de0080749333303aeb92de88de84c31", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.x86_64", + sha256 = "84b0a0390040c9a3742d5d45441b7cf29fe88d9f71a3fe7be890e2d244fd1886", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-pr-helper-17__10.1.0-14.el9.aarch64", + sha256 = "1ac4b23b22841964cdd4367f1d088ba60d2b2c53f77c24b9a4bd7f99dfc40ede", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-pr-helper-10.1.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1ac4b23b22841964cdd4367f1d088ba60d2b2c53f77c24b9a4bd7f99dfc40ede", + ], +) + +rpm( + name = "qemu-pr-helper-17__10.1.0-14.el9.x86_64", + sha256 = "24d915c83801d66ba142b5eba134baa0f036dd6372145a3864843c476caad8cd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-pr-helper-10.1.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/24d915c83801d66ba142b5eba134baa0f036dd6372145a3864843c476caad8cd", + ], +) + +rpm( + name = "qemu-pr-helper-18__10.1.0-13.el10.aarch64", + sha256 = "e8f5eba7dbae62f05ff4dbc977ba7b9c91235abc1f01d24e5b0a3556a10cf77f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-pr-helper-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-pr-helper-18__10.1.0-13.el10.x86_64", + sha256 = "a69bcbe10ab4e2ca16c737671e590854cc420adfc50e4348019b32f01a9b5a4d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-pr-helper-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.aarch64", + sha256 = "2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/readline-8.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.s390x", + sha256 = "7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/readline-8.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.x86_64", + sha256 = "49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/readline-8.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + ], +) + +rpm( + name = "readline-0__8.2-11.el10.aarch64", + sha256 = "a1f1fe411d40cb802c7a3e3b105faffe05c2376563bec2d59c71ed28778684cd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/readline-8.2-11.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a1f1fe411d40cb802c7a3e3b105faffe05c2376563bec2d59c71ed28778684cd", + ], +) + +rpm( + name = "readline-0__8.2-11.el10.s390x", + sha256 = "fd8cc3c7dd19bf773afb0488b2521d1710dfc1d8337fbff55c9f8d84572a4f9f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/readline-8.2-11.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd8cc3c7dd19bf773afb0488b2521d1710dfc1d8337fbff55c9f8d84572a4f9f", + ], +) + +rpm( + name = "readline-0__8.2-11.el10.x86_64", + sha256 = "d8e2d7c011d0e5c56b6875919ce036605862db02d59d6983d470bc5757021783", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/readline-8.2-11.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8e2d7c011d0e5c56b6875919ce036605862db02d59d6983d470bc5757021783", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-37.el9.x86_64", + sha256 = "84caf776cfb5175fbe960dd8bb4bd10d799c45c3c0fd9d6b01bdf4d0c254d40d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84caf776cfb5175fbe960dd8bb4bd10d799c45c3c0fd9d6b01bdf4d0c254d40d", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-40.el9.aarch64", + sha256 = "75e4d04e5712c50d717088642fd23adb9ea62c9662a159c740375510c8f30a47", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-4.16.1.3-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/75e4d04e5712c50d717088642fd23adb9ea62c9662a159c740375510c8f30a47", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-40.el9.s390x", + sha256 = "9363a8f161f6965bbfc4bf591bbbfd9dfbdbafbd72a480f58dcacfddd0344048", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-4.16.1.3-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9363a8f161f6965bbfc4bf591bbbfd9dfbdbafbd72a480f58dcacfddd0344048", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-40.el9.x86_64", + sha256 = "46e39d6ce74f21c388ac74db702d74813253e0b79096905bc9683be4ff0323fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46e39d6ce74f21c388ac74db702d74813253e0b79096905bc9683be4ff0323fe", + ], +) + +rpm( + name = "rpm-0__4.19.1.1-23.el10.s390x", + sha256 = "05eda18d5bf13fa1b646db11f11c6a39f5f042d5dd1bc2737c2bc7c590086381", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/rpm-4.19.1.1-23.el10.s390x.rpm", + ], +) + +rpm( + name = "rpm-0__4.19.1.1-23.el10.x86_64", + sha256 = "65da87ed114dad6baedbb4f536c3cb492079ffde58223992124b1ddfaa80527c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/rpm-4.19.1.1-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-37.el9.x86_64", + sha256 = "ff504743e1b532c3825d1c6d4d72109a998de862f3d8e4896b49aecd3f33d3ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff504743e1b532c3825d1c6d4d72109a998de862f3d8e4896b49aecd3f33d3ed", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-40.el9.aarch64", + sha256 = "aeddcc0609d5a2faa1206148be2514becc210a5422e7eb6be7a9a159c1e910ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-libs-4.16.1.3-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/aeddcc0609d5a2faa1206148be2514becc210a5422e7eb6be7a9a159c1e910ff", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-40.el9.s390x", + sha256 = "699c13851921821ce338801d19d59cf0ba91584bd7c483a3cbae7466ef6779db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-libs-4.16.1.3-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/699c13851921821ce338801d19d59cf0ba91584bd7c483a3cbae7466ef6779db", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-40.el9.x86_64", + sha256 = "5a141739706737beb8c89678cc9a9c7d5adc35f9d893b3ecf919b42c83775dae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a141739706737beb8c89678cc9a9c7d5adc35f9d893b3ecf919b42c83775dae", + ], +) + +rpm( + name = "rpm-libs-0__4.19.1.1-23.el10.s390x", + sha256 = "d2f001506bd3564cda8ca18612ed21f2ab4cbf9fb30538364fbf88920247c3e7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/rpm-libs-4.19.1.1-23.el10.s390x.rpm", + ], +) + +rpm( + name = "rpm-libs-0__4.19.1.1-23.el10.x86_64", + sha256 = "8952882f16d10aab6a9024bea682baed30fdd412a9a85cab7ae0695acda1950a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.19.1.1-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-37.el9.x86_64", + sha256 = "0abb8313e99600887e851d249d914968a0b5623aead736831077f7d53be25837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0abb8313e99600887e851d249d914968a0b5623aead736831077f7d53be25837", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-40.el9.aarch64", + sha256 = "19ce6961dfec6e9f818d633e3730c0990b14411757eeb17139d2a1ee71e1c785", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-plugin-selinux-4.16.1.3-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19ce6961dfec6e9f818d633e3730c0990b14411757eeb17139d2a1ee71e1c785", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x", + sha256 = "42758d8484ace9e5df8edab294d1e31cf30c7f0c641ac5b9150baf1f6efc25e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-plugin-selinux-4.16.1.3-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/42758d8484ace9e5df8edab294d1e31cf30c7f0c641ac5b9150baf1f6efc25e9", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64", + sha256 = "9b9ed99dde1c72fbb7860370d5b80c8fe83c54519887fe62dbf74acee9b23eb7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9b9ed99dde1c72fbb7860370d5b80c8fe83c54519887fe62dbf74acee9b23eb7", + ], +) + +rpm( + name = "rpm-sequoia-0__1.10.1.1-2.el10.s390x", + sha256 = "d9bf8f0c9d1a2e1a996e28cf7204025d4f1bf84ebb37d173893b5ad96dca6de0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/rpm-sequoia-1.10.1.1-2.el10.s390x.rpm", + ], +) + +rpm( + name = "rpm-sequoia-0__1.10.1.1-2.el10.x86_64", + sha256 = "63f4b9b90993d210e41ff934300a887d125c2f20ca82f9426aa81367801f76ed", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/rpm-sequoia-1.10.1.1-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "scrub-0__2.6.1-11.el10.s390x", + sha256 = "527e3cf6d20579cbc13efd1b13c639c243e538b6e6121a22efd46ec13d2fa557", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/scrub-2.6.1-11.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/527e3cf6d20579cbc13efd1b13c639c243e538b6e6121a22efd46ec13d2fa557", + ], +) + +rpm( + name = "scrub-0__2.6.1-11.el10.x86_64", + sha256 = "935258a3ef8ada2d8cba193df349c9d1dc62d38018b9613aab6f727f93655f85", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/scrub-2.6.1-11.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/935258a3ef8ada2d8cba193df349c9d1dc62d38018b9613aab6f727f93655f85", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.s390x", + sha256 = "eadebb92f9a6955e7f3391ea9964c1e66f84afeeff1abd23b1c4137fdc21625c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/scrub-2.6.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/eadebb92f9a6955e7f3391ea9964c1e66f84afeeff1abd23b1c4137fdc21625c", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.x86_64", + sha256 = "cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/scrub-2.6.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + ], +) + +rpm( + name = "seabios-0__1.16.3-4.el9.x86_64", + sha256 = "017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-1.16.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + ], +) + +rpm( + name = "seabios-0__1.17.0-1.el10.x86_64", + sha256 = "18044b16fa0f0256167f42ba6ab1f8b5ac338747e150d3c9aead064cd28255c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/seabios-1.17.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/18044b16fa0f0256167f42ba6ab1f8b5ac338747e150d3c9aead064cd28255c9", + ], +) + +rpm( + name = "seabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + ], +) + +rpm( + name = "seabios-bin-0__1.17.0-1.el10.x86_64", + sha256 = "5edf7ad5039c74faab0fe3bc7f9741db6153c6f9ebe3367d20701d4e659d930d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/seabios-bin-1.17.0-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/5edf7ad5039c74faab0fe3bc7f9741db6153c6f9ebe3367d20701d4e659d930d", + ], +) + +rpm( + name = "seavgabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seavgabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + ], +) + +rpm( + name = "seavgabios-bin-0__1.17.0-1.el10.x86_64", + sha256 = "5ed6563e3d13189aa28fe86d0fef8540d61539aa44dd2d5558ca068e79df4ea2", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/seavgabios-bin-1.17.0-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/5ed6563e3d13189aa28fe86d0fef8540d61539aa44dd2d5558ca068e79df4ea2", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.aarch64", + sha256 = "cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sed-4.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.s390x", + sha256 = "7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sed-4.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.x86_64", + sha256 = "a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sed-4.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + ], +) + +rpm( + name = "sed-0__4.9-5.el10.aarch64", + sha256 = "9c03d6148a319111bce62ba46e859c17c6615f51648788b499e28cbb429d1390", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/sed-4.9-5.el10.aarch64.rpm", + ], +) + +rpm( + name = "sed-0__4.9-5.el10.s390x", + sha256 = "428403e0e45d47510ffc7bebbe47a7e981bbe5347432f4b055e23c199482cbd3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/sed-4.9-5.el10.s390x.rpm", + ], +) + +rpm( + name = "sed-0__4.9-5.el10.x86_64", + sha256 = "b5c61c0b1b90892375c36acaf52f8a19e68397a18703687df8b1883792485b7c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/sed-4.9-5.el10.x86_64.rpm", + ], +) + +rpm( + name = "selinux-policy-0__38.1.53-2.el9.x86_64", + sha256 = "6840efbf87f7f4782c332e0e0a3e3567075a804c070b1d501ff7e7a44a09448c", + urls = ["https://storage.googleapis.com/builddeps/6840efbf87f7f4782c332e0e0a3e3567075a804c070b1d501ff7e7a44a09448c"], +) + +rpm( + name = "selinux-policy-0__38.1.73-1.el9.aarch64", + sha256 = "8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + ], +) + +rpm( + name = "selinux-policy-0__38.1.73-1.el9.s390x", + sha256 = "8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + ], +) + +rpm( + name = "selinux-policy-0__38.1.73-1.el9.x86_64", + sha256 = "8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + ], +) + +rpm( + name = "selinux-policy-0__42.1.18-1.el10.aarch64", + sha256 = "d21ac667e6418d0379245ecb8c9592a09c3df71251ba1164723356964888bf53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/selinux-policy-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-0__42.1.18-1.el10.s390x", + sha256 = "d21ac667e6418d0379245ecb8c9592a09c3df71251ba1164723356964888bf53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/selinux-policy-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-0__42.1.18-1.el10.x86_64", + sha256 = "d21ac667e6418d0379245ecb8c9592a09c3df71251ba1164723356964888bf53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/selinux-policy-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.53-2.el9.x86_64", + sha256 = "b9f921bdc764af3b8c5c8580fc9db4f75b0fb3b2c0a3ea1f541536de091664b1", + urls = ["https://storage.googleapis.com/builddeps/b9f921bdc764af3b8c5c8580fc9db4f75b0fb3b2c0a3ea1f541536de091664b1"], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.73-1.el9.aarch64", + sha256 = "eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-targeted-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.73-1.el9.s390x", + sha256 = "eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-targeted-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.73-1.el9.x86_64", + sha256 = "eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-targeted-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + ], +) + +rpm( + name = "selinux-policy-targeted-0__42.1.18-1.el10.aarch64", + sha256 = "f1172e2fe9c60cc6c80751e8fbb4af7e5e3a5ca7acf35099f9a1a2b1f0c76679", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/selinux-policy-targeted-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-targeted-0__42.1.18-1.el10.s390x", + sha256 = "f1172e2fe9c60cc6c80751e8fbb4af7e5e3a5ca7acf35099f9a1a2b1f0c76679", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/selinux-policy-targeted-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-targeted-0__42.1.18-1.el10.x86_64", + sha256 = "f1172e2fe9c60cc6c80751e8fbb4af7e5e3a5ca7acf35099f9a1a2b1f0c76679", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/selinux-policy-targeted-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.aarch64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.s390x", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.x86_64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.14.5-7.el10.aarch64", + sha256 = "bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/setup-2.14.5-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + ], +) + +rpm( + name = "setup-0__2.14.5-7.el10.s390x", + sha256 = "bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/setup-2.14.5-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + ], +) + +rpm( + name = "setup-0__2.14.5-7.el10.x86_64", + sha256 = "bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/setup-2.14.5-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.aarch64", + sha256 = "10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/sevctl-0.1.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.s390x", + sha256 = "1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/sevctl-0.1.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + ], +) + +rpm( + name = "sevctl-0__0.4.2-1.el9.x86_64", + sha256 = "3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sevctl-0.4.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + ], +) + +rpm( + name = "sevctl-0__0.4.3-3.el10.x86_64", + sha256 = "790b23bb704c9c42b9478b859f909186751771d9c8e864b5b1eb7a0158e690ca", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/sevctl-0.4.3-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/790b23bb704c9c42b9478b859f909186751771d9c8e864b5b1eb7a0158e690ca", + ], +) + +rpm( + name = "shadow-utils-2__4.15.0-11.el10.aarch64", + sha256 = "cf81c04143f75cd2893089539ece1797cf8ac082fd8a50216c6f63e063f93eb5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/shadow-utils-4.15.0-11.el10.aarch64.rpm", + ], +) + +rpm( + name = "shadow-utils-2__4.15.0-11.el10.s390x", + sha256 = "25a8991e9008d4e4cd0a4e39771eb738d233d892cdefcc5229ba19d9d314fbe5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/shadow-utils-4.15.0-11.el10.s390x.rpm", + ], +) + +rpm( + name = "shadow-utils-2__4.15.0-11.el10.x86_64", + sha256 = "8239e11a6d17f424a99eaa9fee41fc9516125f15ab0c60db1ba8658bdbe65eb2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.15.0-11.el10.x86_64.rpm", + ], +) + +rpm( + name = "shadow-utils-2__4.9-12.el9.x86_64", + sha256 = "23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + ], +) + +rpm( + name = "shadow-utils-2__4.9-16.el9.aarch64", + sha256 = "085a4d0d20ee46e72564939e92533fbf4c049658c58d4e7cc075d5da5baa7098", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/shadow-utils-4.9-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/085a4d0d20ee46e72564939e92533fbf4c049658c58d4e7cc075d5da5baa7098", + ], +) + +rpm( + name = "shadow-utils-2__4.9-16.el9.s390x", + sha256 = "18c43c994a4c8f6c97c195f2bf30ffad338b3cf5ee08e3d813731dbcedf51b4e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/shadow-utils-4.9-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18c43c994a4c8f6c97c195f2bf30ffad338b3cf5ee08e3d813731dbcedf51b4e", + ], +) + +rpm( + name = "shadow-utils-2__4.9-16.el9.x86_64", + sha256 = "f82dcf66ba99287eaebe3225cb01d252eea40202b0b263a2b2619f87d98918fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f82dcf66ba99287eaebe3225cb01d252eea40202b0b263a2b2619f87d98918fd", + ], +) + +rpm( + name = "snappy-0__1.1.10-7.el10.aarch64", + sha256 = "cc7bc94dc673d8d6d5b4559036648410e790e2c59e2254bc6acd1578fb5e6781", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/snappy-1.1.10-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cc7bc94dc673d8d6d5b4559036648410e790e2c59e2254bc6acd1578fb5e6781", + ], +) + +rpm( + name = "snappy-0__1.1.10-7.el10.s390x", + sha256 = "03a4ac68f64e146332224557a251a9d051dada615815dd6eb2f4bb22b73826e0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/snappy-1.1.10-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/03a4ac68f64e146332224557a251a9d051dada615815dd6eb2f4bb22b73826e0", + ], +) + +rpm( + name = "snappy-0__1.1.10-7.el10.x86_64", + sha256 = "952dcfbe66d93bece4a4f3753ce721594acbd2af82cd5ca02bf9028375c136b3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/snappy-1.1.10-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/952dcfbe66d93bece4a4f3753ce721594acbd2af82cd5ca02bf9028375c136b3", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.aarch64", + sha256 = "02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/snappy-1.1.8-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.s390x", + sha256 = "e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/snappy-1.1.8-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.x86_64", + sha256 = "10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/snappy-1.1.8-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-7.el9.x86_64", + sha256 = "eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-9.el9.aarch64", + sha256 = "115fbe01cb007257cbd277bb83e63eb211dd244f10e150e5e71b3edca68181c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sqlite-libs-3.34.1-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/115fbe01cb007257cbd277bb83e63eb211dd244f10e150e5e71b3edca68181c6", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-9.el9.s390x", + sha256 = "759932a92153b14492308c8330aa398fcabec87f2b42635a231b455431032f3b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sqlite-libs-3.34.1-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/759932a92153b14492308c8330aa398fcabec87f2b42635a231b455431032f3b", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-9.el9.x86_64", + sha256 = "88abee2ce36a11d707d610e796afcd2919a7adc3bb5ba4e92b08ef06046e6970", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/88abee2ce36a11d707d610e796afcd2919a7adc3bb5ba4e92b08ef06046e6970", + ], +) + +rpm( + name = "sqlite-libs-0__3.46.1-5.el10.aarch64", + sha256 = "217f00d515ac790fd028f0fd70a195a288258d0e1157ce6293ab65d29a965cf1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/sqlite-libs-3.46.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/217f00d515ac790fd028f0fd70a195a288258d0e1157ce6293ab65d29a965cf1", + ], +) + +rpm( + name = "sqlite-libs-0__3.46.1-5.el10.s390x", + sha256 = "34d97be1a2df9d53a327cec2ca15887897168b880a19a4b7af2b860ad80b35fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/sqlite-libs-3.46.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/34d97be1a2df9d53a327cec2ca15887897168b880a19a4b7af2b860ad80b35fe", + ], +) + +rpm( + name = "sqlite-libs-0__3.46.1-5.el10.x86_64", + sha256 = "fa8bd71adaf88ff1b893731fd5f49c949cf3f618332c9b80390113237699f8e7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.46.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fa8bd71adaf88ff1b893731fd5f49c949cf3f618332c9b80390113237699f8e7", + ], +) + +rpm( + name = "sssd-client-0__2.12.0-1.el10.aarch64", + sha256 = "38b0c51913fee7468a2e585c2e9ae811cbcd682ac266f3681da43dcd223d7718", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/sssd-client-2.12.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/38b0c51913fee7468a2e585c2e9ae811cbcd682ac266f3681da43dcd223d7718", + ], +) + +rpm( + name = "sssd-client-0__2.12.0-1.el10.s390x", + sha256 = "a7455c34c936bd13af3360275301ad413fc246e65a969cc32b3fb1b25c7870c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/sssd-client-2.12.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a7455c34c936bd13af3360275301ad413fc246e65a969cc32b3fb1b25c7870c0", + ], +) + +rpm( + name = "sssd-client-0__2.12.0-1.el10.x86_64", + sha256 = "83b0d541eaed2737ab42036d731df94094458b6f0fa39db2e23391b947d59ff0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/sssd-client-2.12.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/83b0d541eaed2737ab42036d731df94094458b6f0fa39db2e23391b947d59ff0", + ], +) + +rpm( + name = "sssd-client-0__2.9.8-1.el9.aarch64", + sha256 = "09956d57874696e6e40d78536bb25326d1d798e206e468048d4a122aca8d193d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sssd-client-2.9.8-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/09956d57874696e6e40d78536bb25326d1d798e206e468048d4a122aca8d193d", + ], +) + +rpm( + name = "sssd-client-0__2.9.8-1.el9.s390x", + sha256 = "6051a62aa35b330b7dc76f425317d06e10646cd6446682940258302697b1ce42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sssd-client-2.9.8-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6051a62aa35b330b7dc76f425317d06e10646cd6446682940258302697b1ce42", + ], +) + +rpm( + name = "sssd-client-0__2.9.8-1.el9.x86_64", + sha256 = "d14fb246e49b57d5170d6eb6f916458b119d34a810d66c9b522da12fbcb35406", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sssd-client-2.9.8-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d14fb246e49b57d5170d6eb6f916458b119d34a810d66c9b522da12fbcb35406", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.aarch64", + sha256 = "54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.s390x", + sha256 = "2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.x86_64", + sha256 = "e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + ], +) + +rpm( + name = "swtpm-0__0.9.0-2.el10.aarch64", + sha256 = "2ab32944b56a5d288754d90a3758d667cdc3703631488a2c2f4ac357880bff0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/swtpm-0.9.0-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2ab32944b56a5d288754d90a3758d667cdc3703631488a2c2f4ac357880bff0b", + ], +) + +rpm( + name = "swtpm-0__0.9.0-2.el10.s390x", + sha256 = "4fc33cbd8611b571b7952968cd67999ca3d457f7d331290ed5850f70d292f89d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/swtpm-0.9.0-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4fc33cbd8611b571b7952968cd67999ca3d457f7d331290ed5850f70d292f89d", + ], +) + +rpm( + name = "swtpm-0__0.9.0-2.el10.x86_64", + sha256 = "2754a70eda7d481964e28e610d493f0c705ae966e75dda10ee901a6cf2ef5919", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/swtpm-0.9.0-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2754a70eda7d481964e28e610d493f0c705ae966e75dda10ee901a6cf2ef5919", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.aarch64", + sha256 = "da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-libs-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.s390x", + sha256 = "2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-libs-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.x86_64", + sha256 = "732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-libs-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + ], +) + +rpm( + name = "swtpm-libs-0__0.9.0-2.el10.aarch64", + sha256 = "e4233f1d21b64737a8c42fecaa652b2388b897a8748b416cf4bd599f30dd7fe2", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/swtpm-libs-0.9.0-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e4233f1d21b64737a8c42fecaa652b2388b897a8748b416cf4bd599f30dd7fe2", + ], +) + +rpm( + name = "swtpm-libs-0__0.9.0-2.el10.s390x", + sha256 = "2cd497257c5a03b6e579f3ada2bef874350a0fbb0aad78cff5d38e247af20c0f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/swtpm-libs-0.9.0-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2cd497257c5a03b6e579f3ada2bef874350a0fbb0aad78cff5d38e247af20c0f", + ], +) + +rpm( + name = "swtpm-libs-0__0.9.0-2.el10.x86_64", + sha256 = "57b1c9b2ab6540e9504f32e1aa58331fc98ad9476e47b82907f42ab17ab5288a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/swtpm-libs-0.9.0-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/57b1c9b2ab6540e9504f32e1aa58331fc98ad9476e47b82907f42ab17ab5288a", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.aarch64", + sha256 = "35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-tools-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.s390x", + sha256 = "81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-tools-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.x86_64", + sha256 = "8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-tools-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + ], +) + +rpm( + name = "swtpm-tools-0__0.9.0-2.el10.aarch64", + sha256 = "7da6702303b52d8724152e1235f9e3a1eca4dbb7e2dc2ce51f0b32ac6e04aef9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/swtpm-tools-0.9.0-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7da6702303b52d8724152e1235f9e3a1eca4dbb7e2dc2ce51f0b32ac6e04aef9", + ], +) + +rpm( + name = "swtpm-tools-0__0.9.0-2.el10.s390x", + sha256 = "764ead866ad117155085de09e2d0cf5c483ef9aeb134421ae5cc00892aed146e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/swtpm-tools-0.9.0-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/764ead866ad117155085de09e2d0cf5c483ef9aeb134421ae5cc00892aed146e", + ], +) + +rpm( + name = "swtpm-tools-0__0.9.0-2.el10.x86_64", + sha256 = "4c16e59ac5ef48d0e83d6e0a83ba1838c25c6531fb3ef3564bf98643e1e70503", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/swtpm-tools-0.9.0-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4c16e59ac5ef48d0e83d6e0a83ba1838c25c6531fb3ef3564bf98643e1e70503", + ], +) + +rpm( + name = "systemd-0__252-51.el9.x86_64", + sha256 = "c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0", + urls = ["https://storage.googleapis.com/builddeps/c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0"], +) + +rpm( + name = "systemd-0__252-64.el9.aarch64", + sha256 = "5468eb07e3c5aa6f81e53a67a2cfaa76bb9eaa91a2054149c3eb47d27751c843", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5468eb07e3c5aa6f81e53a67a2cfaa76bb9eaa91a2054149c3eb47d27751c843", + ], +) + +rpm( + name = "systemd-0__252-64.el9.s390x", + sha256 = "5d61fb611b20b166e17d6f239535957939b5a021d9508f22d92cda060dd82fed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5d61fb611b20b166e17d6f239535957939b5a021d9508f22d92cda060dd82fed", + ], +) + +rpm( + name = "systemd-0__252-64.el9.x86_64", + sha256 = "845a3bc3e6bc8ca9e9d0f464b720aaf877860e013037fb410d872bc1d6d537d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/845a3bc3e6bc8ca9e9d0f464b720aaf877860e013037fb410d872bc1d6d537d7", + ], +) + +rpm( + name = "systemd-0__257-23.el10.aarch64", + sha256 = "4684bf8f477cd151d14eba31913a9e4f5a09612d96dd218f1c2d22bff4810300", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-0__257-23.el10.s390x", + sha256 = "375fd1c97eb57bc8c409d1906302b9e736fc1c5cb556f0854635d401ad754661", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-0__257-23.el10.x86_64", + sha256 = "ff0792bda28ac710de4e01c8d0d48bc592eff2cde037cf10c7dccae57b056d3e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-container-0__252-51.el9.x86_64", + sha256 = "653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde", + urls = ["https://storage.googleapis.com/builddeps/653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde"], +) + +rpm( + name = "systemd-container-0__252-64.el9.aarch64", + sha256 = "a85db64c78dac1e04435f0769c89a34084cf107e66e107267a94bd3c7532c294", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-container-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a85db64c78dac1e04435f0769c89a34084cf107e66e107267a94bd3c7532c294", + ], +) + +rpm( + name = "systemd-container-0__252-64.el9.s390x", + sha256 = "889bfeac74479f096d25e72d6d06b6715abc4b96f3969634f3256164673ed42b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-container-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/889bfeac74479f096d25e72d6d06b6715abc4b96f3969634f3256164673ed42b", + ], +) + +rpm( + name = "systemd-container-0__252-64.el9.x86_64", + sha256 = "730f7fbf6729e3cf4d9b0b56ca54b4ac960b0b297481cbccb4ae9287319c9615", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-container-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/730f7fbf6729e3cf4d9b0b56ca54b4ac960b0b297481cbccb4ae9287319c9615", + ], +) + +rpm( + name = "systemd-container-0__257-23.el10.aarch64", + sha256 = "7dde1f56f3e67618de6ea0a45a24dd3d12b7643498f3802275d36493baade015", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-container-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-container-0__257-23.el10.s390x", + sha256 = "70d4b61453fdff467a3c45972cefe2f81412c513426773e443341a43e0c9b9bb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-container-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-container-0__257-23.el10.x86_64", + sha256 = "47ffcef3faf64d7cc24824ed2d478de67f5add0ed2e504652c73ba8c2c8c6639", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-container-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-libs-0__252-51.el9.x86_64", + sha256 = "a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f", + urls = ["https://storage.googleapis.com/builddeps/a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f"], +) + +rpm( + name = "systemd-libs-0__252-64.el9.aarch64", + sha256 = "e48bfbd29f6a1412de603e0cb5d9ac6d46515360841c1b8421c8e2b4871e3d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-libs-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e48bfbd29f6a1412de603e0cb5d9ac6d46515360841c1b8421c8e2b4871e3d04", + ], +) + +rpm( + name = "systemd-libs-0__252-64.el9.s390x", + sha256 = "8f232bee21b9fda85b9b9c69a14d348306620745f9b70261efc14a85e73f10f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-libs-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8f232bee21b9fda85b9b9c69a14d348306620745f9b70261efc14a85e73f10f5", + ], +) + +rpm( + name = "systemd-libs-0__252-64.el9.x86_64", + sha256 = "df842cca567614bf20891234df566b3de3f008450a25a6e4b6031ac183e7d17d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-libs-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/df842cca567614bf20891234df566b3de3f008450a25a6e4b6031ac183e7d17d", + ], +) + +rpm( + name = "systemd-libs-0__257-23.el10.aarch64", + sha256 = "6f03fbfb279a1709e4bba64fef36e795fae2159bf74fac27e5a19c4090fd452e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-libs-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-libs-0__257-23.el10.s390x", + sha256 = "9029d9b583bb222bc5d0e2dcfec772d503ef9177128f89da73e8c59e68ced1eb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-libs-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-libs-0__257-23.el10.x86_64", + sha256 = "42ad35c61c6d4d7cdbdbd2f4af668c18ae79968a569fc73dda74bac77c5be666", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-libs-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-pam-0__252-51.el9.x86_64", + sha256 = "26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03", + urls = ["https://storage.googleapis.com/builddeps/26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03"], +) + +rpm( + name = "systemd-pam-0__252-64.el9.aarch64", + sha256 = "6f35935fafcc60a6eba0859f165ec411ee4b0b8ea6a8dd63100a2199165ca665", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-pam-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6f35935fafcc60a6eba0859f165ec411ee4b0b8ea6a8dd63100a2199165ca665", + ], +) + +rpm( + name = "systemd-pam-0__252-64.el9.s390x", + sha256 = "d2d89235bf69a9c840ad71d36895a8454721356c22b9fefb405198075c0628e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-pam-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2d89235bf69a9c840ad71d36895a8454721356c22b9fefb405198075c0628e9", + ], +) + +rpm( + name = "systemd-pam-0__252-64.el9.x86_64", + sha256 = "1cf1fb13d6b5016b1d6c94de9e2149c7ea35fbaac9122dd1ac70f8ff24f9fd9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-pam-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1cf1fb13d6b5016b1d6c94de9e2149c7ea35fbaac9122dd1ac70f8ff24f9fd9b", + ], +) + +rpm( + name = "systemd-pam-0__257-23.el10.aarch64", + sha256 = "9c3f19ef4f5d0124b8d4a0a159496a2a9ee14240e361a20de959d33e7d8d8436", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-pam-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-pam-0__257-23.el10.s390x", + sha256 = "92d4541ed37d8fd9c1be28f81c37cea83e59a37faa04f7ac2914df6018f075af", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-pam-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-pam-0__257-23.el10.x86_64", + sha256 = "27345eb8c57d09df897f802c2dc96652db21e0ec62d51e78908af794ba90d4c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-pam-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-51.el9.x86_64", + sha256 = "afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + urls = ["https://storage.googleapis.com/builddeps/afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c"], +) + +rpm( + name = "systemd-rpm-macros-0__252-64.el9.aarch64", + sha256 = "3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-rpm-macros-252-64.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-64.el9.s390x", + sha256 = "3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-rpm-macros-252-64.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-64.el9.x86_64", + sha256 = "3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-rpm-macros-252-64.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + ], +) + +rpm( + name = "tar-2__1.34-10.el9.aarch64", + sha256 = "84831858ad6cef9cbbb5aa63b383e399e71b7309ddd3e0bbba42b80738f9822e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tar-1.34-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/84831858ad6cef9cbbb5aa63b383e399e71b7309ddd3e0bbba42b80738f9822e", + ], +) + +rpm( + name = "tar-2__1.34-10.el9.s390x", + sha256 = "9f6c5294ffcbaeb67c6c2d0e4436118fadc7437c5396aa802cadd822d6284759", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tar-1.34-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9f6c5294ffcbaeb67c6c2d0e4436118fadc7437c5396aa802cadd822d6284759", + ], +) + +rpm( + name = "tar-2__1.34-10.el9.x86_64", + sha256 = "449213355bb8fe15f9a9f8c29c0ec87458fc8959fb42bdcf678a63f32fee2505", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tar-1.34-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/449213355bb8fe15f9a9f8c29c0ec87458fc8959fb42bdcf678a63f32fee2505", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.x86_64", + sha256 = "b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tar-1.34-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + ], +) + +rpm( + name = "tar-2__1.35-11.el10.aarch64", + sha256 = "9cea19adb21443f7c47330f99987348750c8a389fd42544f0d0b161a255d6b78", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/tar-1.35-11.el10.aarch64.rpm", + ], +) + +rpm( + name = "tar-2__1.35-11.el10.s390x", + sha256 = "69bc4390eb6bfc9b60c3243c764d301947a703128dd8ea53e3ed408e584b5ad1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/tar-1.35-11.el10.s390x.rpm", + ], +) + +rpm( + name = "tar-2__1.35-11.el10.x86_64", + sha256 = "c7461d8aa0cc1c9e51244356f4270a5384b220557d3131a5c6f146d6837f3e6d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/tar-1.35-11.el10.x86_64.rpm", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.aarch64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.s390x", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.x86_64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-12.el10.aarch64", + sha256 = "aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/target-restore-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + ], +) + +rpm( + name = "target-restore-0__2.1.76-12.el10.s390x", + sha256 = "aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/target-restore-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + ], +) + +rpm( + name = "target-restore-0__2.1.76-12.el10.x86_64", + sha256 = "aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/target-restore-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + ], +) + +rpm( + name = "targetcli-0__2.1.57-3.el9.aarch64", + sha256 = "71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/targetcli-2.1.57-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + ], +) + +rpm( + name = "targetcli-0__2.1.57-3.el9.s390x", + sha256 = "71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/targetcli-2.1.57-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + ], +) + +rpm( + name = "targetcli-0__2.1.57-3.el9.x86_64", + sha256 = "71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/targetcli-2.1.57-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + ], +) + +rpm( + name = "targetcli-0__2.1.58-5.el10.aarch64", + sha256 = "687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/targetcli-2.1.58-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + ], +) + +rpm( + name = "targetcli-0__2.1.58-5.el10.s390x", + sha256 = "687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/targetcli-2.1.58-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + ], +) + +rpm( + name = "targetcli-0__2.1.58-5.el10.x86_64", + sha256 = "687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/targetcli-2.1.58-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + ], +) + +rpm( + name = "tpm2-tss-0__4.1.3-6.el10.aarch64", + sha256 = "22bdfcc4af5dd47fa52bad5f8ebca5d80f6caa6e548ad18c7c037899195d4bd3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/tpm2-tss-4.1.3-6.el10.aarch64.rpm", + ], +) + +rpm( + name = "tpm2-tss-0__4.1.3-6.el10.s390x", + sha256 = "6c572b1029f932a26e9b4e6f15f2ab3554c13c0ec041ba9ffd4b525514ddee7d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/tpm2-tss-4.1.3-6.el10.s390x.rpm", + ], +) + +rpm( + name = "tpm2-tss-0__4.1.3-6.el10.x86_64", + sha256 = "95f4b1e56a2c511de79a18c0dd24a03b22175e8cc3d79c9cbd4eb4fd62207fbc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/tpm2-tss-4.1.3-6.el10.x86_64.rpm", + ], +) + +rpm( + name = "tzdata-0__2025a-1.el9.x86_64", + sha256 = "655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025a-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el10.aarch64", + sha256 = "f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/tzdata-2025c-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el10.s390x", + sha256 = "f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/tzdata-2025c-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el10.x86_64", + sha256 = "f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/tzdata-2025c-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el9.aarch64", + sha256 = "a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tzdata-2025c-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el9.s390x", + sha256 = "a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tzdata-2025c-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el9.x86_64", + sha256 = "a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025c-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-2.el9.aarch64", + sha256 = "90dbe1a0feb24693819fd890953bfafd24324a3b52722e782ae3d938f2a0a911", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/unbound-libs-1.24.2-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/90dbe1a0feb24693819fd890953bfafd24324a3b52722e782ae3d938f2a0a911", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-2.el9.s390x", + sha256 = "70e50eee29cf83a811f4ae1861a2fe2398caf01fa2efcc3a2cfc46cc01bebddc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/unbound-libs-1.24.2-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/70e50eee29cf83a811f4ae1861a2fe2398caf01fa2efcc3a2cfc46cc01bebddc", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-2.el9.x86_64", + sha256 = "ba15a24c05f917d88acf555f77ac8fb5bd1de466d980fd58c4571809af53b1da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/unbound-libs-1.24.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ba15a24c05f917d88acf555f77ac8fb5bd1de466d980fd58c4571809af53b1da", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-7.el10.aarch64", + sha256 = "7ec96614c29a408d5ec4748822db054ca0bb44cb2706e7bf97e349beef9a7190", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/unbound-libs-1.24.2-7.el10.aarch64.rpm", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-7.el10.s390x", + sha256 = "8cdf1580c4e364b7113c92ac593c200fa2d95d8893b1505753a91d98845acd1d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/unbound-libs-1.24.2-7.el10.s390x.rpm", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-7.el10.x86_64", + sha256 = "93606094853637132592f4b7d678ce2073ee2c5bd73a2bcb1dce208c629221ae", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/unbound-libs-1.24.2-7.el10.x86_64.rpm", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.aarch64", + sha256 = "3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/usbredir-0.13.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.x86_64", + sha256 = "7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/usbredir-0.13.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + ], +) + +rpm( + name = "usbredir-0__0.13.0-6.el10.aarch64", + sha256 = "12a672104464f85388819600c8b2e4eee38cdb67342107485183bc2076b54fe2", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/usbredir-0.13.0-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12a672104464f85388819600c8b2e4eee38cdb67342107485183bc2076b54fe2", + ], +) + +rpm( + name = "usbredir-0__0.13.0-6.el10.x86_64", + sha256 = "11551f45b3e60a80530431dfcd5a1d29c5624d34aeaf86dcfd6bcd0a4f87337f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/usbredir-0.13.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11551f45b3e60a80530431dfcd5a1d29c5624d34aeaf86dcfd6bcd0a4f87337f", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.aarch64", + sha256 = "5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/userspace-rcu-0.12.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.x86_64", + sha256 = "119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/userspace-rcu-0.12.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + ], +) + +rpm( + name = "userspace-rcu-0__0.14.0-7.el10.aarch64", + sha256 = "4c68e72d9cf6b3ae7b001c181998eeff4514058621e7517ebff26f315757c11d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/userspace-rcu-0.14.0-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4c68e72d9cf6b3ae7b001c181998eeff4514058621e7517ebff26f315757c11d", + ], +) + +rpm( + name = "userspace-rcu-0__0.14.0-7.el10.x86_64", + sha256 = "2ff9144b446e979b4d014fac8912e7ea9f9dbc2ebbe913c715629bf82aa34082", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/userspace-rcu-0.14.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ff9144b446e979b4d014fac8912e7ea9f9dbc2ebbe913c715629bf82aa34082", + ], +) + +rpm( + name = "util-linux-0__2.37.4-21.el9.x86_64", + sha256 = "77f5aa59c85c1231bde7f64a7e348bb7b4675a04e385e219275abbd748037075", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77f5aa59c85c1231bde7f64a7e348bb7b4675a04e385e219275abbd748037075", + ], +) + +rpm( + name = "util-linux-0__2.37.4-25.el9.aarch64", + sha256 = "619d39f84e40856b19475294d7e50417541261f852d5feeab75028a9a8f2fb20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/619d39f84e40856b19475294d7e50417541261f852d5feeab75028a9a8f2fb20", + ], +) + +rpm( + name = "util-linux-0__2.37.4-25.el9.s390x", + sha256 = "46a49c017dd8aefaa0d2f9353ecde0477fb9acf048e8e5c9d99ebf404775de05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/46a49c017dd8aefaa0d2f9353ecde0477fb9acf048e8e5c9d99ebf404775de05", + ], +) + +rpm( + name = "util-linux-0__2.37.4-25.el9.x86_64", + sha256 = "2d2b2ba4dea25b829031788e6afdc640412a42ac9b9e70a691aad219f744d0ec", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d2b2ba4dea25b829031788e6afdc640412a42ac9b9e70a691aad219f744d0ec", + ], +) + +rpm( + name = "util-linux-0__2.40.2-18.el10.aarch64", + sha256 = "0783dd1aef58f3c0f36c4abecf9b1c1ce61466e060a3e83ddbf74d2ca3aadd57", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/util-linux-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "util-linux-0__2.40.2-18.el10.s390x", + sha256 = "3d5ddf516e9de282f1f210692bee3d3cffed7a26ad857f22cc37010f4bfa3f26", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/util-linux-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "util-linux-0__2.40.2-18.el10.x86_64", + sha256 = "297faca5213a8f9308d00f60126e18a1e5fcba6605dd52b77b42c285915ec91b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/util-linux-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-21.el9.x86_64", + sha256 = "1858fbea657a9edce414fd98b8260b37ef521769f06830fccc7831094ec04154", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1858fbea657a9edce414fd98b8260b37ef521769f06830fccc7831094ec04154", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-25.el9.aarch64", + sha256 = "a31732e9e6c968665ff53330435674fdaa12f9812b309bda9babb29e0d2ca62d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-core-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a31732e9e6c968665ff53330435674fdaa12f9812b309bda9babb29e0d2ca62d", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-25.el9.s390x", + sha256 = "a9c0f4b1c76cc105f42d9763d7a7df522e76f3668086a9cbf2b8318a4a4688e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-core-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a9c0f4b1c76cc105f42d9763d7a7df522e76f3668086a9cbf2b8318a4a4688e5", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-25.el9.x86_64", + sha256 = "15c9e658afed9d50ce20908fd4080cd12042f4bf508f67b2ecbc889ae41c7414", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/15c9e658afed9d50ce20908fd4080cd12042f4bf508f67b2ecbc889ae41c7414", + ], +) + +rpm( + name = "util-linux-core-0__2.40.2-18.el10.aarch64", + sha256 = "594443d97e01900793341634651cd8c5aebdbba460c3802cda15981cbeeaf5c1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/util-linux-core-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "util-linux-core-0__2.40.2-18.el10.s390x", + sha256 = "f967830bf7495cabc4762f91e28ceb5eaeeb8577112e80d5d56abb4cf991c618", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/util-linux-core-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "util-linux-core-0__2.40.2-18.el10.x86_64", + sha256 = "e4b2e21e4b8e372f88f81acd417173f3a217fd7e95a6170c2c14b294142bc4b6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "vim-data-2__9.1.083-8.el10.aarch64", + sha256 = "94b8e2937e8b1268914528e978929e9138f3ab3c7f107eb87fd422e417edac0e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/vim-data-9.1.083-8.el10.noarch.rpm", + ], +) + +rpm( + name = "vim-data-2__9.1.083-8.el10.s390x", + sha256 = "94b8e2937e8b1268914528e978929e9138f3ab3c7f107eb87fd422e417edac0e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/vim-data-9.1.083-8.el10.noarch.rpm", + ], +) + +rpm( + name = "vim-data-2__9.1.083-8.el10.x86_64", + sha256 = "94b8e2937e8b1268914528e978929e9138f3ab3c7f107eb87fd422e417edac0e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/vim-data-9.1.083-8.el10.noarch.rpm", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-21.el9.x86_64", + sha256 = "1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-25.el9.aarch64", + sha256 = "d0aae74ac54fc5234c436d42899cd5c2be1ea9646b9fb58f84a35c71f5196339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/vim-minimal-8.2.2637-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d0aae74ac54fc5234c436d42899cd5c2be1ea9646b9fb58f84a35c71f5196339", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-25.el9.s390x", + sha256 = "31583b0d5c3a1b7d50497f1aae5bc679a1b57a1f76cf54b554cb20f1e7792a6a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/vim-minimal-8.2.2637-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/31583b0d5c3a1b7d50497f1aae5bc679a1b57a1f76cf54b554cb20f1e7792a6a", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-25.el9.x86_64", + sha256 = "a7b4f3621e2e64fae37ae18e78930ae13d3ff78f40fd18598e914bf2eed0c443", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7b4f3621e2e64fae37ae18e78930ae13d3ff78f40fd18598e914bf2eed0c443", + ], +) + +rpm( + name = "vim-minimal-2__9.1.083-8.el10.aarch64", + sha256 = "5dfefb6f7ad8a74dce3d949186c786696d9952b1b36d0cfd5b5ef4cbac60e2f2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/vim-minimal-9.1.083-8.el10.aarch64.rpm", + ], +) + +rpm( + name = "vim-minimal-2__9.1.083-8.el10.s390x", + sha256 = "67d40bfbc864cee9b0e0196a20d08c589ca2a75fb7921af4e5e20189dc02732f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/vim-minimal-9.1.083-8.el10.s390x.rpm", + ], +) + +rpm( + name = "vim-minimal-2__9.1.083-8.el10.x86_64", + sha256 = "59c8f2f3685dfe987fffea7608fbadc1a268fb3379f22d7f5d7f6109cdf05094", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/vim-minimal-9.1.083-8.el10.x86_64.rpm", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.aarch64", + sha256 = "7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/virtiofsd-1.13.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.s390x", + sha256 = "4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/virtiofsd-1.13.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.x86_64", + sha256 = "531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/virtiofsd-1.13.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + ], +) + +rpm( + name = "virtiofsd-0__1.13.3-1.el10.aarch64", + sha256 = "ad5eec8ff18d9610a2eff000406908876ea1b1af69cbf97c396b74efc65d54dd", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/virtiofsd-1.13.3-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ad5eec8ff18d9610a2eff000406908876ea1b1af69cbf97c396b74efc65d54dd", + ], +) + +rpm( + name = "virtiofsd-0__1.13.3-1.el10.s390x", + sha256 = "a9bd279fd632f35e33ba50593ab833ec2673878ec8e54a45d7e8e20c61fa7ed4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/virtiofsd-1.13.3-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a9bd279fd632f35e33ba50593ab833ec2673878ec8e54a45d7e8e20c61fa7ed4", + ], +) + +rpm( + name = "virtiofsd-0__1.13.3-1.el10.x86_64", + sha256 = "fa45976edcd696c9fcda96b0c47b1e91d7c59ae83f5616bd047a0bad6b0be0ae", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/virtiofsd-1.13.3-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fa45976edcd696c9fcda96b0c47b1e91d7c59ae83f5616bd047a0bad6b0be0ae", + ], +) + +rpm( + name = "which-0__2.21-29.el9.x86_64", + sha256 = "c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-29.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + ], +) + +rpm( + name = "which-0__2.21-30.el9.aarch64", + sha256 = "e31074fa3d7bbfb387f7d6d2c97988069594a6cd6c0bd7c798036a4f8ed7ab48", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/which-2.21-30.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e31074fa3d7bbfb387f7d6d2c97988069594a6cd6c0bd7c798036a4f8ed7ab48", + ], +) + +rpm( + name = "which-0__2.21-30.el9.s390x", + sha256 = "671cebde29b96ff50fd35e09b867505721144b4507c1c81ee60276f7c14f8723", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/which-2.21-30.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/671cebde29b96ff50fd35e09b867505721144b4507c1c81ee60276f7c14f8723", + ], +) + +rpm( + name = "which-0__2.21-30.el9.x86_64", + sha256 = "d602350243d5950c473624788e78e783461e5db242cc0a2d7a988e1b9a3e079b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-30.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d602350243d5950c473624788e78e783461e5db242cc0a2d7a988e1b9a3e079b", + ], +) + +rpm( + name = "which-0__2.21-44.el10.aarch64", + sha256 = "369a215b68f7dd87ce2b0c7be20425b63a19ba8b18a74775b474a717524388fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/which-2.21-44.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/369a215b68f7dd87ce2b0c7be20425b63a19ba8b18a74775b474a717524388fe", + ], +) + +rpm( + name = "which-0__2.21-44.el10.s390x", + sha256 = "93c0edc58db280e4bcc7a7568fc9eb935a27666fea4659c0de6aa93e1017d0d7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/which-2.21-44.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/93c0edc58db280e4bcc7a7568fc9eb935a27666fea4659c0de6aa93e1017d0d7", + ], +) + +rpm( + name = "which-0__2.21-44.el10.x86_64", + sha256 = "8817b5d8ce0a8a07e38daa93a72d0cca53934e1631322b990d389ccb34376e1c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/which-2.21-44.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8817b5d8ce0a8a07e38daa93a72d0cca53934e1631322b990d389ccb34376e1c", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.aarch64", + sha256 = "e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/xorriso-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.s390x", + sha256 = "35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/xorriso-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.x86_64", + sha256 = "15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorriso-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + ], +) + +rpm( + name = "xorriso-0__1.5.6-6.el10.aarch64", + sha256 = "8e152db322abfb8b173f703a0af4be1ef294abeb3dd78da974f800b074a06530", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/xorriso-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8e152db322abfb8b173f703a0af4be1ef294abeb3dd78da974f800b074a06530", + ], +) + +rpm( + name = "xorriso-0__1.5.6-6.el10.s390x", + sha256 = "ab7d3d43d22e8a4920453c73de0e60dbc3df69ab28042cad271df8a51cfa0b4b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/xorriso-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ab7d3d43d22e8a4920453c73de0e60dbc3df69ab28042cad271df8a51cfa0b4b", + ], +) + +rpm( + name = "xorriso-0__1.5.6-6.el10.x86_64", + sha256 = "2077b91e476836bec242f0fbf4a83384bfc785e9531bedb81ee825936105b017", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/xorriso-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2077b91e476836bec242f0fbf4a83384bfc785e9531bedb81ee825936105b017", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.aarch64", + sha256 = "c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.s390x", + sha256 = "e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.x86_64", + sha256 = "159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + ], +) + +rpm( + name = "xz-1__5.6.2-4.el10.aarch64", + sha256 = "7bf62608392ae9fd5dd59add39723086f5a052c2064e0498c1641c572cd46460", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/xz-5.6.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7bf62608392ae9fd5dd59add39723086f5a052c2064e0498c1641c572cd46460", + ], +) + +rpm( + name = "xz-1__5.6.2-4.el10.s390x", + sha256 = "37e1052ce13b55ef1f4e33a8997728963f51c76223d165e2534f0cd6e8f9ba59", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/xz-5.6.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/37e1052ce13b55ef1f4e33a8997728963f51c76223d165e2534f0cd6e8f9ba59", + ], +) + +rpm( + name = "xz-1__5.6.2-4.el10.x86_64", + sha256 = "dc71c8e5b558c9f9fdea14a7d38819fc12ad8bdcb6834989188b225ca191eded", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/xz-5.6.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dc71c8e5b558c9f9fdea14a7d38819fc12ad8bdcb6834989188b225ca191eded", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.aarch64", + sha256 = "99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-libs-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.s390x", + sha256 = "f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-libs-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.x86_64", + sha256 = "ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-libs-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + ], +) + +rpm( + name = "xz-libs-1__5.6.2-4.el10.aarch64", + sha256 = "fcf207b0e6fe443fafe62fa43fc44ce16c8c118dd5e69491b3ad4b9eda72cc61", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/xz-libs-5.6.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fcf207b0e6fe443fafe62fa43fc44ce16c8c118dd5e69491b3ad4b9eda72cc61", + ], +) + +rpm( + name = "xz-libs-1__5.6.2-4.el10.s390x", + sha256 = "7edd13c2a8dfb66b1e8c8a0d1d9259a1ff5cfb4891d568cc8f990664a02f7e32", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/xz-libs-5.6.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7edd13c2a8dfb66b1e8c8a0d1d9259a1ff5cfb4891d568cc8f990664a02f7e32", + ], +) + +rpm( + name = "xz-libs-1__5.6.2-4.el10.x86_64", + sha256 = "21733e8b6bf26b20633618adb074706972479080527f3f7a51246e83b3d4342e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/xz-libs-5.6.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/21733e8b6bf26b20633618adb074706972479080527f3f7a51246e83b3d4342e", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.aarch64", + sha256 = "c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zlib-1.2.11-41.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.s390x", + sha256 = "bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zlib-1.2.11-41.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.x86_64", + sha256 = "370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zlib-1.2.11-41.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + ], +) + +rpm( + name = "zlib-ng-compat-0__2.2.3-3.el10.aarch64", + sha256 = "a7870bf73b68086ae1fdd3e2fb6191bf79dff1ab5ae16b907efbb0befe590dca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/zlib-ng-compat-2.2.3-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a7870bf73b68086ae1fdd3e2fb6191bf79dff1ab5ae16b907efbb0befe590dca", + ], +) + +rpm( + name = "zlib-ng-compat-0__2.2.3-3.el10.s390x", + sha256 = "89c8decb9febd474ba2f3fbb38c37577dd7098b349a9e766267723fb94f25962", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/zlib-ng-compat-2.2.3-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/89c8decb9febd474ba2f3fbb38c37577dd7098b349a9e766267723fb94f25962", + ], +) + +rpm( + name = "zlib-ng-compat-0__2.2.3-3.el10.x86_64", + sha256 = "8fe3c2d5203810828fa3e4a5d84ae53172ffd27f4f0eec9d192b42b187795c09", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/zlib-ng-compat-2.2.3-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8fe3c2d5203810828fa3e4a5d84ae53172ffd27f4f0eec9d192b42b187795c09", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.aarch64", + sha256 = "bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.s390x", + sha256 = "09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.x86_64", + sha256 = "6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + ], +) + +rpm( + name = "zstd-0__1.5.5-9.el10.aarch64", + sha256 = "b45bf236f2a5a034295eb933b3c056b302785fa122ecba44b98fec6d2d8b39a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/zstd-1.5.5-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b45bf236f2a5a034295eb933b3c056b302785fa122ecba44b98fec6d2d8b39a2", + ], +) + +rpm( + name = "zstd-0__1.5.5-9.el10.s390x", + sha256 = "def19135b3b6f01e46d9ee17e69ae1227e9addaf1fcd231596836000917fe393", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/zstd-1.5.5-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/def19135b3b6f01e46d9ee17e69ae1227e9addaf1fcd231596836000917fe393", + ], +) + +rpm( + name = "zstd-0__1.5.5-9.el10.x86_64", + sha256 = "4ef415b98ddbe28f836b86699f4cec6002817ea20fb47499d3c6bb0814db6d4b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/zstd-1.5.5-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4ef415b98ddbe28f836b86699f4cec6002817ea20fb47499d3c6bb0814db6d4b", + ], +) + +# EDV dependency - START +http_file( + name = "custom-qemu", + downloaded_file_path = "qemu-kvm", + sha256 = "", + urls = [ + "file:///root/go/src/kubevirt.io/kubevirt/build/qemu-system-x86_64", + ], +) + +rpm( + name = "SDL2-0__2.26.0-1.el9.x86_64", + sha256 = "554ca63ca5c87170e907ae2f5182ea62e637006a8c5df229a4b4f9270ac23bd7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/SDL2-2.26.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "adwaita-cursor-theme-0__40.1.1-3.el9.x86_64", + sha256 = "709ea6715775ca94032d8b49148894185263397eaaea147a15da917556da3ea6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-cursor-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "adwaita-icon-theme-0__40.1.1-3.el9.x86_64", + sha256 = "a27bbc0988dd63b0ba8af01f42f2f6486cab6bf9a13077e6c5e542efaf5c793b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-icon-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "alsa-lib-0__1.2.13-2.el9.x86_64", + sha256 = "7b8bca6c63f0e08f6f06b941b073db319de2278fb7b2b99676a3261ac5d51e30", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/alsa-lib-1.2.13-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-0__2.38.0-4.el9.x86_64", + sha256 = "03e55a72bfb0776ba6a37dbc983ca25967ebc90da13022c1d159c47984284c6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-devel-0__2.38.0-4.el9.x86_64", + sha256 = "9d253f023dbdd8c52a300c44edd06b0d67ad2c72f76d02bdc5d94687d7277aa4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-devel-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-0__2.40.3-1.el9.x86_64", + sha256 = "df9b259bf65606248af738a8a70c35d7612e6ed9ba0cf3935930e35c7882bae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-devel-0__2.40.3-1.el9.x86_64", + sha256 = "d6410a0eeacb9e6bd22e891d1803fe838b339e0d91fe0068a11d94eb1d4262db", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-devel-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-0__2.36.0-5.el9.x86_64", + sha256 = "e0d28335d140043d1f2c7b052fdaad8428b1deacbfac3d1174890a176312bdd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-devel-0__2.36.0-5.el9.x86_64", + sha256 = "36bd7fda07c3f65e5daab91fc9ab2936b95f3f141d9522795820601ad9df18a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-devel-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "avahi-libs-0__0.8-22.el9.x86_64", + sha256 = "a50f286097400810fa026edd4128acd9e162d8209dbb4d90caa8661ce1bad7e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/avahi-libs-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "bluez-libs-0__5.72-4.el9.x86_64", + sha256 = "db99a11d01ee64912bad50211e5ce75f9c7a8101e8ca7a3c22ea1f33df14d6eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bluez-libs-5.72-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-iostreams-0__1.75.0-11.el9.x86_64", + sha256 = "569e83f709ee0f507adaa9aefb455945742c2007fb8707c9e6b18467cc85a4ea", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-iostreams-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-system-0__1.75.0-11.el9.x86_64", + sha256 = "5f69c1f1086c06e1aa2c7935197097fc82fcd2736f254dfaf0789038d1725716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-system-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-thread-0__1.75.0-11.el9.x86_64", + sha256 = "cf64248b3e12185189abdc16c6f65bdfa991d183c917603968e54d1146177e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-thread-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "brlapi-0__0.8.2-4.el9.x86_64", + sha256 = "0db4f2ec753e47873a49ab907838cee0f815b74989425a6dc124406002a47c8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brlapi-0.8.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-0__1.0.9-7.el9.x86_64", + sha256 = "6f3aeb611b3d80a031592d7eb54e1606100d4fdf3c94c368784c79b6cfd52d96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-devel-0__1.0.9-7.el9.x86_64", + sha256 = "40ee3f8fe83b5e16d6797f0cd4a3722c41c8fd4a5a2d0a2c6b41622cf29f87c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-devel-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "bzip2-devel-0__1.0.8-10.el9.x86_64", + sha256 = "1a9ddc7fb11abbb14f3b53697808aab021934800f0fd5947ecdcc560c70d625a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/bzip2-devel-1.0.8-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-0__1.17.4-7.el9.x86_64", + sha256 = "5f5177fd5b3ed4ffdf218f730e85af73c223b09f759e47b1c7f2df05d8f87655", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-devel-0__1.17.4-7.el9.x86_64", + sha256 = "e34ac60cd4006a904a835be11aa0849fcce7b3c53219b7dddc8f4b007b1302da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-0__1.17.4-7.el9.x86_64", + sha256 = "2329c39bdde48e1c2f0f64cfebb7edd92ea5188be374396402e03e876d06ad02", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-devel-0__1.17.4-7.el9.x86_64", + sha256 = "77613065496f7f097b7d85a74bee729eb1dd965eb59842c1bb3a5c127198e533", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cmake-filesystem-0__3.26.5-2.el9.x86_64", + sha256 = "4a3c39e721eb1c01bf5e421262c2f10f9ed6b7e987fd2f9c510d309e2b023222", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cmake-filesystem-3.26.5-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "colord-libs-0__1.4.5-4.el9.x86_64", + sha256 = "01af031bc42f35cad5f435fde26b969da0d659b8309caeaff76a66d8f29335d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/colord-libs-1.4.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cryptsetup-libs-0__2.7.2-4.el9.x86_64", + sha256 = "2249560ee705ab561670f4086a5babbd0e29ee38512a2c0a739ce4eaf34e3892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.7.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cups-libs-1__2.3.3op2-33.el9.x86_64", + sha256 = "0d8ae6703b6d5696b3e547ab2557f649e439704cc449f680ed3c01b5dc339627", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cups-libs-2.3.3op2-33.el9.x86_64.rpm", + ], +) + +rpm( + name = "dbus-devel-1__1.12.20-8.el9.x86_64", + sha256 = "9114eef0c3eea868948bb9f2e807d5aeefac3ab013a7f3dd176c4e165cf0c2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/dbus-devel-1.12.20-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "dejavu-sans-fonts-0__2.37-18.el9.x86_64", + sha256 = "aaff108008e6ba95800e40a53f81c7c3ba7d346325e602db187884032848151e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dejavu-sans-fonts-2.37-18.el9.noarch.rpm", + ], +) + +rpm( + name = "elfutils-libelf-devel-0__0.193-1.el9.x86_64", + sha256 = "152bbdef776d9448bc92d4cad14137206e717389d0d67a2048567f69a2b6df96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/elfutils-libelf-devel-0.193-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "fdk-aac-free-0__2.0.0-8.el9.x86_64", + sha256 = "dd7f3619a5a7b5a68f1ea8275afda8ec6ec9a218fa9d0ab5229f3cc5a11095fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fdk-aac-free-2.0.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "flac-libs-0__1.3.3-12.el9.x86_64", + sha256 = "603ef65286c8a0e7a498b7e2a79c8259075b6052731a626b47433cb4aa868457", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/flac-libs-1.3.3-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-0__2.14.0-2.el9.x86_64", + sha256 = "54675062b2254c9fedc04423c171b95a3dfa7226896a05a70c06ecc5af8b31c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-devel-0__2.14.0-2.el9.x86_64", + sha256 = "861c4215221bc6a4fe4f10b5321b23aaff11f47e3e44d7407b972ed424d6e2ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-devel-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-0__2.10.4-11.el9.x86_64", + sha256 = "9f134e7db3966162cd0373fee28e23795cd316f8ce2894d99890750e971eb7c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/freetype-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-devel-0__2.10.4-11.el9.x86_64", + sha256 = "a20eba25ea73dc4e7dd26b4b06c7af82b94e8a587d44eb1f91e7ed336ff82e04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/freetype-devel-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-0__1.0.10-6.el9.2.x86_64", + sha256 = "f5557a876e6517ebf020f9295bee7890cfb92a8a800a56d19729f413ce50e4ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-devel-0__1.0.10-6.el9.2.x86_64", + sha256 = "e12f772ada49ce459ae47383107c46eee5d156bb348c51158b9889c3cf9e52b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-devel-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fuse3-libs-0__3.10.2-9.el9.x86_64", + sha256 = "f9620a11fddf8e66cfec9f78d335e2a5af29793b96ee8740d297102cc7a8cb34", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fuse3-libs-3.10.2-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-0__2.42.6-4.el9.x86_64", + sha256 = "5bb9c411959293833a67a25d7d3b31a0fa37910d5bec01c219fd807b01915b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64", + sha256 = "8af5eb3da4cec1e95fbb63f2b03e6ad3990c612039e8678f14380ed678751853", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-devel-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64", + sha256 = "9612e4a738d0e54ad9ef039af0401e1bf2ea3808a981659d22a48fdc440c423b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-modules-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "glib2-devel-0__2.68.4-16.el9.x86_64", + sha256 = "7b248800aef3307e0d9c83e49e19e24a3c3953c2f2322de4c9ae7d852089778c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glib2-devel-2.68.4-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-0__1.3.14-9.el9.x86_64", + sha256 = "911ac19b0b08a9162959f8cee202bb62da5a0f1dd32fc54086bd7d08f9a89f23", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/graphite2-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-devel-0__1.3.14-9.el9.x86_64", + sha256 = "d3dc72e393e1fd8a30491bffa4c9a825c615f4d7a7e47affb7b2378796521a3c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/graphite2-devel-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gsm-0__1.0.19-6.el9.x86_64", + sha256 = "d4c242d54a503c80c07467b68e212986fdb65e4afb8487150143b4490b05177c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gsm-1.0.19-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk-update-icon-cache-0__3.24.31-5.el9.x86_64", + sha256 = "91ac46ed1e4bac38f5e0457635873916fee31adeef9fdfdec63ad7d9c34f4a15", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk-update-icon-cache-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-0__3.24.31-5.el9.x86_64", + sha256 = "37886175fbb321f4bb4102556d5163d87e0adfd07fcc7ec43f0b2452c4a2c547", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-devel-0__3.24.31-5.el9.x86_64", + sha256 = "bb3a014b6a7da8a5662d56a7e516cd18108fe75981adcdfa536ecd79a99b4ddd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-devel-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-0__2.7.4-10.el9.x86_64", + sha256 = "e0ba0095c24ee9c5239474257c3e516ac354c6605bc8e3b9bafaf2899b61b014", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/harfbuzz-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-devel-0__2.7.4-10.el9.x86_64", + sha256 = "5a08518d7bcf59a59d8b4ce5687719fb1d94f9c2afd53e54e9d2b7326d0cf81c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-devel-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-icu-0__2.7.4-10.el9.x86_64", + sha256 = "d536701878b2fad3217b51141422038a9c80aff3cf508c13d5bef22d18e5ddff", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-icu-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "hicolor-icon-theme-0__0.17-13.el9.x86_64", + sha256 = "835d0f243f99bc01d9f6320638ab74ad70ec990d1bc9ba8f7bc141c582a797f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hicolor-icon-theme-0.17-13.el9.noarch.rpm", + ], +) + +rpm( + name = "jbigkit-libs-0__2.1-23.el9.x86_64", + sha256 = "3731d07853beeeb76ef22e9a1f323802e74286b779a910af84d52b131f1662b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/jbigkit-libs-2.1-23.el9.x86_64.rpm", + ], +) + +rpm( + name = "langpacks-core-font-en-0__3.0-16.el9.x86_64", + sha256 = "95eb748d83b9373adb17813fc207aad5dd9ea1401d67ef970dd97c6d188c6844", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/langpacks-core-font-en-3.0-16.el9.noarch.rpm", + ], +) + +rpm( + name = "lcms2-0__2.12-3.el9.x86_64", + sha256 = "c60dfc4f79ab8b9f87ebc869e3db624c87438a2be9a925b16b44bfb855c4acac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/lcms2-2.12-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkio-0__1.5.0-1.el9.x86_64", + sha256 = "e87b93f549a0005c978eea5fea29931f1dcf77f96abccbb7ac3ca984e3eb45c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkio-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-0__1.7.0-11.el9.x86_64", + sha256 = "aae2ba2318b43f524d19abec471ca24961a6224f9400e0a8ab80707428766928", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-common-0__1.7.0-11.el9.x86_64", + sha256 = "1e8433f60ea9aa68029a98f121ccdca8a4b21faf263e552770167d5733eda5f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-common-1.7.0-11.el9.noarch.rpm", + ], +) + +rpm( + name = "libX11-devel-0__1.7.0-11.el9.x86_64", + sha256 = "87e790b99d5170c2c105b090dc601525a3b3125ff5fb59686ff633260a3f6ede", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-devel-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-xcb-0__1.7.0-11.el9.x86_64", + sha256 = "3d7effa1288251b34cef86e49ed56e023354e6bc7055d94e0ba71e12fa7b1774", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-xcb-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-0__1.0.9-8.el9.x86_64", + sha256 = "a0c14be959891eaff9097c1ec4d7c4b044301623d4080585cee72d740cd659ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-devel-0__1.0.9-8.el9.x86_64", + sha256 = "ff56ea9a25095b8345a90c7cf91ac72ce566573a396b935ae155bd28278b9e5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-devel-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-0__0.4.5-7.el9.x86_64", + sha256 = "fd7f5a54ff439c62583ca92b733995d1472cdf3bc3eeb5c4570bf78d7067307d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-devel-0__0.4.5-7.el9.x86_64", + sha256 = "6914a12df8fdd44f869d2a0a6ac4216e4b6a15cb56c87e7be2da0101e6def925", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-devel-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-0__1.2.0-7.el9.x86_64", + sha256 = "9c73249287c325db9721789a1468dc63c2c6910fadd6876d37b8132063d3fe98", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-devel-0__1.2.0-7.el9.x86_64", + sha256 = "dda8c70b042b12210b24fdd63719e31b0650870f6270ad8a860da2e3bbfb6846", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-devel-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-0__1.1.5-7.el9.x86_64", + sha256 = "46f527879c8821ac8353c0616a8f21d0d500584f316d19fbb2c555f52c96c6cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-devel-0__1.1.5-7.el9.x86_64", + sha256 = "e2bf2992316aeb77b25cffc63a3d73a972a2c548cad0f08e6d62fbd1d0fa68f9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-devel-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-0__1.3.4-8.el9.x86_64", + sha256 = "3714ed495275ffee5a8d374ae401cdef2c7bd30d2aebf90aecf4f1be8d6f896d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-devel-0__1.3.4-8.el9.x86_64", + sha256 = "a17c0bc8c1263ca9f42c713fa7da4e3786c0ab27379c0da5f3a726a09ff6ee22", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-devel-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-0__5.0.3-16.el9.x86_64", + sha256 = "309d12ca62069d02b6cf9d96d8d97de6b0267134ffd4b6952adc561269c8c9ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-devel-0__5.0.3-16.el9.x86_64", + sha256 = "3701f2806eaae708953e86dc5d7880809ad332234c8d7a079809f5fb3bd29a5a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-devel-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-0__2.3.3-8.el9.x86_64", + sha256 = "71c5ae479bb4a02a9c18901148a50cf07b192ef85dffa16e0187cf524364b466", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-devel-0__2.3.3-8.el9.x86_64", + sha256 = "d742f0ae22af703195d7dbf82424e0520675528421b50ffa3dee1d804f372e25", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-devel-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-0__1.7.10-8.el9.x86_64", + sha256 = "39b2cace8d69e83f56db672295e96641e39e83f4aed4b6c8e4c8fb20e6459a13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-devel-0__1.7.10-8.el9.x86_64", + sha256 = "4a8ee020699bd4bc84ef56edafc31a038663784d83c12be6e5b96ce16045e970", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-devel-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-0__1.1.4-10.el9.x86_64", + sha256 = "e53e69f3f5a5f13a899e804c428bd97239ffff5bec55bb0844346683b11b4f0f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-devel-0__1.1.4-10.el9.x86_64", + sha256 = "c53ed1fdeb74e2cc3459a0c56b93e52d1f82c1b812afab569bbfa094fce1ee77", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-devel-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-0__1.5.2-8.el9.x86_64", + sha256 = "fb0833176306c00bfb8a3f974ac807e8d702cd6ccdb7910ce9dff63f647e924c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-devel-0__1.5.2-8.el9.x86_64", + sha256 = "2e7e15e3f2ce8806baa30a3153f731ebe6729cb4149df26c123fe354db2b6685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-devel-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-0__0.9.10-16.el9.x86_64", + sha256 = "3e10d2880341fcb9dd697a6d1812981e67e976f571b23756c7d89d52c70f1142", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-devel-0__0.9.10-16.el9.x86_64", + sha256 = "fad7f6030e6d0f7daafb0d9e0ae0eb5b47a4d1014262ff818f66a3adb084868f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-devel-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-0__1.2.3-16.el9.x86_64", + sha256 = "a78023c45d39f3d608e217213ae6eca2032a99e9f6f98e34567a28a30229cca2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-devel-0__1.2.3-16.el9.x86_64", + sha256 = "e88f9e60ec9461492bc0e17c0b4dfd0ec8ddfabf6137df0f984594eb51655175", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-devel-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXxf86vm-0__1.1.4-18.el9.x86_64", + sha256 = "fe95e780bab5c4dda66acefaf35bdc6dddd483928cd2472cffa89a67ffc6b53b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXxf86vm-1.1.4-18.el9.x86_64.rpm", + ], +) + +rpm( + name = "libasyncns-0__0.8-22.el9.x86_64", + sha256 = "5214799bb68b6933ec92c4b183777565c1949757f545b6d84e13da189d91cb86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libasyncns-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "libatomic-0__11.5.0-7.el9.x86_64", + sha256 = "42d59da75f7e0ba9cf1ab079463b4efc5e131c4754ee9f6c40a9b2d09c233ecd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libatomic-11.5.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkid-devel-0__2.37.4-21.el9.x86_64", + sha256 = "37031505f779e5962c7a1c3ac07fdef8adcfb4b3de54d8153475a20384c40485", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkid-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libbpf-devel-2__1.5.0-1.el9.x86_64", + sha256 = "9f28bdb38de2425230f80a914594dbe4f0fc88c2a122aafcb5a77c1108c6a025", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libbpf-devel-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-0__0.2.13-4.el9.x86_64", + sha256 = "470b807fd8d03551f862cc629c4b5296b2ccc763d6109fd3294fb9f1898a75e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-devel-0__0.2.13-4.el9.x86_64", + sha256 = "267fcc6b5d45c72a08e566b5614bd97ec0fe3866bd4310e798748e510039c5e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-devel-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdrm-0__2.4.123-2.el9.x86_64", + sha256 = "67f930411a00d2c8e28d953b520ff41b5c0b29681192b4c1e290543161ae2cdb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdrm-2.4.123-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libedit-0__3.1-38.20210216cvs.el9.x86_64", + sha256 = "bfa91ff96f312b284a16a91b2eabcdae9e43c2f9b698fee6eec94040eaef8f7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libedit-3.1-38.20210216cvs.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-0__1.5.5-4.el9.x86_64", + sha256 = "7f282efb4675e8e2ffe4a8c75e737d2450c5273df60ebc311d388192d1353fbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-devel-0__1.5.5-4.el9.x86_64", + sha256 = "288d7c46784de0487f572dd0de0001a51b69af2c696ae4edd37da9adc6d62c39", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-devel-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libffi-devel-0__3.4.2-8.el9.x86_64", + sha256 = "39464cd83d7779bfbcadabe14a46bd8e8d90f7a73500e9d0481c8b1d9ce5dbdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libffi-devel-3.4.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libfontenc-0__1.1.3-17.el9.x86_64", + sha256 = "ebb70063dacc43d942d4c1947ae1bf3a95e8de22bc14549907404f085efc45e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfontenc-1.1.3-17.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-1__1.3.4-1.el9.x86_64", + sha256 = "129af138450cf5aba44d7a72bcccbf2c691dec72a29ac2bf769ae7dec2092ee3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-core-devel-1__1.3.4-1.el9.x86_64", + sha256 = "cc6852a620f5c4d12600d3cb6aeaab3320227478893f430cc9d29b99a7a2569d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-core-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-devel-1__1.3.4-1.el9.x86_64", + sha256 = "8f728a241c008a862c706e5627f293321171cb3bfb6a643fa0f4fda812403a21", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-egl-1__1.3.4-1.el9.x86_64", + sha256 = "6c815bac0524572490c81cfe5331b55fb3c87aef99ff96a5028210bc2397497b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-egl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-gles-1__1.3.4-1.el9.x86_64", + sha256 = "88b8f48433cb9009a53a5bad9c76f281c8d988edf6386f7a55fba58d0aa444bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-gles-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-glx-1__1.3.4-1.el9.x86_64", + sha256 = "9cf25dfa3a3fb57f2142f7941b7be1c020e214e01863ceb3901cfa2204b558e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-glx-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-opengl-1__1.3.4-1.el9.x86_64", + sha256 = "42af4046807453b3de347ec7c02092559eab57b81e1292e28b4bdd92875ed693", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-opengl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libgusb-0__0.3.8-2.el9.x86_64", + sha256 = "8b9da6b545db0e30875de3c198388c4194766ac5d94b3cda72afdedfd2ce9a67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgusb-0.3.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-0__67.1-9.el9.x86_64", + sha256 = "dbd4536fda7c8a691a14f3de0185dc404898cf0aa6a520ea4280ed018644f16f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libicu-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-devel-0__67.1-9.el9.x86_64", + sha256 = "f529fcd5f0f9882b393c1ba4ab38ae10b667a1bff9a36d18539bde5dda2b4ceb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libicu-devel-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libiscsi-0__1.19.0-5.el9.x86_64", + sha256 = "384e20a68a914538e6cdc1c5aac4115b50bf569bde044abb2db193af06f7f360", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libiscsi-1.19.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libjpeg-turbo-0__2.0.90-7.el9.x86_64", + sha256 = "c99423ff41a2df5fbf42c56201a8610791a9a60c3891a613f0d0be2dcb6f8d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libjpeg-turbo-2.0.90-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libldac-0__2.0.2.3-10.el9.x86_64", + sha256 = "186d3dccb1e840693e612c41db46cd2a3df39bd7d8c82883aed8e5bf4263ac6d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libldac-2.0.2.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libmount-devel-0__2.37.4-21.el9.x86_64", + sha256 = "7e42a62b1e844cbd2baf2f518edfcd7dfb2434df107787c0d2f657a04a3df366", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmount-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libogg-2__1.3.4-6.el9.x86_64", + sha256 = "ff8b1d6cf009aef8c8d1d5508c456479f62b7069e1d6a3f225b6233f645c82ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libogg-1.3.4-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpciaccess-0__0.16-7.el9.x86_64", + sha256 = "7f4f160406a6f66aee581582b0355afaafd5f769366c13c62888d21a3a3cb9db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpciaccess-0.16-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpng-devel-2__1.6.37-12.el9.x86_64", + sha256 = "2b40cfc1167db99a7703b2e17548b826b72808dff829ec93b57211660b33fb26", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpng-devel-1.6.37-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64", + sha256 = "360fba78adaa83fa504c9a65b30f13ed90c197b28a189bb371b8a1425ab31a0b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libproxy-webkitgtk4-0.4.15-35.el9.x86_64.rpm", + ], +) + +rpm( + name = "librados2-2__16.2.4-5.el9.x86_64", + sha256 = "6786852b684ea584343d560c7e0a7303790f1129d320b493df3c45a73850d073", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librados2-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "librbd1-2__16.2.4-5.el9.x86_64", + sha256 = "d4d1549eb600af4efc546630fc89170905e8b2c174d8528315d36451879eacc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librbd1-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsbc-0__1.4-9.el9.x86_64", + sha256 = "495ad3d92df325809734618b970a470cba020ded1fda8019ba17f835a7ff5db9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsbc-1.4-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-devel-0__3.6-3.el9.x86_64", + sha256 = "6a8f4b682da2bb46f64ae5332e8753fd189c43d8c1d942a78289c12fb0bee71c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libselinux-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsepol-devel-0__3.6-3.el9.x86_64", + sha256 = "f8f1f7a6c04b28c4ad596a486d34cc3f4675d00f05994b4cd6f27cffd2603d12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsepol-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsndfile-0__1.0.31-9.el9.x86_64", + sha256 = "5495f858a549940da30d5c8d807dbc3ef27ae3de9ffb93119c10614ea3df3b6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsndfile-1.0.31-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libstemmer-0__0-18.585svn.el9.x86_64", + sha256 = "4edc1f498e8602e77761a54f98138ef6831ff7d3d32f1725b87465511eeafdcd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libstemmer-0-18.585svn.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-0__0.1.28-8.el9.x86_64", + sha256 = "1f58c89d65f57dadd49a927c0005bfd4dad36f0b6060cd30d5fd6831ded957ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-devel-0__0.1.28-8.el9.x86_64", + sha256 = "f5a94d1f0b203ddadfacaf5f35669862658519807f1bebd8aba650271a83785a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-devel-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-0__4.4.0-13.el9.x86_64", + sha256 = "56c8fd8d0a498f4079cb5a9e43a1ef5dc2feecfc283d4c642b6fb087f20bd1c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-devel-0__4.4.0-13.el9.x86_64", + sha256 = "c85898a1d9d8ce308f1451b97ee99104d1deeaf2e84269facb9301714ecfa618", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-devel-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtracker-sparql-0__3.1.2-3.el9.x86_64", + sha256 = "f2206284f482dec85efc50f329ddd441eb6acb937d2ee6b5d8ba3311cd6ff1f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtracker-sparql-3.1.2-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libvorbis-1__1.3.7-5.el9.x86_64", + sha256 = "b6566ca8045af971aa48ca65327e183a7bc4f6ec59f36db2de26a6caa2f87074", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvorbis-1.3.7-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-client-0__1.21.0-1.el9.x86_64", + sha256 = "2b4a3e9acef0b0967f962e960f0c87f6f7cd51aa04262ab2ecf2ab58173d80c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-client-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-cursor-0__1.21.0-1.el9.x86_64", + sha256 = "583bf4b6238e38abcd08b4925dda13e371f5b4a68b5e860bf351fdeff4860493", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-cursor-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-egl-0__1.21.0-1.el9.x86_64", + sha256 = "cb8aaac077968b8d869e0f178274d3ee86b16bed9bcfaf73e3220c7254ce337a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-egl-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-server-0__1.21.0-1.el9.x86_64", + sha256 = "ebd8ae6e3ce81c785ab72d60b5317b8b376340a0bf5be460be3245368465d619", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-server-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwebp-0__1.2.0-8.el9.x86_64", + sha256 = "9010f71b826f720a8d16ac20e144187ffa47b163c64933e1c68cb4add2c7946d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwebp-1.2.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-0__1.13.1-9.el9.x86_64", + sha256 = "569018774aeb89760ade7d49c35bc1489ed0fdc3ddd6a2858f7a56811485c93f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-devel-0__1.13.1-9.el9.x86_64", + sha256 = "c40c68abf168ec900bdb1492fd444fe5442d41a74480e900ae9c66626b413cc1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-devel-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-0__1.5.3-1.el9.x86_64", + sha256 = "aec3b6a1459018ac7993f843b595b9b0548b4457ab5b87adea3b3c23e35462d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxdp-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-devel-0__1.5.3-1.el9.x86_64", + sha256 = "aed70eb627e572b4ef3648993b9c9d512d1915a98f793602a7ad1478fc6e599e", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxdp-devel-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-0__1.0.3-4.el9.x86_64", + sha256 = "240837601b4cb9260b28f66e39ad45c889e27902b4a80b36a25532c0a19ccf14", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-devel-0__1.0.3-4.el9.x86_64", + sha256 = "d27298c194096fc236ab2163bd971ba06484c3ead58d26cd8bde3eaa9db4b8f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-devel-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxshmfence-0__1.3-10.el9.x86_64", + sha256 = "a9681af3e5e80d7f099641ac7a37bdb36d929e897152a6490856f5461831cd5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxshmfence-1.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxml2-devel-0__2.9.13-9.el9.x86_64", + sha256 = "f98f3688a0303007bff3ec562df8b6b0d700549ca59ca91422ee152c222d461b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxml2-devel-2.9.13-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libzstd-devel-0__1.5.5-1.el9.x86_64", + sha256 = "7bb2aac4e8480aaa589626b202a098bc17bec3b5fbfc64c741f8d69e2b2b99bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libzstd-devel-1.5.5-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-filesystem-0__20.1.8-3.el9.x86_64", + sha256 = "f202993b0c11cc64cad0d2f8e4c6da50aeda05e8ee64eacde9944a41de4dd784", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-filesystem-20.1.8-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-libs-0__20.1.8-3.el9.x86_64", + sha256 = "e46752cae898bc92d8b7cd3984f294f1b958e950a0afd63a37f444b223927533", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-libs-20.1.8-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-dri-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "85a691ca4773d283c9c7929dd63eece1e430d4b14abf2b63b7793289c1da477f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-dri-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-filesystem-0__24.2.8-2.el9.x86_64", + sha256 = "915ec77d7cf42c403095bd006adb75968883e515654d7bbb0de3278e00cf2827", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-filesystem-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libEGL-0__24.2.8-2.el9.x86_64", + sha256 = "db5a7f9c9b5476ec5c173a30a9e042a076c74f4ba4143402ed6ee7e6dc18be62", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libEGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libGL-0__24.2.8-2.el9.x86_64", + sha256 = "eb9cf4f7b8f32033a42d657e4ca4c4b2cff18b610f52b0203909740a2900828a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-0__24.2.8-2.el9.x86_64", + sha256 = "7840459f296af4e98ecbc671d8fee083dd9708426dc06ccdfcde997091dde1a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-devel-0__24.2.8-2.el9.x86_64", + sha256 = "397a54364c6344b1dd7bfb26c326c54738e81fd3129d019df554acd9482a1fb9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-devel-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libglapi-0__24.2.8-2.el9.x86_64", + sha256 = "ef1ab98c5305f5d421db001828ab9c6d737314f0e8e740d29384f8b2884aa16e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libglapi-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "1af3ad02c088a0ed981298ac73609b6c2da5fea70782ec4c04de14acbc854127", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-vulkan-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mkfontscale-0__1.2.1-3.el9.x86_64", + sha256 = "a7f013da35ef80879e3f327ebf2fb31d8fd8f0811572693153d470842788068f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mkfontscale-1.2.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "openjpeg2-0__2.4.0-8.el9.x86_64", + sha256 = "ed25f681305664429a0202ce98305e42972d0096ba957358c94856b012bb4379", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/openjpeg2-2.4.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "opus-0__1.3.1-10.el9.x86_64", + sha256 = "d194718353f0874b9f85327821fc45adba85f646474b473d1b455b9075a77ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/opus-1.3.1-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-0__1.48.7-3.el9.x86_64", + sha256 = "d366f6b4ce6f1714ff880b0afa3ebcb004f245bf578937709db6417aa88f1fee", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-devel-0__1.48.7-3.el9.x86_64", + sha256 = "497fd93cea696fce84b38e69efa17df149cb3ba49268ec513aa2d49b3ab0fe86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-devel-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-cpp-0__8.44-4.el9.x86_64", + sha256 = "0e459d7742ef54bd7c4d9d4e75bee253a95370e074c221f402b05f14fe274459", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-cpp-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-devel-0__8.44-4.el9.x86_64", + sha256 = "87005c24261e0d6f9908180323135a13a8761b1ddd0303a3052aa1f4ab156d7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-devel-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf16-0__8.44-4.el9.x86_64", + sha256 = "9590a2fed0802ffa2c563742aaf20356547f3c96bc7c1ab1c257f6ca9abcba27", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf16-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf32-0__8.44-4.el9.x86_64", + sha256 = "5eda4debda2b7a87dcc6b1afa0577c1e77f162509a80438f403bebd871b50bed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf32-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-devel-0__10.40-6.el9.x86_64", + sha256 = "32bc7fa49398097a0b7ad6ab5281a718bc91558953636fd536b7bbef189defce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-devel-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf16-0__10.40-6.el9.x86_64", + sha256 = "d5e028330f87b51930ffc9d0dd5668673563d4282eeed3a082c546966249bf85", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf16-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf32-0__10.40-6.el9.x86_64", + sha256 = "55a6230c51157596d224737b43d07477c8537e88ae00c561123de317fcc8932a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf32-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-0__1.0.1-1.el9.x86_64", + sha256 = "0f3d1760c6bf71e2413c323eff5fdd2b68cedd71e106cba77c58a93aa04a76f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-alsa-0__1.0.1-1.el9.x86_64", + sha256 = "5be3439c7d5b108d1fcf0e7654f6639551b1686880bf083ff0b33c541a060164", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-alsa-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64", + sha256 = "5330d9280bbc7b7a9ce4f78ad5ae7997281d75a805c93e28cfc6c4d785cd8e61", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64", + sha256 = "6e2a74bbc6eff6421e3bd078f7b253fac88069e7938b06816fd1565cdf053ba3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-libs-0__1.0.1-1.el9.x86_64", + sha256 = "5e510c378847a946683c9eacc2bd9c7fd27e6b1118a5456673da9dbadb609716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-media-session-0__0.3.32-3.el9.x86_64", + sha256 = "10a532cff1ff9502933cb69d3ec7b887da1986321c59bb45dbcf2553b5ce7cd9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-media-session-0.3.32-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-pulseaudio-0__1.0.1-1.el9.x86_64", + sha256 = "e4a705cc9513a7fbd0e442b937f2217708b563df37a26ae4743c4e84a81af410", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-pulseaudio-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pixman-devel-0__0.40.0-6.el9.x86_64", + sha256 = "b0bd4db0173d65f476dec24cfd5ce7bc196fc88713ee2e5acf5d1b3542c483d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-devel-0.40.0-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-0__15.0-3.el9.x86_64", + sha256 = "8d2b4de1bbd733e1c85ed0152fc8439b640f09ac3a5d6792092549bfbe42e7d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-glib2-0__15.0-3.el9.x86_64", + sha256 = "bef7faba9d974349bc52cf5f1499bdd7b986fc1ea4ddfdf6e74d9c54ea5b569f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-glib2-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "rtkit-0__0.11-29.el9.x86_64", + sha256 = "e4e19d6b97ab3bbef93fa7d24949e2888f2dbaaf053529e12da1a372db7e8084", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/rtkit-0.11-29.el9.x86_64.rpm", + ], +) + +rpm( + name = "shared-mime-info-0__2.1-5.el9.x86_64", + sha256 = "3c04e67223e1c61dfd06c378d49663c4289d974099b21a472631d94644fec0ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shared-mime-info-2.1-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "sound-theme-freedesktop-0__0.8-17.el9.x86_64", + sha256 = "e7b65924babd215e23e214bcc77f6b2d78764415d31d138db9c2bd23b3a71e24", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sound-theme-freedesktop-0.8-17.el9.noarch.rpm", + ], +) + +rpm( + name = "sysprof-capture-devel-0__3.40.1-3.el9.x86_64", + sha256 = "57ef7ebd2b77a0671a90b6f728e6ba9e72a0c12ac7262b7127f0d13a35eec1ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sysprof-capture-devel-3.40.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "usbutils-0__017-1.el9.x86_64", + sha256 = "723291f990fd4c93233e4f4d52995ecb57a7e976074384ec2da3b64c6060bb58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/usbutils-017-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte-profile-0__0.64.2-2.el9.x86_64", + sha256 = "20c7cc4d012677a19ef11a5bf7c89d13bd0462b63a4e570a151384c0d4850f7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte-profile-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte291-0__0.64.2-2.el9.x86_64", + sha256 = "fc5b398115d0988599e9959c5e58ad372961691d67e13e1bea43354dc7f31ae4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte291-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-loader-0__1.4.304.0-1.el9.x86_64", + sha256 = "284a3909148079a2e75a892aafc16dfee651ecdf02e1eb26f2fbd8009569bd2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-loader-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-tools-0__1.4.304.0-1.el9.x86_64", + sha256 = "84871be0f7707cb101fd494b69312279c68ce20643dbe2512bebc7ab80687443", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-tools-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "wayland-devel-0__1.21.0-1.el9.x86_64", + sha256 = "c19da9a5052bdd8895f058d20e2a900c2c8029491cae4302bca1901743fda93d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/wayland-devel-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64", + sha256 = "7e2f0ac1bbc9b58b34cdda0caa169a39a304c43a4345823356c3c973f2b65e50", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webkit2gtk3-jsc-2.48.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webrtc-audio-processing-0__0.3.1-8.el9.x86_64", + sha256 = "94819790916299e9326bce0b471f1c317c9574cf67d090700ba6df7bf3206c76", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webrtc-audio-processing-0.3.1-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "xdg-dbus-proxy-0__0.1.3-1.el9.x86_64", + sha256 = "b960d89bf0aacd8b9d5595bcf55433c819881374f7b43771dbc45887fcb7e5d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xdg-dbus-proxy-0.1.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "xkeyboard-config-0__2.33-2.el9.x86_64", + sha256 = "ca47ef1bfc9cf8b0996ffad8c423270e84f87fb2a32386b03edadc5d38a2fdf5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xkeyboard-config-2.33-2.el9.noarch.rpm", + ], +) + +rpm( + name = "xml-common-0__0.6.3-58.el9.x86_64", + sha256 = "f5d8c3fe25e7e46e39bac4a03b1b6c7b9601e6df62af59e4edf34548406d4f95", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xml-common-0.6.3-58.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64", + sha256 = "3a9c430034883be724a7d9d7492594d3637d34d410170d47300d32a2edf630c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-fonts-ISO8859-1-100dpi-7.5-33.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-proto-devel-0__2024.1-1.el9.x86_64", + sha256 = "8a41299cd4bbc6e4671aa4e4069cef8888689351062101de9966981bcc766900", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-proto-devel-2024.1-1.el9.noarch.rpm", + ], +) + +rpm( + name = "xz-devel-0__5.2.5-8.el9.x86_64", + sha256 = "b04077515f5bea9a46adaf85a5217cec0f7eaa2a1286c5147310aedfc57bf94f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xz-devel-5.2.5-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "zlib-devel-0__1.2.11-41.el9.x86_64", + sha256 = "f41f5fc4a53f5b84e06b815dd3402847eb0415bf74bfb77ce490d9920fab91b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/zlib-devel-1.2.11-41.el9.x86_64.rpm", + ], +) +# EDV dependency - END diff --git a/kubevirt-patch/v1.8.1/cmd-virtlauncher-BUILD.bazel b/kubevirt-patch/v1.8.1/cmd-virtlauncher-BUILD.bazel new file mode 100644 index 0000000..f68ccbb --- /dev/null +++ b/kubevirt-patch/v1.8.1/cmd-virtlauncher-BUILD.bazel @@ -0,0 +1,270 @@ +load("@bazeldnf//bazeldnf:defs.bzl", "xattrs") +load("@io_bazel_rules_docker//contrib:group.bzl", "group_entry", "group_file") +load("@io_bazel_rules_docker//contrib:passwd.bzl", "passwd_entry", "passwd_file") +load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") +load("@rules_oci//oci:defs.bzl", "oci_image") +load("@rules_pkg//:pkg.bzl", "pkg_tar") +load("//staging/src/kubevirt.io/client-go/version:def.bzl", "version_x_defs") + +go_library( + name = "go_default_library", + srcs = ["virt-launcher.go"], + importpath = "kubevirt.io/kubevirt/cmd/virt-launcher", + visibility = ["//visibility:private"], + deps = [ + "//pkg/apimachinery/wait:go_default_library", + "//pkg/cloud-init:go_default_library", + "//pkg/config:go_default_library", + "//pkg/container-disk:go_default_library", + "//pkg/downwardmetrics:go_default_library", + "//pkg/ephemeral-disk:go_default_library", + "//pkg/hooks:go_default_library", + "//pkg/hotplug-disk:go_default_library", + "//pkg/ignition:go_default_library", + "//pkg/util:go_default_library", + "//pkg/virt-config:go_default_library", + "//pkg/virt-handler/cmd-client:go_default_library", + "//pkg/virt-launcher:go_default_library", + "//pkg/virt-launcher/metadata:go_default_library", + "//pkg/virt-launcher/notify-client:go_default_library", + "//pkg/virt-launcher/premigration-hook-server:go_default_library", + "//pkg/virt-launcher/premigration-hook-server/cpuhook:go_default_library", + "//pkg/virt-launcher/premigration-hook-server/network:go_default_library", + "//pkg/virt-launcher/standalone:go_default_library", + "//pkg/virt-launcher/virtwrap:go_default_library", + "//pkg/virt-launcher/virtwrap/agent-poller:go_default_library", + "//pkg/virt-launcher/virtwrap/api:go_default_library", + "//pkg/virt-launcher/virtwrap/cli:go_default_library", + "//pkg/virt-launcher/virtwrap/cmd-server:go_default_library", + "//pkg/virt-launcher/virtwrap/util:go_default_library", + "//staging/src/kubevirt.io/api/core/v1:go_default_library", + "//staging/src/kubevirt.io/client-go/log:go_default_library", + "//vendor/github.com/spf13/pflag:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", + "//vendor/libvirt.org/go/libvirt:go_default_library", + ], +) + +go_binary( + name = "virt-launcher", + embed = [":go_default_library"], + visibility = ["//visibility:public"], + x_defs = version_x_defs(), +) + +pkg_tar( + name = "virt-launcher-tar", + srcs = [ + "node-labeller/node-labeller.sh", + ":virt-launcher", + "//cmd/container-disk-v2alpha:container-disk", + "//cmd/virt-freezer", + "//cmd/virt-launcher-monitor", + "//cmd/virt-probe", + "//cmd/virt-tail", + ], + package_dir = "/usr/bin", +) + +xattrs( + name = "setcaps", + capabilities = { + "/usr/bin/virt-launcher-monitor": [ + "cap_net_bind_service", + ], + }, + tar = ":virt-launcher-tar", +) + +passwd_entry( + name = "root-user", + gid = 0, + home = "/root", + info = "root", + shell = "/bin/bash", + uid = 0, + username = "root", +) + +group_entry( + name = "qemu-group", + gid = 107, + groupname = "qemu", +) + +group_entry( + name = "root-group", + gid = 0, + groupname = "root", +) + +group_file( + name = "group", + entries = [ + ":qemu-group", + ":root-group", + ], +) + +passwd_entry( + name = "qemu-user", + gid = 107, + home = "/home/qemu", + shell = "/bin/bash", + uid = 107, + username = "qemu", +) + +passwd_file( + name = "passwd", + entries = [ + ":qemu-user", + ":root-user", + ], +) + +pkg_tar( + name = "libvirt-config", + srcs = [ + ":qemu.conf", + ":virtqemud.conf", + ], + package_dir = "/etc/libvirt", +) + +pkg_tar( + name = "passwd-tar", + srcs = [ + ":group", + ":passwd", + ], + mode = "0644", + package_dir = "etc", + visibility = ["//visibility:public"], +) + +pkg_tar( + name = "nsswitch-tar", + srcs = [ + ":nsswitch.conf", + ], + mode = "0644", + package_dir = "/etc", +) + +pkg_tar( + name = "qemu-hook-tar", + srcs = [ + ":qemu", + ], + mode = "0755", + owner = "107.107", + package_dir = "/etc/libvirt/hooks", +) + +# Symlink /var/run -> ../run for compatibility with libvirt socket paths +# In CentOS Stream 10+, libvirt creates sockets in /run/libvirt/ but +# KubeVirt expects them at /var/run/libvirt/ +# IMPORTANT: Must use relative symlink (../run) not absolute (/run) because +# virt-handler accesses the container's filesystem via /proc//root/var/run. +# With an absolute symlink, the kernel would resolve /run relative to +# virt-handler's root, not the container's root. +pkg_tar( + name = "var-run-symlink-tar", + symlinks = { + "/var/run": "../run", + }, +) + +# Go binary for advanced qemu hook (used when LibvirtHooksServerAndClient is enabled) +# This binary is placed in /usr/bin and replaces /etc/libvirt/hooks/qemu at runtime +pkg_tar( + name = "libvirt-hook-client-tar", + srcs = [ + "//cmd/virt-launcher/libvirt-hook-client", + ], + package_dir = "/usr/bin", +) + +# Workaround for https://github.com/moby/moby/issues/44106 +# Need to create the directory upfront, otherwise it gets assigned wrong +# permissions when unpacked. +pkg_tar( + name = "qemu-kvm-modules-dir-tar", + empty_dirs = [ + "usr/lib64/qemu-kvm", + ], + mode = "0755", + owner = "0.0", +) + +pkg_tar( + name = "get-version-tar", + srcs = ["//:get-version"], + package_dir = "/", +) + +# EDV dependency - START +pkg_tar( + name = "custom-qemu-build", + srcs = ["@custom-qemu//file"], + mode = "0755", + owner = "0.0", + package_dir = "/usr/libexec", + visibility = ["//visibility:public"], +) +# EDV dependency - END + +oci_image( + name = "version-container", + base = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": "@go_image_base_aarch64", + "@io_bazel_rules_go//go/platform:linux_s390x": "@go_image_base_s390x", + "//conditions:default": "@go_image_base", + }), + tars = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": [ + "//rpm:launcherbase_aarch64", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":libvirt-hook-client-tar", + ":qemu-kvm-modules-dir-tar", + ":var-run-symlink-tar", + ], + "@io_bazel_rules_go//go/platform:linux_s390x": [ + "//rpm:launcherbase_s390x", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":libvirt-hook-client-tar", + ":qemu-kvm-modules-dir-tar", + ":var-run-symlink-tar", + ], + "//conditions:default": [ + "//rpm:launcherbase_x86_64", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":libvirt-hook-client-tar", + ":qemu-kvm-modules-dir-tar", + ":var-run-symlink-tar", + ":custom-qemu-build", # EDV dependency + ], + }), +) + +oci_image( + name = "virt-launcher-image", + base = ":version-container", + entrypoint = ["/usr/bin/virt-launcher"], + tars = [":setcaps"], + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/kubevirt-patch/v1.8.1/rpm-BUILD.bazel b/kubevirt-patch/v1.8.1/rpm-BUILD.bazel new file mode 100644 index 0000000..2d0e6b2 --- /dev/null +++ b/kubevirt-patch/v1.8.1/rpm-BUILD.bazel @@ -0,0 +1,8390 @@ +load("@bazeldnf//bazeldnf:defs.bzl", "bazeldnf", "rpm", "rpmtree", "tar2files") +load(":centos_stream.bzl", "centos_stream_alias", "centos_stream_config_settings") + +# Define config settings for CentOS Stream version selection +centos_stream_config_settings() + +# CentOS Stream 9 sandbox targets +bazeldnf( + name = "sandbox_x86_64_cs9", + command = "sandbox", + tar = ":sandboxroot_x86_64_cs9", +) + +bazeldnf( + name = "sandbox_aarch64_cs9", + command = "sandbox", + tar = ":sandboxroot_aarch64_cs9", +) + +bazeldnf( + name = "sandbox_s390x_cs9", + command = "sandbox", + tar = ":sandboxroot_s390x_cs9", +) + +# CentOS Stream 10 sandbox targets +bazeldnf( + name = "sandbox_x86_64_cs10", + command = "sandbox", + tar = ":sandboxroot_x86_64_cs10", +) + +bazeldnf( + name = "sandbox_aarch64_cs10", + command = "sandbox", + tar = ":sandboxroot_aarch64_cs10", +) + +bazeldnf( + name = "sandbox_s390x_cs10", + command = "sandbox", + tar = ":sandboxroot_s390x_cs10", +) + +# CentOS Stream 9 ldd targets +bazeldnf( + name = "ldd_x86_64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_x86_64_cs9", + rulename = "libvirt-libs_x86_64_cs9", +) + +bazeldnf( + name = "ldd_aarch64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_aarch64_cs9", + rulename = "libvirt-libs_aarch64_cs9", +) + +bazeldnf( + name = "ldd_s390x_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_s390x_cs9", + rulename = "libvirt-libs_s390x_cs9", +) + +# CentOS Stream 10 ldd targets +bazeldnf( + name = "ldd_x86_64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libfido2.so.1", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_x86_64_cs10", + rulename = "libvirt-libs_x86_64_cs10", +) + +bazeldnf( + name = "ldd_aarch64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libfido2.so.1", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_aarch64_cs10", + rulename = "libvirt-libs_aarch64_cs10", +) + +bazeldnf( + name = "ldd_s390x_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libfido2.so.1", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_s390x_cs10", + rulename = "libvirt-libs_s390x_cs10", +) + +# CentOS Stream 9 ldd targets for libnbd +bazeldnf( + name = "ldd_libnbd_x86_64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_x86_64_cs9", + rulename = "libnbd-libs_x86_64_cs9", +) + +bazeldnf( + name = "ldd_libnbd_aarch64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_aarch64_cs9", + rulename = "libnbd-libs_aarch64_cs9", +) + +bazeldnf( + name = "ldd_libnbd_s390x_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_s390x_cs9", + rulename = "libnbd-libs_s390x_cs9", +) + +# CentOS Stream 10 ldd targets for libnbd +bazeldnf( + name = "ldd_libnbd_x86_64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_x86_64_cs10", + rulename = "libnbd-libs_x86_64_cs10", +) + +bazeldnf( + name = "ldd_libnbd_aarch64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_aarch64_cs10", + rulename = "libnbd-libs_aarch64_cs10", +) + +bazeldnf( + name = "ldd_libnbd_s390x_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_s390x_cs10", + rulename = "libnbd-libs_s390x_cs10", +) + +# CentOS Stream version-selecting aliases +# Auto-generated by hack/rpm-deps-aliases.sh - do not edit manually + +centos_stream_alias( + name = "testimage_x86_64", + cs10_target = ":testimage_x86_64_cs10", + cs9_target = ":testimage_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "testimage_aarch64", + cs10_target = ":testimage_aarch64_cs10", + cs9_target = ":testimage_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "testimage_s390x", + cs10_target = ":testimage_s390x_cs10", + cs9_target = ":testimage_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-devel_x86_64", + cs10_target = ":libvirt-devel_x86_64_cs10", + cs9_target = ":libvirt-devel_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-devel_aarch64", + cs10_target = ":libvirt-devel_aarch64_cs10", + cs9_target = ":libvirt-devel_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-devel_s390x", + cs10_target = ":libvirt-devel_s390x_cs10", + cs9_target = ":libvirt-devel_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_x86_64", + cs10_target = ":libvirt-libs_x86_64_cs10", + cs9_target = ":libvirt-libs_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_aarch64", + cs10_target = ":libvirt-libs_aarch64_cs10", + cs9_target = ":libvirt-libs_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_s390x", + cs10_target = ":libvirt-libs_s390x_cs10", + cs9_target = ":libvirt-libs_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sandboxroot_x86_64", + cs10_target = ":sandboxroot_x86_64_cs10", + cs9_target = ":sandboxroot_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sandboxroot_aarch64", + cs10_target = ":sandboxroot_aarch64_cs10", + cs9_target = ":sandboxroot_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sandboxroot_s390x", + cs10_target = ":sandboxroot_s390x_cs10", + cs9_target = ":sandboxroot_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "launcherbase_x86_64", + cs10_target = ":launcherbase_x86_64_cs10", + cs9_target = ":launcherbase_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "launcherbase_aarch64", + cs10_target = ":launcherbase_aarch64_cs10", + cs9_target = ":launcherbase_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "launcherbase_s390x", + cs10_target = ":launcherbase_s390x_cs10", + cs9_target = ":launcherbase_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "handlerbase_x86_64", + cs10_target = ":handlerbase_x86_64_cs10", + cs9_target = ":handlerbase_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "handlerbase_aarch64", + cs10_target = ":handlerbase_aarch64_cs10", + cs9_target = ":handlerbase_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "handlerbase_s390x", + cs10_target = ":handlerbase_s390x_cs10", + cs9_target = ":handlerbase_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "passt_tree_x86_64", + cs10_target = ":passt_tree_x86_64_cs10", + cs9_target = ":passt_tree_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "passt_tree_aarch64", + cs10_target = ":passt_tree_aarch64_cs10", + cs9_target = ":passt_tree_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "passt_tree_s390x", + cs10_target = ":passt_tree_s390x_cs10", + cs9_target = ":passt_tree_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libguestfs-tools_x86_64", + cs10_target = ":libguestfs-tools_x86_64_cs10", + cs9_target = ":libguestfs-tools_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libguestfs-tools_s390x", + cs10_target = ":libguestfs-tools_s390x_cs10", + cs9_target = ":libguestfs-tools_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "exportserverbase_x86_64", + cs10_target = ":exportserverbase_x86_64_cs10", + cs9_target = ":exportserverbase_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "exportserverbase_aarch64", + cs10_target = ":exportserverbase_aarch64_cs10", + cs9_target = ":exportserverbase_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "exportserverbase_s390x", + cs10_target = ":exportserverbase_s390x_cs10", + cs9_target = ":exportserverbase_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "pr-helper_x86_64", + cs10_target = ":pr-helper_x86_64_cs10", + cs9_target = ":pr-helper_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "pr-helper_aarch64", + cs10_target = ":pr-helper_aarch64_cs10", + cs9_target = ":pr-helper_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sidecar-shim_x86_64", + cs10_target = ":sidecar-shim_x86_64_cs10", + cs9_target = ":sidecar-shim_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sidecar-shim_aarch64", + cs10_target = ":sidecar-shim_aarch64_cs10", + cs9_target = ":sidecar-shim_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sidecar-shim_s390x", + cs10_target = ":sidecar-shim_s390x_cs10", + cs9_target = ":sidecar-shim_s390x_cs9", + visibility = ["//visibility:public"], +) + +# Path-based aliases for libvirt-libs tar2files outputs +centos_stream_alias( + name = "libvirt-libs_x86_64/usr/lib64", + cs10_target = ":libvirt-libs_x86_64_cs10/usr/lib64", + cs9_target = ":libvirt-libs_x86_64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_x86_64/usr/include/libvirt", + cs10_target = ":libvirt-libs_x86_64_cs10/usr/include/libvirt", + cs9_target = ":libvirt-libs_x86_64_cs9/usr/include/libvirt", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_aarch64/usr/lib64", + cs10_target = ":libvirt-libs_aarch64_cs10/usr/lib64", + cs9_target = ":libvirt-libs_aarch64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_aarch64/usr/include/libvirt", + cs10_target = ":libvirt-libs_aarch64_cs10/usr/include/libvirt", + cs9_target = ":libvirt-libs_aarch64_cs9/usr/include/libvirt", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_s390x/usr/lib64", + cs10_target = ":libvirt-libs_s390x_cs10/usr/lib64", + cs9_target = ":libvirt-libs_s390x_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_s390x/usr/include/libvirt", + cs10_target = ":libvirt-libs_s390x_cs10/usr/include/libvirt", + cs9_target = ":libvirt-libs_s390x_cs9/usr/include/libvirt", + visibility = ["//visibility:public"], +) + +# Path-based aliases for libnbd-libs tar2files outputs +centos_stream_alias( + name = "libnbd-libs_x86_64/usr/lib64", + cs10_target = ":libnbd-libs_x86_64_cs10/usr/lib64", + cs9_target = ":libnbd-libs_x86_64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_x86_64/usr/include", + cs10_target = ":libnbd-libs_x86_64_cs10/usr/include", + cs9_target = ":libnbd-libs_x86_64_cs9/usr/include", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_aarch64/usr/lib64", + cs10_target = ":libnbd-libs_aarch64_cs10/usr/lib64", + cs9_target = ":libnbd-libs_aarch64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_aarch64/usr/include", + cs10_target = ":libnbd-libs_aarch64_cs10/usr/include", + cs9_target = ":libnbd-libs_aarch64_cs9/usr/include", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_s390x/usr/lib64", + cs10_target = ":libnbd-libs_s390x_cs10/usr/lib64", + cs9_target = ":libnbd-libs_s390x_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_s390x/usr/include", + cs10_target = ":libnbd-libs_s390x_cs10/usr/include", + cs9_target = ":libnbd-libs_s390x_cs9/usr/include", + visibility = ["//visibility:public"], +) + +# CentOS Stream 10 rpmtree targets +rpmtree( + name = "exportserverbase_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +# CentOS Stream 9 rpmtree targets +rpmtree( + name = "exportserverbase_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@authselect-0__1.5.2-1.el10.aarch64//rpm", + "@authselect-libs-0__1.5.2-1.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cracklib-0__2.9.11-8.el10.aarch64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@diffutils-0__3.10-8.el10.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-1__1.23-14.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@gzip-0__1.13-3.el10.aarch64//rpm", + "@iproute-0__6.17.0-1.el10.aarch64//rpm", + "@iptables-libs-0__1.8.11-12.el10.aarch64//rpm", + "@jansson-0__2.14-3.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libbpf-2__1.7.0-1.el10.aarch64//rpm", + "@libburn-0__1.5.6-6.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libisoburn-0__1.5.6-6.el10.aarch64//rpm", + "@libisofs-0__1.5.6-6.el10.aarch64//rpm", + "@libmnl-0__1.0.5-7.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.aarch64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.aarch64//rpm", + "@libnftnl-0__1.3.0-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libpwquality-0__1.4.5-12.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libselinux-utils-0__3.10-1.el10.aarch64//rpm", + "@libsemanage-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libutempter-0__1.2.1-15.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@nftables-1__1.1.5-3.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-0__1.6.1-9.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@policycoreutils-0__3.10-1.el10.aarch64//rpm", + "@popt-0__1.19-8.el10.aarch64//rpm", + "@procps-ng-0__4.0.4-11.el10.aarch64//rpm", + "@psmisc-0__23.6-8.el10.aarch64//rpm", + "@qemu-img-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@selinux-policy-0__42.1.18-1.el10.aarch64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@shadow-utils-2__4.15.0-11.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@util-linux-0__2.40.2-18.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xorriso-0__1.5.6-6.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.17.0-2.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-6.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libbpf-2__1.5.0-3.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-6.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-5.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__10.1.0-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.73-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@diffutils-0__3.10-8.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@iproute-0__6.17.0-1.el10.s390x//rpm", + "@iptables-libs-0__1.8.11-12.el10.s390x//rpm", + "@jansson-0__2.14-3.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libbpf-2__1.7.0-1.el10.s390x//rpm", + "@libburn-0__1.5.6-6.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libisoburn-0__1.5.6-6.el10.s390x//rpm", + "@libisofs-0__1.5.6-6.el10.s390x//rpm", + "@libmnl-0__1.0.5-7.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.s390x//rpm", + "@libnfnetlink-0__1.0.2-3.el10.s390x//rpm", + "@libnftnl-0__1.3.0-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libselinux-utils-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@nftables-1__1.1.5-3.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@policycoreutils-0__3.10-1.el10.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@procps-ng-0__4.0.4-11.el10.s390x//rpm", + "@psmisc-0__23.6-8.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@selinux-policy-0__42.1.18-1.el10.s390x//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xorriso-0__1.5.6-6.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.17.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libbpf-2__1.5.0-3.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-6.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-5.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.73-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@diffutils-0__3.10-8.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@iproute-0__6.17.0-1.el10.x86_64//rpm", + "@iptables-libs-0__1.8.11-12.el10.x86_64//rpm", + "@jansson-0__2.14-3.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libbpf-2__1.7.0-1.el10.x86_64//rpm", + "@libburn-0__1.5.6-6.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libisoburn-0__1.5.6-6.el10.x86_64//rpm", + "@libisofs-0__1.5.6-6.el10.x86_64//rpm", + "@libmnl-0__1.0.5-7.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.x86_64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.x86_64//rpm", + "@libnftnl-0__1.3.0-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libselinux-utils-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@nftables-1__1.1.5-3.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@policycoreutils-0__3.10-1.el10.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@procps-ng-0__4.0.4-11.el10.x86_64//rpm", + "@psmisc-0__23.6-8.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@selinux-policy-0__42.1.18-1.el10.x86_64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xorriso-0__1.5.6-6.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.17.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libbpf-2__1.5.0-3.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-6.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-5.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.73-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@authselect-0__1.5.2-1.el10.aarch64//rpm", + "@authselect-libs-0__1.5.2-1.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-0__1.0.8-25.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@capstone-0__5.0.1-6.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cracklib-0__2.9.11-8.el10.aarch64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.aarch64//rpm", + "@dbus-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-broker-0__36-4.el10.aarch64//rpm", + "@dbus-common-1__1.14.10-5.el10.aarch64//rpm", + "@diffutils-0__3.10-8.el10.aarch64//rpm", + "@dmidecode-1__3.6-5.el10.aarch64//rpm", + "@duktape-0__2.7.0-10.el10.aarch64//rpm", + "@edk2-aarch64-0__20251114-4.el10.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-1__1.23-14.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@gettext-0__0.22.5-6.el10.aarch64//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.aarch64//rpm", + "@gettext-libs-0__0.22.5-6.el10.aarch64//rpm", + "@gettext-runtime-0__0.22.5-6.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@gnutls-dane-0__3.8.10-3.el10.aarch64//rpm", + "@gnutls-utils-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@gzip-0__1.13-3.el10.aarch64//rpm", + "@iproute-0__6.17.0-1.el10.aarch64//rpm", + "@iproute-tc-0__6.17.0-1.el10.aarch64//rpm", + "@iptables-libs-0__1.8.11-12.el10.aarch64//rpm", + "@jansson-0__2.14-3.el10.aarch64//rpm", + "@json-c-0__0.18-3.el10.aarch64//rpm", + "@json-glib-0__1.8.0-5.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@kmod-0__31-13.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libbpf-2__1.7.0-1.el10.aarch64//rpm", + "@libburn-0__1.5.6-6.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcbor-0__0.11.0-3.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libevent-0__2.1.12-16.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libfdt-0__1.7.0-12.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libfido2-0__1.14.0-7.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libgomp-0__14.3.1-4.4.el10.aarch64//rpm", + "@libibverbs-0__61.0-1.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libisoburn-0__1.5.6-6.el10.aarch64//rpm", + "@libisofs-0__1.5.6-6.el10.aarch64//rpm", + "@libmnl-0__1.0.5-7.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnbd-0__1.24.1-1.el10.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.aarch64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.aarch64//rpm", + "@libnftnl-0__1.3.0-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libnl3-0__3.11.0-1.el10.aarch64//rpm", + "@libpcap-14__1.10.4-7.el10.aarch64//rpm", + "@libpng-2__1.6.40-10.el10.aarch64//rpm", + "@libpwquality-0__1.4.5-12.el10.aarch64//rpm", + "@libseccomp-0__2.5.6-1.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libselinux-utils-0__3.10-1.el10.aarch64//rpm", + "@libsemanage-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libslirp-0__4.7.0-10.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libssh-0__0.12.0-2.el10.aarch64//rpm", + "@libssh-config-0__0.12.0-2.el10.aarch64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libtirpc-0__1.3.5-1.el10.aarch64//rpm", + "@libtpms-0__0.9.6-11.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libusb1-0__1.0.29-3.el10.aarch64//rpm", + "@libutempter-0__1.2.1-15.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libvirt-client-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libxml2-0__2.12.5-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@lz4-libs-0__1.9.4-8.el10.aarch64//rpm", + "@lzo-0__2.10-14.el10.aarch64//rpm", + "@lzop-0__1.04-16.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@nftables-1__1.1.5-3.el10.aarch64//rpm", + "@nmap-ncat-4__7.92-5.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@numad-0__0.5-50.20251104git.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-0__1.6.1-9.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pixman-0__0.43.4-2.el10.aarch64//rpm", + "@policycoreutils-0__3.10-1.el10.aarch64//rpm", + "@polkit-0__125-4.el10.aarch64//rpm", + "@polkit-libs-0__125-4.el10.aarch64//rpm", + "@popt-0__1.19-8.el10.aarch64//rpm", + "@procps-ng-0__4.0.4-11.el10.aarch64//rpm", + "@protobuf-c-0__1.5.0-6.el10.aarch64//rpm", + "@psmisc-0__23.6-8.el10.aarch64//rpm", + "@qemu-img-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-usb-host-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@selinux-policy-0__42.1.18-1.el10.aarch64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@shadow-utils-2__4.15.0-11.el10.aarch64//rpm", + "@snappy-0__1.1.10-7.el10.aarch64//rpm", + "@swtpm-0__0.9.0-2.el10.aarch64//rpm", + "@swtpm-libs-0__0.9.0-2.el10.aarch64//rpm", + "@swtpm-tools-0__0.9.0-2.el10.aarch64//rpm", + "@systemd-0__257-23.el10.aarch64//rpm", + "@systemd-container-0__257-23.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@systemd-pam-0__257-23.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@tpm2-tss-0__4.1.3-6.el10.aarch64//rpm", + "@unbound-libs-0__1.24.2-7.el10.aarch64//rpm", + "@usbredir-0__0.13.0-6.el10.aarch64//rpm", + "@util-linux-0__2.40.2-18.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@virtiofsd-0__1.13.3-1.el10.aarch64//rpm", + "@xorriso-0__1.5.6-6.el10.aarch64//rpm", + "@xz-1__5.6.2-4.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + "@zstd-0__1.5.5-9.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_aarch64_cs9", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-0__1.0.8-11.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@capstone-0__4.0.2-10.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@dmidecode-1__3.6-2.el9.aarch64//rpm", + "@edk2-aarch64-0__20241117-8.el9.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@fips-provider-next-0__1.2.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@gettext-0__0.21-8.el9.aarch64//rpm", + "@gettext-libs-0__0.21-8.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@gnutls-dane-0__3.8.10-3.el9.aarch64//rpm", + "@gnutls-utils-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.17.0-2.el9.aarch64//rpm", + "@iproute-tc-0__6.17.0-2.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@json-glib-0__1.6.6-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-0__28-11.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-6.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libbpf-2__1.5.0-3.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libevent-0__2.1.12-8.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libfdt-0__1.6.0-7.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgomp-0__11.5.0-14.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__61.0-2.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnbd-0__1.20.3-4.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpng-2__1.6.37-14.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@librdmacm-0__61.0-2.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libslirp-0__4.4.0-8.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libssh-0__0.10.4-17.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-17.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libtpms-0__0.9.6-11.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libusbx-0__1.0.26-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-client-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@lzo-0__2.10-7.el9.aarch64//rpm", + "@lzop-0__1.04-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-6.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-5.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@numad-0__0.5-37.20150602git.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pixman-0__0.40.0-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-5.el9.aarch64//rpm", + "@polkit-0__0.117-14.el9.aarch64//rpm", + "@polkit-libs-0__0.117-14.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@protobuf-c-0__1.3.3-13.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-usb-host-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.73-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@snappy-0__1.1.8-8.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@swtpm-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.aarch64//rpm", + "@systemd-0__252-64.el9.aarch64//rpm", + "@systemd-container-0__252-64.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@systemd-pam-0__252-64.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-64.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@unbound-libs-0__1.24.2-2.el9.aarch64//rpm", + "@usbredir-0__0.13.0-2.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@virtiofsd-0__1.13.0-1.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-0__5.2.5-8.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + "@zstd-0__1.5.5-1.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-0__1.0.8-25.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@capstone-0__5.0.1-6.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.s390x//rpm", + "@dbus-1__1.14.10-5.el10.s390x//rpm", + "@dbus-broker-0__36-4.el10.s390x//rpm", + "@dbus-common-1__1.14.10-5.el10.s390x//rpm", + "@diffutils-0__3.10-8.el10.s390x//rpm", + "@duktape-0__2.7.0-10.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@gettext-0__0.22.5-6.el10.s390x//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.s390x//rpm", + "@gettext-libs-0__0.22.5-6.el10.s390x//rpm", + "@gettext-runtime-0__0.22.5-6.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@gnutls-dane-0__3.8.10-3.el10.s390x//rpm", + "@gnutls-utils-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@iproute-0__6.17.0-1.el10.s390x//rpm", + "@iproute-tc-0__6.17.0-1.el10.s390x//rpm", + "@iptables-libs-0__1.8.11-12.el10.s390x//rpm", + "@jansson-0__2.14-3.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@json-glib-0__1.8.0-5.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@kmod-0__31-13.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libbpf-2__1.7.0-1.el10.s390x//rpm", + "@libburn-0__1.5.6-6.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcbor-0__0.11.0-3.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libevent-0__2.1.12-16.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libfdt-0__1.7.0-12.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libfido2-0__1.14.0-7.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libgomp-0__14.3.1-4.4.el10.s390x//rpm", + "@libibverbs-0__61.0-1.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libisoburn-0__1.5.6-6.el10.s390x//rpm", + "@libisofs-0__1.5.6-6.el10.s390x//rpm", + "@libmnl-0__1.0.5-7.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnbd-0__1.24.1-1.el10.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.s390x//rpm", + "@libnfnetlink-0__1.0.2-3.el10.s390x//rpm", + "@libnftnl-0__1.3.0-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libpcap-14__1.10.4-7.el10.s390x//rpm", + "@libpng-2__1.6.40-10.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libseccomp-0__2.5.6-1.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libselinux-utils-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libslirp-0__4.7.0-10.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libssh-0__0.12.0-2.el10.s390x//rpm", + "@libssh-config-0__0.12.0-2.el10.s390x//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libtirpc-0__1.3.5-1.el10.s390x//rpm", + "@libtpms-0__0.9.6-11.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libusb1-0__1.0.29-3.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libvirt-client-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-libs-0__11.10.0-4.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@lz4-libs-0__1.9.4-8.el10.s390x//rpm", + "@lzo-0__2.10-14.el10.s390x//rpm", + "@lzop-0__1.04-16.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@nftables-1__1.1.5-3.el10.s390x//rpm", + "@nmap-ncat-4__7.92-5.el10.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pixman-0__0.43.4-2.el10.s390x//rpm", + "@policycoreutils-0__3.10-1.el10.s390x//rpm", + "@polkit-0__125-4.el10.s390x//rpm", + "@polkit-libs-0__125-4.el10.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@procps-ng-0__4.0.4-11.el10.s390x//rpm", + "@protobuf-c-0__1.5.0-6.el10.s390x//rpm", + "@psmisc-0__23.6-8.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-ccw-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-device-usb-host-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@selinux-policy-0__42.1.18-1.el10.s390x//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@snappy-0__1.1.10-7.el10.s390x//rpm", + "@swtpm-0__0.9.0-2.el10.s390x//rpm", + "@swtpm-libs-0__0.9.0-2.el10.s390x//rpm", + "@swtpm-tools-0__0.9.0-2.el10.s390x//rpm", + "@systemd-0__257-23.el10.s390x//rpm", + "@systemd-container-0__257-23.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@systemd-pam-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@tpm2-tss-0__4.1.3-6.el10.s390x//rpm", + "@unbound-libs-0__1.24.2-7.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@virtiofsd-0__1.13.3-1.el10.s390x//rpm", + "@xorriso-0__1.5.6-6.el10.s390x//rpm", + "@xz-1__5.6.2-4.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + "@zstd-0__1.5.5-9.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_s390x_cs9", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-11.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@gnutls-dane-0__3.8.10-3.el9.s390x//rpm", + "@gnutls-utils-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.17.0-2.el9.s390x//rpm", + "@iproute-tc-0__6.17.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-0__28-11.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libbpf-2__1.5.0-3.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-14.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__61.0-2.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpng-2__1.6.37-14.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libssh-0__0.10.4-17.el9.s390x//rpm", + "@libssh-config-0__0.10.4-17.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtpms-0__0.9.6-11.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-client-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-libs-0__11.9.0-1.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-6.el9.s390x//rpm", + "@nmap-ncat-3__7.92-5.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-5.el9.s390x//rpm", + "@polkit-0__0.117-14.el9.s390x//rpm", + "@polkit-libs-0__0.117-14.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@protobuf-c-0__1.3.3-13.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-ccw-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-device-usb-host-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.73-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@swtpm-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-libs-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-tools-0__0.8.0-2.el9.s390x//rpm", + "@systemd-0__252-64.el9.s390x//rpm", + "@systemd-container-0__252-64.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@systemd-pam-0__252-64.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@unbound-libs-0__1.24.2-2.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@virtiofsd-0__1.13.0-1.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-0__1.0.8-25.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@capstone-0__5.0.1-6.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.x86_64//rpm", + "@dbus-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-broker-0__36-4.el10.x86_64//rpm", + "@dbus-common-1__1.14.10-5.el10.x86_64//rpm", + "@diffutils-0__3.10-8.el10.x86_64//rpm", + "@dmidecode-1__3.6-5.el10.x86_64//rpm", + "@duktape-0__2.7.0-10.el10.x86_64//rpm", + "@edk2-ovmf-0__20251114-4.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@fips-provider-next-0__1.2.0-3.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@gettext-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-libs-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-runtime-0__0.22.5-6.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@gnutls-dane-0__3.8.10-3.el10.x86_64//rpm", + "@gnutls-utils-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@iproute-0__6.17.0-1.el10.x86_64//rpm", + "@iproute-tc-0__6.17.0-1.el10.x86_64//rpm", + "@iptables-libs-0__1.8.11-12.el10.x86_64//rpm", + "@ipxe-roms-qemu-0__20240119-5.gitde8a0821.el10.x86_64//rpm", + "@jansson-0__2.14-3.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@json-glib-0__1.8.0-5.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@kmod-0__31-13.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libbpf-2__1.7.0-1.el10.x86_64//rpm", + "@libburn-0__1.5.6-6.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcbor-0__0.11.0-3.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libevent-0__2.1.12-16.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libfdt-0__1.7.0-12.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libfido2-0__1.14.0-7.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgomp-0__14.3.1-4.4.el10.x86_64//rpm", + "@libibverbs-0__61.0-1.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libisoburn-0__1.5.6-6.el10.x86_64//rpm", + "@libisofs-0__1.5.6-6.el10.x86_64//rpm", + "@libmnl-0__1.0.5-7.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnbd-0__1.24.1-1.el10.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.x86_64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.x86_64//rpm", + "@libnftnl-0__1.3.0-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libpcap-14__1.10.4-7.el10.x86_64//rpm", + "@libpng-2__1.6.40-10.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libselinux-utils-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libslirp-0__4.7.0-10.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libssh-0__0.12.0-2.el10.x86_64//rpm", + "@libssh-config-0__0.12.0-2.el10.x86_64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libtirpc-0__1.3.5-1.el10.x86_64//rpm", + "@libtpms-0__0.9.6-11.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libusb1-0__1.0.29-3.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libvirt-client-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@lz4-libs-0__1.9.4-8.el10.x86_64//rpm", + "@lzo-0__2.10-14.el10.x86_64//rpm", + "@lzop-0__1.04-16.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@nftables-1__1.1.5-3.el10.x86_64//rpm", + "@nmap-ncat-4__7.92-5.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@numad-0__0.5-50.20251104git.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pixman-0__0.43.4-2.el10.x86_64//rpm", + "@policycoreutils-0__3.10-1.el10.x86_64//rpm", + "@polkit-0__125-4.el10.x86_64//rpm", + "@polkit-libs-0__125-4.el10.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@procps-ng-0__4.0.4-11.el10.x86_64//rpm", + "@protobuf-c-0__1.5.0-6.el10.x86_64//rpm", + "@psmisc-0__23.6-8.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-display-virtio-vga-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-usb-host-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@seabios-0__1.17.0-1.el10.x86_64//rpm", + "@seabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@seavgabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@selinux-policy-0__42.1.18-1.el10.x86_64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@snappy-0__1.1.10-7.el10.x86_64//rpm", + "@swtpm-0__0.9.0-2.el10.x86_64//rpm", + "@swtpm-libs-0__0.9.0-2.el10.x86_64//rpm", + "@swtpm-tools-0__0.9.0-2.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-container-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@tpm2-tss-0__4.1.3-6.el10.x86_64//rpm", + "@unbound-libs-0__1.24.2-7.el10.x86_64//rpm", + "@usbredir-0__0.13.0-6.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@virtiofsd-0__1.13.3-1.el10.x86_64//rpm", + "@xorriso-0__1.5.6-6.el10.x86_64//rpm", + "@xz-1__5.6.2-4.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + "@zstd-0__1.5.5-9.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_x86_64_cs9", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-11.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__82-1.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-2.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-8.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@gnutls-dane-0__3.8.10-3.el9.x86_64//rpm", + "@gnutls-utils-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.17.0-2.el9.x86_64//rpm", + "@iproute-tc-0__6.17.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-0__28-11.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libbpf-2__1.5.0-3.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-14.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__61.0-2.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-14.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__61.0-2.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libssh-0__0.10.4-17.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-17.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtpms-0__0.9.6-11.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-client-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__82-1.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-6.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-5.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-5.el9.x86_64//rpm", + "@polkit-0__0.117-14.el9.x86_64//rpm", + "@polkit-libs-0__0.117-14.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@protobuf-c-0__1.3.3-13.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-vga-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-usb-host-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.73-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@swtpm-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-container-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@unbound-libs-0__1.24.2-2.el9.x86_64//rpm", + "@usbredir-0__0.13.0-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@virtiofsd-0__1.13.0-1.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + + # EDV dependency - START + "@SDL2-0__2.26.0-1.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@adwaita-cursor-theme-0__40.1.1-3.el9.x86_64//rpm", + "@adwaita-icon-theme-0__40.1.1-3.el9.x86_64//rpm", + "@alsa-lib-0__1.2.13-2.el9.x86_64//rpm", + "@at-spi2-atk-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-atk-devel-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-core-0__2.40.3-1.el9.x86_64//rpm", + "@at-spi2-core-devel-0__2.40.3-1.el9.x86_64//rpm", + "@atk-0__2.36.0-5.el9.x86_64//rpm", + "@atk-devel-0__2.36.0-5.el9.x86_64//rpm", + "@avahi-libs-0__0.8-22.el9.x86_64//rpm", + "@bluez-libs-0__5.72-4.el9.x86_64//rpm", + "@boost-iostreams-0__1.75.0-11.el9.x86_64//rpm", + "@boost-system-0__1.75.0-11.el9.x86_64//rpm", + "@boost-thread-0__1.75.0-11.el9.x86_64//rpm", + "@brlapi-0__0.8.2-4.el9.x86_64//rpm", + "@brotli-0__1.0.9-7.el9.x86_64//rpm", + "@brotli-devel-0__1.0.9-7.el9.x86_64//rpm", + "@bzip2-devel-0__1.0.8-10.el9.x86_64//rpm", + "@cairo-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cmake-filesystem-0__3.26.5-2.el9.x86_64//rpm", + "@colord-libs-0__1.4.5-4.el9.x86_64//rpm", + "@cryptsetup-libs-0__2.7.2-4.el9.x86_64//rpm", + "@cups-libs-1__2.3.3op2-33.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@dbus-devel-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@dejavu-sans-fonts-0__2.37-18.el9.x86_64//rpm", + "@elfutils-libelf-devel-0__0.193-1.el9.x86_64//rpm", + "@fdk-aac-free-0__2.0.0-8.el9.x86_64//rpm", + "@flac-libs-0__1.3.3-12.el9.x86_64//rpm", + "@fontconfig-0__2.14.0-2.el9.x86_64//rpm", + "@fontconfig-devel-0__2.14.0-2.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@freetype-0__2.10.4-11.el9.x86_64//rpm", + "@freetype-devel-0__2.10.4-11.el9.x86_64//rpm", + "@fribidi-0__1.0.10-6.el9.2.x86_64//rpm", + "@fribidi-devel-0__1.0.10-6.el9.2.x86_64//rpm", + "@fuse3-libs-0__3.10.2-9.el9.x86_64//rpm", + "@gdk-pixbuf2-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-devel-0__2.68.4-16.el9.x86_64//rpm", + "@graphite2-0__1.3.14-9.el9.x86_64//rpm", + "@graphite2-devel-0__1.3.14-9.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@gsm-0__1.0.19-6.el9.x86_64//rpm", + "@gtk-update-icon-cache-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-devel-0__3.24.31-5.el9.x86_64//rpm", + "@harfbuzz-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-devel-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-icu-0__2.7.4-10.el9.x86_64//rpm", + "@hicolor-icon-theme-0__0.17-13.el9.x86_64//rpm", + "@hwdata-0__0.348-9.22.el9.x86_64//rpm", + "@jbigkit-libs-0__2.1-23.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-686.el9.x86_64//rpm", + "@langpacks-core-font-en-0__3.0-16.el9.x86_64//rpm", + "@lcms2-0__2.12-3.el9.x86_64//rpm", + "@libX11-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-common-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-devel-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-xcb-0__1.7.0-11.el9.x86_64//rpm", + "@libXau-0__1.0.9-8.el9.x86_64//rpm", + "@libXau-devel-0__1.0.9-8.el9.x86_64//rpm", + "@libXcomposite-0__0.4.5-7.el9.x86_64//rpm", + "@libXcomposite-devel-0__0.4.5-7.el9.x86_64//rpm", + "@libXcursor-0__1.2.0-7.el9.x86_64//rpm", + "@libXcursor-devel-0__1.2.0-7.el9.x86_64//rpm", + "@libXdamage-0__1.1.5-7.el9.x86_64//rpm", + "@libXdamage-devel-0__1.1.5-7.el9.x86_64//rpm", + "@libXext-0__1.3.4-8.el9.x86_64//rpm", + "@libXext-devel-0__1.3.4-8.el9.x86_64//rpm", + "@libXfixes-0__5.0.3-16.el9.x86_64//rpm", + "@libXfixes-devel-0__5.0.3-16.el9.x86_64//rpm", + "@libXft-0__2.3.3-8.el9.x86_64//rpm", + "@libXft-devel-0__2.3.3-8.el9.x86_64//rpm", + "@libXi-0__1.7.10-8.el9.x86_64//rpm", + "@libXi-devel-0__1.7.10-8.el9.x86_64//rpm", + "@libXinerama-0__1.1.4-10.el9.x86_64//rpm", + "@libXinerama-devel-0__1.1.4-10.el9.x86_64//rpm", + "@libXrandr-0__1.5.2-8.el9.x86_64//rpm", + "@libXrandr-devel-0__1.5.2-8.el9.x86_64//rpm", + "@libXrender-0__0.9.10-16.el9.x86_64//rpm", + "@libXrender-devel-0__0.9.10-16.el9.x86_64//rpm", + "@libXtst-0__1.2.3-16.el9.x86_64//rpm", + "@libXtst-devel-0__1.2.3-16.el9.x86_64//rpm", + "@libXxf86vm-0__1.1.4-18.el9.x86_64//rpm", + "@libasyncns-0__0.8-22.el9.x86_64//rpm", + "@libatomic-0__11.5.0-7.el9.x86_64//rpm", + "@libblkid-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libblkio-0__1.5.0-1.el9.x86_64//rpm", + "@libbpf-devel-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libdatrie-0__0.2.13-4.el9.x86_64//rpm", + "@libdatrie-devel-0__0.2.13-4.el9.x86_64//rpm", + "@libdrm-0__2.4.123-2.el9.x86_64//rpm", + "@libedit-0__3.1-38.20210216cvs.el9.x86_64//rpm", + "@libepoxy-0__1.5.5-4.el9.x86_64//rpm", + "@libepoxy-devel-0__1.5.5-4.el9.x86_64//rpm", + "@libffi-devel-0__3.4.2-8.el9.x86_64//rpm", + "@libfontenc-0__1.1.3-17.el9.x86_64//rpm", + "@libglvnd-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-core-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-egl-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-gles-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-glx-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-opengl-1__1.3.4-1.el9.x86_64//rpm", + "@libgusb-0__0.3.8-2.el9.x86_64//rpm", + "@libicu-0__67.1-9.el9.x86_64//rpm", + "@libicu-devel-0__67.1-9.el9.x86_64//rpm", + "@libiscsi-0__1.19.0-5.el9.x86_64//rpm", + "@libjpeg-turbo-0__2.0.90-7.el9.x86_64//rpm", + "@libldac-0__2.0.2.3-10.el9.x86_64//rpm", + "@libmount-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libogg-2__1.3.4-6.el9.x86_64//rpm", + "@libpciaccess-0__0.16-7.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpng-devel-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@librados2-2__16.2.4-5.el9.x86_64//rpm", + "@librbd1-2__16.2.4-5.el9.x86_64//rpm", + "@libsbc-0__1.4-9.el9.x86_64//rpm", + "@libselinux-devel-0__3.6-3.el9.x86_64//rpm", + "@libsepol-devel-0__3.6-3.el9.x86_64//rpm", + "@libsndfile-0__1.0.31-9.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libstemmer-0__0-18.585svn.el9.x86_64//rpm", + "@libthai-0__0.1.28-8.el9.x86_64//rpm", + "@libthai-devel-0__0.1.28-8.el9.x86_64//rpm", + "@libtiff-0__4.4.0-13.el9.x86_64//rpm", + "@libtiff-devel-0__4.4.0-13.el9.x86_64//rpm", + "@libtracker-sparql-0__3.1.2-3.el9.x86_64//rpm", + "@libvorbis-1__1.3.7-5.el9.x86_64//rpm", + "@libwayland-client-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-cursor-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-egl-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-server-0__1.21.0-1.el9.x86_64//rpm", + "@libwebp-0__1.2.0-8.el9.x86_64//rpm", + "@libxcb-0__1.13.1-9.el9.x86_64//rpm", + "@libxcb-devel-0__1.13.1-9.el9.x86_64//rpm", + "@libxdp-0__1.5.3-1.el9.x86_64//rpm", + "@libxdp-devel-0__1.5.3-1.el9.x86_64//rpm", + "@libxkbcommon-0__1.0.3-4.el9.x86_64//rpm", + "@libxkbcommon-devel-0__1.0.3-4.el9.x86_64//rpm", + "@libxml2-devel-0__2.9.13-9.el9.x86_64//rpm", + "@libxshmfence-0__1.3-10.el9.x86_64//rpm", + "@libzstd-devel-0__1.5.5-1.el9.x86_64//rpm", + "@llvm-filesystem-0__20.1.8-3.el9.x86_64//rpm", + "@llvm-libs-0__20.1.8-3.el9.x86_64//rpm", + "@mesa-dri-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-filesystem-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libEGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-devel-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libglapi-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mkfontscale-0__1.2.1-3.el9.x86_64//rpm", + "@openjpeg2-0__2.4.0-8.el9.x86_64//rpm", + "@opus-0__1.3.1-10.el9.x86_64//rpm", + "@pango-0__1.48.7-3.el9.x86_64//rpm", + "@pango-devel-0__1.48.7-3.el9.x86_64//rpm", + "@pcre-cpp-0__8.44-4.el9.x86_64//rpm", + "@pcre-devel-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf16-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf32-0__8.44-4.el9.x86_64//rpm", + "@pcre2-devel-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf16-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf32-0__10.40-6.el9.x86_64//rpm", + "@pipewire-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-alsa-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-media-session-0__0.3.32-3.el9.x86_64//rpm", + "@pipewire-pulseaudio-0__1.0.1-1.el9.x86_64//rpm", + "@pixman-devel-0__0.40.0-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@pulseaudio-libs-0__15.0-3.el9.x86_64//rpm", + "@pulseaudio-libs-glib2-0__15.0-3.el9.x86_64//rpm", + "@rtkit-0__0.11-29.el9.x86_64//rpm", + "@shared-mime-info-0__2.1-5.el9.x86_64//rpm", + "@sound-theme-freedesktop-0__0.8-17.el9.x86_64//rpm", + "@sysprof-capture-devel-0__3.40.1-3.el9.x86_64//rpm", + "@usbutils-0__017-1.el9.x86_64//rpm", + "@vte-profile-0__0.64.2-2.el9.x86_64//rpm", + "@vte291-0__0.64.2-2.el9.x86_64//rpm", + "@vulkan-loader-0__1.4.304.0-1.el9.x86_64//rpm", + "@vulkan-tools-0__1.4.304.0-1.el9.x86_64//rpm", + "@wayland-devel-0__1.21.0-1.el9.x86_64//rpm", + "@webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64//rpm", + "@webrtc-audio-processing-0__0.3.1-8.el9.x86_64//rpm", + "@xdg-dbus-proxy-0__0.1.3-1.el9.x86_64//rpm", + "@xkeyboard-config-0__2.33-2.el9.x86_64//rpm", + "@xml-common-0__0.6.3-58.el9.x86_64//rpm", + "@xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64//rpm", + "@xorg-x11-proto-devel-0__2024.1-1.el9.x86_64//rpm", + "@xz-devel-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-devel-0__1.2.11-41.el9.x86_64//rpm", + # EDV dependency - END + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + # Create a symlink to OVMF binary with SEV support (edk2 rpm does not do that for unknown reason) + "/usr/share/OVMF/OVMF_CODE.cc.fd": "../edk2/ovmf/OVMF_CODE.cc.fd", + "/usr/share/OVMF/OVMF.amdsev.fd": "../edk2/ovmf/OVMF.amdsev.fd", + "/usr/share/OVMF/OVMF.inteltdx.fd": "../edk2/ovmf/OVMF.inteltdx.fd", + "/usr/share/OVMF/OVMF.inteltdx.secboot.fd": "../edk2/ovmf/OVMF.inteltdx.secboot.fd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-4.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250128-1.git5269e22.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-6.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-6.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-2.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-168.el9.x86_64//rpm", + "@glibc-common-0__2.34-168.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-168.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-4.el9.x86_64//rpm", + "@gnutls-0__3.8.3-6.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-2.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.18.el9.x86_64//rpm", + "@iproute-0__6.11.0-1.el9.x86_64//rpm", + "@iproute-tc-0__6.11.0-1.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-6.el9.x86_64//rpm", + "@less-0__590-5.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-4.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libbpf-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-7.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-5.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-5.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-3.el9.x86_64//rpm", + "@libibverbs-0__54.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnbd-0__1.20.3-1.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__54.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-5.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-7.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-9.el9.x86_64//rpm", + "@libxslt-0__1.1.34-9.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-4.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@osinfo-db-0__20240701-3.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-2.1.el9.x86_64//rpm", + "@polkit-0__0.117-13.el9.x86_64//rpm", + "@polkit-libs-0__0.117-13.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-15.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-15.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-37.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-37.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-37.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.53-2.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.53-2.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-container-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@which-0__2.21-29.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/qemu-kvm": "/usr/libexec/qemu-kvm", + "/etc/ssl/certs/ca-certificates.crt": "/usr/share/pki/ca-trust-source/ca-bundle.trust.p11-kit", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-0__1.0.8-25.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@capstone-0__5.0.1-6.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.s390x//rpm", + "@device-mapper-10__1.02.210-2.el10.s390x//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.s390x//rpm", + "@diffutils-0__3.10-8.el10.s390x//rpm", + "@duktape-0__2.7.0-10.el10.s390x//rpm", + "@edk2-ovmf-0__20251114-4.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@fuse-0__2.9.9-25.el10.s390x//rpm", + "@fuse-common-0__3.16.2-5.el10.s390x//rpm", + "@fuse-libs-0__2.9.9-25.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@gettext-0__0.22.5-6.el10.s390x//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.s390x//rpm", + "@gettext-libs-0__0.22.5-6.el10.s390x//rpm", + "@gettext-runtime-0__0.22.5-6.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnupg2-0__2.4.5-4.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@guestfs-tools-0__1.54.0-7.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@hexedit-0__1.6-8.el10.s390x//rpm", + "@hivex-libs-0__1.3.24-2.el10.s390x//rpm", + "@hwdata-0__0.379-10.8.el10.s390x//rpm", + "@iproute-0__6.17.0-1.el10.s390x//rpm", + "@iproute-tc-0__6.17.0-1.el10.s390x//rpm", + "@iptables-libs-0__1.8.11-12.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@json-glib-0__1.8.0-5.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@kmod-0__31-13.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@less-0__661-3.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libarchive-0__3.7.7-4.el10.s390x//rpm", + "@libassuan-0__2.5.6-6.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libbpf-2__1.7.0-1.el10.s390x//rpm", + "@libbrotli-0__1.1.0-7.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcbor-0__0.11.0-3.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libconfig-0__1.7.3-10.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libevent-0__2.1.12-16.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libfdt-0__1.7.0-12.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libfido2-0__1.14.0-7.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libgcrypt-0__1.11.0-6.el10.s390x//rpm", + "@libgomp-0__14.3.1-4.4.el10.s390x//rpm", + "@libgpg-error-0__1.50-2.el10.s390x//rpm", + "@libguestfs-1__1.58.1-2.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libksba-0__1.6.7-2.el10.s390x//rpm", + "@libmnl-0__1.0.5-7.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnbd-0__1.24.1-1.el10.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.s390x//rpm", + "@libnfnetlink-0__1.0.2-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libosinfo-0__1.11.0-8.el10.s390x//rpm", + "@libpng-2__1.6.40-10.el10.s390x//rpm", + "@libpsl-0__0.21.5-6.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libseccomp-0__2.5.6-1.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libselinux-utils-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libslirp-0__4.7.0-10.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libsoup3-0__3.6.5-5.el10.s390x//rpm", + "@libssh-0__0.12.0-2.el10.s390x//rpm", + "@libssh-config-0__0.12.0-2.el10.s390x//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libtirpc-0__1.3.5-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libusb1-0__1.0.29-3.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-secret-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-libs-0__11.10.0-4.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@libxslt-0__1.1.39-8.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@lua-libs-0__5.4.6-7.el10.s390x//rpm", + "@lz4-libs-0__1.9.4-8.el10.s390x//rpm", + "@lzo-0__2.10-14.el10.s390x//rpm", + "@lzop-0__1.04-16.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@npth-0__1.6-21.el10.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el10.s390x//rpm", + "@openldap-0__2.6.10-1.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@osinfo-db-0__20250606-1.el10.s390x//rpm", + "@osinfo-db-tools-0__1.11.0-8.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@parted-0__3.6-7.el10.s390x//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pixman-0__0.43.4-2.el10.s390x//rpm", + "@policycoreutils-0__3.10-1.el10.s390x//rpm", + "@polkit-0__125-4.el10.s390x//rpm", + "@polkit-libs-0__125-4.el10.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@psmisc-0__23.6-8.el10.s390x//rpm", + "@publicsuffix-list-dafsa-0__20240107-5.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@rpm-0__4.19.1.1-23.el10.s390x//rpm", + "@rpm-libs-0__4.19.1.1-23.el10.s390x//rpm", + "@rpm-sequoia-0__1.10.1.1-2.el10.s390x//rpm", + "@scrub-0__2.6.1-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@selinux-policy-0__42.1.18-1.el10.s390x//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@snappy-0__1.1.10-7.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@systemd-0__257-23.el10.s390x//rpm", + "@systemd-container-0__257-23.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@systemd-pam-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@tpm2-tss-0__4.1.3-6.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@which-0__2.21-44.el10.s390x//rpm", + "@xz-1__5.6.2-4.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + "@zstd-0__1.5.5-9.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@augeas-libs-0__1.14.1-3.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-11.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@device-mapper-9__1.02.206-2.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@edk2-ovmf-0__20241117-8.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.s390x//rpm", + "@fuse-0__2.9.9-17.el9.s390x//rpm", + "@fuse-common-0__3.10.2-9.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib-networking-0__2.68.3-3.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnupg2-0__2.3.3-5.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gsettings-desktop-schemas-0__40.0-8.el9.s390x//rpm", + "@guestfs-tools-0__1.52.2-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@hexedit-0__1.6-1.el9.s390x//rpm", + "@hivex-libs-0__1.3.24-1.el9.s390x//rpm", + "@hwdata-0__0.348-9.22.el9.s390x//rpm", + "@iproute-0__6.17.0-2.el9.s390x//rpm", + "@iproute-tc-0__6.17.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-0__28-11.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@less-0__590-6.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libassuan-0__2.5.5-3.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libbpf-2__1.5.0-3.el9.s390x//rpm", + "@libbrotli-0__1.0.9-9.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libconfig-0__1.7.2-9.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-14.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libguestfs-1__1.54.0-9.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libksba-0__1.5.1-7.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libosinfo-0__1.10.0-1.el9.s390x//rpm", + "@libpng-2__1.6.37-14.el9.s390x//rpm", + "@libproxy-0__0.4.15-35.el9.s390x//rpm", + "@libpsl-0__0.21.1-5.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libsoup-0__2.72.0-10.el9.s390x//rpm", + "@libssh-0__0.10.4-17.el9.s390x//rpm", + "@libssh-config-0__0.10.4-17.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-secret-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-libs-0__11.9.0-1.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@libxslt-0__1.1.34-12.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@npth-0__1.6-8.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openldap-0__2.6.8-4.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@osinfo-db-0__20250606-1.el9.s390x//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@parted-0__3.5-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-5.el9.s390x//rpm", + "@polkit-0__0.117-14.el9.s390x//rpm", + "@polkit-libs-0__0.117-14.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x//rpm", + "@scrub-0__2.6.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.73-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@systemd-0__252-64.el9.s390x//rpm", + "@systemd-container-0__252-64.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@systemd-pam-0__252-64.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@which-0__2.21-30.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-0__1.0.8-25.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@capstone-0__5.0.1-6.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.x86_64//rpm", + "@device-mapper-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.x86_64//rpm", + "@diffutils-0__3.10-8.el10.x86_64//rpm", + "@dmidecode-1__3.6-5.el10.x86_64//rpm", + "@duktape-0__2.7.0-10.el10.x86_64//rpm", + "@edk2-ovmf-0__20251114-4.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@fuse-0__2.9.9-25.el10.x86_64//rpm", + "@fuse-common-0__3.16.2-5.el10.x86_64//rpm", + "@fuse-libs-0__2.9.9-25.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@gettext-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-libs-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-runtime-0__0.22.5-6.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnupg2-0__2.4.5-4.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@guestfs-tools-0__1.54.0-7.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@hexedit-0__1.6-8.el10.x86_64//rpm", + "@hivex-libs-0__1.3.24-2.el10.x86_64//rpm", + "@hwdata-0__0.379-10.8.el10.x86_64//rpm", + "@iproute-0__6.17.0-1.el10.x86_64//rpm", + "@iproute-tc-0__6.17.0-1.el10.x86_64//rpm", + "@iptables-libs-0__1.8.11-12.el10.x86_64//rpm", + "@ipxe-roms-qemu-0__20240119-5.gitde8a0821.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@json-glib-0__1.8.0-5.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@kmod-0__31-13.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@less-0__661-3.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libarchive-0__3.7.7-4.el10.x86_64//rpm", + "@libassuan-0__2.5.6-6.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libbpf-2__1.7.0-1.el10.x86_64//rpm", + "@libbrotli-0__1.1.0-7.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcbor-0__0.11.0-3.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libconfig-0__1.7.3-10.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libevent-0__2.1.12-16.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libfdt-0__1.7.0-12.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libfido2-0__1.14.0-7.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgcrypt-0__1.11.0-6.el10.x86_64//rpm", + "@libgomp-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgpg-error-0__1.50-2.el10.x86_64//rpm", + "@libguestfs-1__1.58.1-2.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libksba-0__1.6.7-2.el10.x86_64//rpm", + "@libmnl-0__1.0.5-7.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnbd-0__1.24.1-1.el10.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.x86_64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libosinfo-0__1.11.0-8.el10.x86_64//rpm", + "@libpng-2__1.6.40-10.el10.x86_64//rpm", + "@libpsl-0__0.21.5-6.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libselinux-utils-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libslirp-0__4.7.0-10.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libsoup3-0__3.6.5-5.el10.x86_64//rpm", + "@libssh-0__0.12.0-2.el10.x86_64//rpm", + "@libssh-config-0__0.12.0-2.el10.x86_64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libtirpc-0__1.3.5-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libusb1-0__1.0.29-3.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@libxslt-0__1.1.39-8.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@lua-libs-0__5.4.6-7.el10.x86_64//rpm", + "@lz4-libs-0__1.9.4-8.el10.x86_64//rpm", + "@lzo-0__2.10-14.el10.x86_64//rpm", + "@lzop-0__1.04-16.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@npth-0__1.6-21.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@numad-0__0.5-50.20251104git.el10.x86_64//rpm", + "@openldap-0__2.6.10-1.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@osinfo-db-0__20250606-1.el10.x86_64//rpm", + "@osinfo-db-tools-0__1.11.0-8.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@parted-0__3.6-7.el10.x86_64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pixman-0__0.43.4-2.el10.x86_64//rpm", + "@policycoreutils-0__3.10-1.el10.x86_64//rpm", + "@polkit-0__125-4.el10.x86_64//rpm", + "@polkit-libs-0__125-4.el10.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@psmisc-0__23.6-8.el10.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20240107-5.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@rpm-0__4.19.1.1-23.el10.x86_64//rpm", + "@rpm-libs-0__4.19.1.1-23.el10.x86_64//rpm", + "@rpm-sequoia-0__1.10.1.1-2.el10.x86_64//rpm", + "@scrub-0__2.6.1-11.el10.x86_64//rpm", + "@seabios-0__1.17.0-1.el10.x86_64//rpm", + "@seabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@seavgabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@selinux-policy-0__42.1.18-1.el10.x86_64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@snappy-0__1.1.10-7.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-container-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@tpm2-tss-0__4.1.3-6.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@which-0__2.21-44.el10.x86_64//rpm", + "@xz-1__5.6.2-4.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + "@zstd-0__1.5.5-9.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-3.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-11.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__82-1.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-2.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-8.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@fips-provider-next-0__1.2.0-7.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-5.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-8.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.22.el9.x86_64//rpm", + "@iproute-0__6.17.0-2.el9.x86_64//rpm", + "@iproute-tc-0__6.17.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-0__28-11.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@less-0__590-6.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libbpf-2__1.5.0-3.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-9.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-14.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-9.el9.x86_64//rpm", + "@libibverbs-0__61.0-2.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-14.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__61.0-2.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-17.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-17.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@libxslt-0__1.1.34-12.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__82-1.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-4.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@osinfo-db-0__20250606-1.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-5.el9.x86_64//rpm", + "@polkit-0__0.117-14.el9.x86_64//rpm", + "@polkit-libs-0__0.117-14.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.73-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-container-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@which-0__2.21-30.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libnbd-0__1.24.1-1.el10.aarch64//rpm", + "@libnbd-devel-0__1.24.1-1.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libpkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxml2-0__2.12.5-10.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libnbd-0__1.20.3-4.el9.aarch64//rpm", + "@libnbd-devel-0__1.20.3-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libnbd-0__1.24.1-1.el10.s390x//rpm", + "@libnbd-devel-0__1.24.1-1.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libpkgconf-0__2.1.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pkgconf-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnbd-devel-0__1.20.3-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libnbd-0__1.24.1-1.el10.x86_64//rpm", + "@libnbd-devel-0__1.24.1-1.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libpkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnbd-devel-0__1.20.3-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@json-c-0__0.18-3.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcbor-0__0.11.0-3.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libfido2-0__1.14.0-7.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libnl3-0__3.11.0-1.el10.aarch64//rpm", + "@libpkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libssh-0__0.12.0-2.el10.aarch64//rpm", + "@libssh-config-0__0.12.0-2.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libtirpc-0__1.3.5-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libvirt-devel-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libxml2-0__2.12.5-10.el10.aarch64//rpm", + "@lz4-libs-0__1.9.4-8.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libssh-0__0.10.4-17.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-17.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-devel-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcbor-0__0.11.0-3.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libfido2-0__1.14.0-7.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libpkgconf-0__2.1.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libssh-0__0.12.0-2.el10.s390x//rpm", + "@libssh-config-0__0.12.0-2.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libtirpc-0__1.3.5-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libvirt-devel-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-libs-0__11.10.0-4.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@lz4-libs-0__1.9.4-8.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pkgconf-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libssh-0__0.10.4-17.el9.s390x//rpm", + "@libssh-config-0__0.10.4-17.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-devel-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-libs-0__11.9.0-1.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcbor-0__0.11.0-3.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libfido2-0__1.14.0-7.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libpkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libssh-0__0.12.0-2.el10.x86_64//rpm", + "@libssh-config-0__0.12.0-2.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libtirpc-0__1.3.5-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libvirt-devel-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@lz4-libs-0__1.9.4-8.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@fips-provider-next-0__1.2.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libssh-0__0.10.4-17.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-17.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-devel-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_aarch64_cs10", + rpms = [ + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-langpack-es-0__2.39-114.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_aarch64_cs9", + rpms = [ + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-langpack-en-0__2.34-256.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_s390x_cs10", + rpms = [ + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-langpack-ga-0__2.39-114.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_s390x_cs9", + rpms = [ + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-langpack-et-0__2.34-256.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_x86_64_cs10", + rpms = [ + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-langpack-fa-0__2.39-114.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_x86_64_cs9", + rpms = [ + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-langpack-eu-0__2.34-256.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@dbus-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-broker-0__36-4.el10.aarch64//rpm", + "@dbus-common-1__1.14.10-5.el10.aarch64//rpm", + "@device-mapper-10__1.02.210-2.el10.aarch64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.aarch64//rpm", + "@device-mapper-multipath-libs-0__0.9.9-15.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libseccomp-0__2.5.6-1.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@qemu-pr-helper-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@systemd-0__257-23.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@systemd-pam-0__257-23.el10.aarch64//rpm", + "@userspace-rcu-0__0.14.0-7.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-44.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@qemu-pr-helper-17__10.1.0-14.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@systemd-0__252-64.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@systemd-pam-0__252-64.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-64.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@dbus-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-broker-0__36-4.el10.x86_64//rpm", + "@dbus-common-1__1.14.10-5.el10.x86_64//rpm", + "@device-mapper-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-multipath-libs-0__0.9.9-15.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@qemu-pr-helper-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@userspace-rcu-0__0.14.0-7.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-44.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@qemu-pr-helper-17__10.1.0-14.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@binutils-0__2.41-63.el10.aarch64//rpm", + "@binutils-gold-0__2.41-63.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cpp-0__14.3.1-4.4.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el10.aarch64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el10.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el10.aarch64//rpm", + "@elfutils-libs-0__0.194-1.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-devel-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@glibc-static-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@jansson-0__2.14-3.el10.aarch64//rpm", + "@json-c-0__0.18-3.el10.aarch64//rpm", + "@kernel-headers-0__6.12.0-211.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libasan-0__14.3.1-4.4.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libgomp-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmpc-0__1.3.1-7.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libpkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsss_idmap-0__2.12.0-1.el10.aarch64//rpm", + "@libsss_nss_idmap-0__2.12.0-1.el10.aarch64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libubsan-0__14.3.1-4.4.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libxcrypt-devel-0__4.4.36-10.el10.aarch64//rpm", + "@libxcrypt-static-0__4.4.36-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@make-1__4.4.1-9.el10.aarch64//rpm", + "@mpdecimal-0__2.5.1-12.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.aarch64//rpm", + "@python3-0__3.12.12-3.el10.aarch64//rpm", + "@python3-libs-0__3.12.12-3.el10.aarch64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.aarch64//rpm", + "@sssd-client-0__2.12.0-1.el10.aarch64//rpm", + "@tzdata-0__2025c-1.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@binutils-0__2.35.2-69.el9.aarch64//rpm", + "@binutils-gold-0__2.35.2-69.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cpp-0__11.5.0-14.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el9.aarch64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el9.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el9.aarch64//rpm", + "@elfutils-libs-0__0.194-1.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gcc-0__11.5.0-14.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-devel-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@glibc-static-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@kernel-headers-0__5.14.0-686.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libasan-0__11.5.0-14.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgomp-0__11.5.0-14.el9.aarch64//rpm", + "@libmpc-0__1.2.1-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsss_idmap-0__2.9.8-1.el9.aarch64//rpm", + "@libsss_nss_idmap-0__2.9.8-1.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libubsan-0__11.5.0-14.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@make-1__4.3-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@python3-0__3.9.25-3.el9.aarch64//rpm", + "@python3-libs-0__3.9.25-3.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@sssd-client-0__2.9.8-1.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@binutils-0__2.41-63.el10.s390x//rpm", + "@binutils-gold-0__2.41-63.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cpp-0__14.3.1-4.4.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el10.s390x//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@elfutils-libs-0__0.194-1.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gcc-0__14.3.1-4.4.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-devel-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@glibc-static-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@jansson-0__2.14-3.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@kernel-headers-0__6.12.0-211.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libasan-0__14.3.1-4.4.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libgomp-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libmpc-0__1.3.1-7.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libpkgconf-0__2.1.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libsss_idmap-0__2.12.0-1.el10.s390x//rpm", + "@libsss_nss_idmap-0__2.12.0-1.el10.s390x//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libubsan-0__14.3.1-4.4.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxcrypt-devel-0__4.4.36-10.el10.s390x//rpm", + "@libxcrypt-static-0__4.4.36-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@make-1__4.4.1-9.el10.s390x//rpm", + "@mpdecimal-0__2.5.1-12.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pkgconf-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.s390x//rpm", + "@python3-0__3.12.12-3.el10.s390x//rpm", + "@python3-libs-0__3.12.12-3.el10.s390x//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@sssd-client-0__2.12.0-1.el10.s390x//rpm", + "@tzdata-0__2025c-1.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@binutils-0__2.35.2-69.el9.s390x//rpm", + "@binutils-gold-0__2.35.2-69.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cpp-0__11.5.0-14.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el9.s390x//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@elfutils-libs-0__0.194-1.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gcc-0__11.5.0-14.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-devel-0__2.34-256.el9.s390x//rpm", + "@glibc-headers-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@glibc-static-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@kernel-headers-0__5.14.0-686.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libasan-0__11.5.0-14.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgomp-0__11.5.0-14.el9.s390x//rpm", + "@libmpc-0__1.2.1-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsss_idmap-0__2.9.8-1.el9.s390x//rpm", + "@libsss_nss_idmap-0__2.9.8-1.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libubsan-0__11.5.0-14.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@make-1__4.3-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@python3-0__3.9.25-3.el9.s390x//rpm", + "@python3-libs-0__3.9.25-3.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@sssd-client-0__2.9.8-1.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@binutils-0__2.41-63.el10.x86_64//rpm", + "@binutils-gold-0__2.41-63.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cpp-0__14.3.1-4.4.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el10.x86_64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@elfutils-libs-0__0.194-1.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-devel-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@glibc-static-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@jansson-0__2.14-3.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@kernel-headers-0__6.12.0-211.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgomp-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmpc-0__1.3.1-7.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libpkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsss_idmap-0__2.12.0-1.el10.x86_64//rpm", + "@libsss_nss_idmap-0__2.12.0-1.el10.x86_64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxcrypt-devel-0__4.4.36-10.el10.x86_64//rpm", + "@libxcrypt-static-0__4.4.36-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@make-1__4.4.1-9.el10.x86_64//rpm", + "@mpdecimal-0__2.5.1-12.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.x86_64//rpm", + "@python3-0__3.12.12-3.el10.x86_64//rpm", + "@python3-libs-0__3.12.12-3.el10.x86_64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@sssd-client-0__2.12.0-1.el10.x86_64//rpm", + "@tzdata-0__2025c-1.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@binutils-0__2.35.2-69.el9.x86_64//rpm", + "@binutils-gold-0__2.35.2-69.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cpp-0__11.5.0-14.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el9.x86_64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@elfutils-libs-0__0.194-1.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gcc-0__11.5.0-14.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-devel-0__2.34-256.el9.x86_64//rpm", + "@glibc-headers-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@glibc-static-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-686.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgomp-0__11.5.0-14.el9.x86_64//rpm", + "@libmpc-0__1.2.1-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsss_idmap-0__2.9.8-1.el9.x86_64//rpm", + "@libsss_nss_idmap-0__2.9.8-1.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@make-1__4.3-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@python3-0__3.9.25-3.el9.x86_64//rpm", + "@python3-libs-0__3.9.25-3.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@sssd-client-0__2.9.8-1.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@mpdecimal-0__2.5.1-12.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@python3-0__3.12.12-3.el10.aarch64//rpm", + "@python3-libs-0__3.12.12-3.el10.aarch64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.aarch64//rpm", + "@tzdata-0__2025c-1.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@python3-0__3.9.25-3.el9.aarch64//rpm", + "@python3-libs-0__3.9.25-3.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@mpdecimal-0__2.5.1-12.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@python3-0__3.12.12-3.el10.s390x//rpm", + "@python3-libs-0__3.12.12-3.el10.s390x//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@tzdata-0__2025c-1.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@python3-0__3.9.25-3.el9.s390x//rpm", + "@python3-libs-0__3.9.25-3.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@mpdecimal-0__2.5.1-12.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@python3-0__3.12.12-3.el10.x86_64//rpm", + "@python3-libs-0__3.12.12-3.el10.x86_64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@tzdata-0__2025c-1.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@python3-0__3.9.25-3.el9.x86_64//rpm", + "@python3-libs-0__3.9.25-3.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@authselect-0__1.5.2-1.el10.aarch64//rpm", + "@authselect-libs-0__1.5.2-1.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cracklib-0__2.9.11-8.el10.aarch64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@dbus-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-broker-0__36-4.el10.aarch64//rpm", + "@dbus-common-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-libs-1__1.14.10-5.el10.aarch64//rpm", + "@device-mapper-10__1.02.210-2.el10.aarch64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.aarch64//rpm", + "@e2fsprogs-0__1.47.1-5.el10.aarch64//rpm", + "@e2fsprogs-libs-0__1.47.1-5.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@fuse3-libs-0__3.16.2-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-1__1.23-14.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@gobject-introspection-0__1.79.1-6.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@gzip-0__1.13-3.el10.aarch64//rpm", + "@iputils-0__20240905-5.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@kmod-libs-0__31-13.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libibverbs-0__61.0-1.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libnl3-0__3.11.0-1.el10.aarch64//rpm", + "@libpcap-14__1.10.4-7.el10.aarch64//rpm", + "@libpwquality-0__1.4.5-12.el10.aarch64//rpm", + "@libseccomp-0__2.5.6-1.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsemanage-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libss-0__1.47.1-5.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libutempter-0__1.2.1-15.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@mpdecimal-0__2.5.1-12.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@nmap-ncat-4__7.92-5.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-0__1.6.1-9.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@popt-0__1.19-8.el10.aarch64//rpm", + "@procps-ng-0__4.0.4-11.el10.aarch64//rpm", + "@python3-0__3.12.12-3.el10.aarch64//rpm", + "@python3-configshell-1__1.1.30-9.el10.aarch64//rpm", + "@python3-dbus-0__1.3.2-8.el10.aarch64//rpm", + "@python3-gobject-base-0__3.46.0-7.el10.aarch64//rpm", + "@python3-gobject-base-noarch-0__3.46.0-7.el10.aarch64//rpm", + "@python3-kmod-0__0.9.2-6.el10.aarch64//rpm", + "@python3-libs-0__3.12.12-3.el10.aarch64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.aarch64//rpm", + "@python3-pyparsing-0__3.1.1-7.el10.aarch64//rpm", + "@python3-pyudev-0__0.24.1-10.el10.aarch64//rpm", + "@python3-rtslib-0__2.1.76-12.el10.aarch64//rpm", + "@python3-six-0__1.16.0-16.el10.aarch64//rpm", + "@python3-typing-extensions-0__4.9.0-6.el10.aarch64//rpm", + "@python3-urwid-0__2.5.3-4.el10.aarch64//rpm", + "@python3-wcwidth-0__0.2.6-6.el10.aarch64//rpm", + "@qemu-img-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@shadow-utils-2__4.15.0-11.el10.aarch64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.aarch64//rpm", + "@systemd-0__257-23.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@systemd-pam-0__257-23.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@target-restore-0__2.1.76-12.el10.aarch64//rpm", + "@targetcli-0__2.1.58-5.el10.aarch64//rpm", + "@tzdata-0__2025c-1.el10.aarch64//rpm", + "@util-linux-0__2.40.2-18.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@which-0__2.21-44.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-libs-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.aarch64//rpm", + "@e2fsprogs-0__1.46.5-8.el9.aarch64//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@fuse-libs-0__2.9.9-17.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iputils-0__20210202-15.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__61.0-2.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libss-0__1.46.5-8.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-5.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@python3-0__3.9.25-3.el9.aarch64//rpm", + "@python3-configshell-1__1.1.30-1.el9.aarch64//rpm", + "@python3-dbus-0__1.2.18-2.el9.aarch64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.aarch64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64//rpm", + "@python3-kmod-0__0.9-32.el9.aarch64//rpm", + "@python3-libs-0__3.9.25-3.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.aarch64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.aarch64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@python3-six-0__1.15.0-9.el9.aarch64//rpm", + "@python3-urwid-0__2.1.2-4.el9.aarch64//rpm", + "@qemu-img-17__10.1.0-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sevctl-0__0.1.0-4.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@systemd-0__252-64.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@systemd-pam-0__252-64.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-64.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@target-restore-0__2.1.76-1.el9.aarch64//rpm", + "@targetcli-0__2.1.57-3.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@which-0__2.21-30.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@dbus-1__1.14.10-5.el10.s390x//rpm", + "@dbus-broker-0__36-4.el10.s390x//rpm", + "@dbus-common-1__1.14.10-5.el10.s390x//rpm", + "@dbus-libs-1__1.14.10-5.el10.s390x//rpm", + "@device-mapper-10__1.02.210-2.el10.s390x//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.s390x//rpm", + "@e2fsprogs-0__1.47.1-5.el10.s390x//rpm", + "@e2fsprogs-libs-0__1.47.1-5.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@fuse3-libs-0__3.16.2-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@gobject-introspection-0__1.79.1-6.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@iputils-0__20240905-5.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@kmod-libs-0__31-13.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libibverbs-0__61.0-1.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libpcap-14__1.10.4-7.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libseccomp-0__2.5.6-1.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libss-0__1.47.1-5.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@mpdecimal-0__2.5.1-12.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@nmap-ncat-4__7.92-5.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@procps-ng-0__4.0.4-11.el10.s390x//rpm", + "@python3-0__3.12.12-3.el10.s390x//rpm", + "@python3-configshell-1__1.1.30-9.el10.s390x//rpm", + "@python3-dbus-0__1.3.2-8.el10.s390x//rpm", + "@python3-gobject-base-0__3.46.0-7.el10.s390x//rpm", + "@python3-gobject-base-noarch-0__3.46.0-7.el10.s390x//rpm", + "@python3-kmod-0__0.9.2-6.el10.s390x//rpm", + "@python3-libs-0__3.12.12-3.el10.s390x//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.s390x//rpm", + "@python3-pyparsing-0__3.1.1-7.el10.s390x//rpm", + "@python3-pyudev-0__0.24.1-10.el10.s390x//rpm", + "@python3-rtslib-0__2.1.76-12.el10.s390x//rpm", + "@python3-six-0__1.16.0-16.el10.s390x//rpm", + "@python3-typing-extensions-0__4.9.0-6.el10.s390x//rpm", + "@python3-urwid-0__2.5.3-4.el10.s390x//rpm", + "@python3-wcwidth-0__0.2.6-6.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@systemd-0__257-23.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@systemd-pam-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@target-restore-0__2.1.76-12.el10.s390x//rpm", + "@targetcli-0__2.1.58-5.el10.s390x//rpm", + "@tzdata-0__2025c-1.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@which-0__2.21-44.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@dbus-libs-1__1.12.20-8.el9.s390x//rpm", + "@device-mapper-9__1.02.206-2.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.s390x//rpm", + "@e2fsprogs-0__1.46.5-8.el9.s390x//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@gobject-introspection-0__1.68.0-11.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iputils-0__20210202-15.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__61.0-2.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libss-0__1.46.5-8.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nmap-ncat-3__7.92-5.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@python3-0__3.9.25-3.el9.s390x//rpm", + "@python3-configshell-1__1.1.30-1.el9.s390x//rpm", + "@python3-dbus-0__1.2.18-2.el9.s390x//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.s390x//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.s390x//rpm", + "@python3-kmod-0__0.9-32.el9.s390x//rpm", + "@python3-libs-0__3.9.25-3.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.s390x//rpm", + "@python3-pyudev-0__0.22.0-6.el9.s390x//rpm", + "@python3-rtslib-0__2.1.76-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@python3-six-0__1.15.0-9.el9.s390x//rpm", + "@python3-urwid-0__2.1.2-4.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sevctl-0__0.1.0-4.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@systemd-0__252-64.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@systemd-pam-0__252-64.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@target-restore-0__2.1.76-1.el9.s390x//rpm", + "@targetcli-0__2.1.57-3.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@which-0__2.21-30.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@dbus-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-broker-0__36-4.el10.x86_64//rpm", + "@dbus-common-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-libs-1__1.14.10-5.el10.x86_64//rpm", + "@device-mapper-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.x86_64//rpm", + "@e2fsprogs-0__1.47.1-5.el10.x86_64//rpm", + "@e2fsprogs-libs-0__1.47.1-5.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@fuse3-libs-0__3.16.2-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@gobject-introspection-0__1.79.1-6.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@iputils-0__20240905-5.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@kmod-libs-0__31-13.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libibverbs-0__61.0-1.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libpcap-14__1.10.4-7.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libss-0__1.47.1-5.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@mpdecimal-0__2.5.1-12.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@nmap-ncat-4__7.92-5.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@procps-ng-0__4.0.4-11.el10.x86_64//rpm", + "@python3-0__3.12.12-3.el10.x86_64//rpm", + "@python3-configshell-1__1.1.30-9.el10.x86_64//rpm", + "@python3-dbus-0__1.3.2-8.el10.x86_64//rpm", + "@python3-gobject-base-0__3.46.0-7.el10.x86_64//rpm", + "@python3-gobject-base-noarch-0__3.46.0-7.el10.x86_64//rpm", + "@python3-kmod-0__0.9.2-6.el10.x86_64//rpm", + "@python3-libs-0__3.12.12-3.el10.x86_64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.x86_64//rpm", + "@python3-pyparsing-0__3.1.1-7.el10.x86_64//rpm", + "@python3-pyudev-0__0.24.1-10.el10.x86_64//rpm", + "@python3-rtslib-0__2.1.76-12.el10.x86_64//rpm", + "@python3-six-0__1.16.0-16.el10.x86_64//rpm", + "@python3-typing-extensions-0__4.9.0-6.el10.x86_64//rpm", + "@python3-urwid-0__2.5.3-4.el10.x86_64//rpm", + "@python3-wcwidth-0__0.2.6-6.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@sevctl-0__0.4.3-3.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@target-restore-0__2.1.76-12.el10.x86_64//rpm", + "@targetcli-0__2.1.58-5.el10.x86_64//rpm", + "@tzdata-0__2025c-1.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@which-0__2.21-44.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@e2fsprogs-0__1.46.5-8.el9.x86_64//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iputils-0__20210202-15.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__61.0-2.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libss-0__1.46.5-8.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-5.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@python3-0__3.9.25-3.el9.x86_64//rpm", + "@python3-configshell-1__1.1.30-1.el9.x86_64//rpm", + "@python3-dbus-0__1.2.18-2.el9.x86_64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.x86_64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64//rpm", + "@python3-kmod-0__0.9-32.el9.x86_64//rpm", + "@python3-libs-0__3.9.25-3.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.x86_64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.x86_64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@python3-six-0__1.15.0-9.el9.x86_64//rpm", + "@python3-urwid-0__2.1.2-4.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sevctl-0__0.4.2-1.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@target-restore-0__2.1.76-1.el9.x86_64//rpm", + "@targetcli-0__2.1.57-3.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@which-0__2.21-30.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_aarch64_cs10", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.2", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libidn2.so.0", + "libidn2.so.0.4.0", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libnbd-devel_aarch64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_aarch64_cs9", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.0", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libnbd-devel_aarch64_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_s390x_cs10", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.2", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libidn2.so.0", + "libidn2.so.0.4.0", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libnbd-devel_s390x_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_s390x_cs9", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.0", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libnbd-devel_s390x_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_x86_64_cs10", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.2", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libidn2.so.0", + "libidn2.so.0.4.0", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libnbd-devel_x86_64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_x86_64_cs9", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.0", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libnbd-devel_x86_64_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_aarch64_cs10", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2302", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2502", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcap.so.2", + "libcap.so.2.69", + "libcbor.so.0.11", + "libcbor.so.0.11.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.8.0", + "libffi.so.8", + "libffi.so.8.1.2", + "libfido2.so.1", + "libfido2.so.1.14.0", + "libgcc_s-14-20251022.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.8000.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.8000.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.8000.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.8000.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libidn2.so.0", + "libidn2.so.0.4.0", + "libjson-c.so.5", + "libjson-c.so.5.4.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.4", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnghttp2.so.14", + "libnghttp2.so.14.29.2", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre2-8.so.0", + "libpcre2-8.so.0.13.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.11.0", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libudev.so.1", + "libudev.so.1.7.10", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11010.0", + "libvirt.so.0", + "libvirt.so.0.11010.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libvirt-devel_aarch64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_aarch64_cs9", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11009.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11009.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11009.0", + "libvirt.so.0", + "libvirt.so.0.11009.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_aarch64_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_s390x_cs10", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2302", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2502", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcap.so.2", + "libcap.so.2.69", + "libcbor.so.0.11", + "libcbor.so.0.11.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.8.0", + "libffi.so.8", + "libffi.so.8.1.2", + "libfido2.so.1", + "libfido2.so.1.14.0", + "libgcc_s-14-20251022.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.8000.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.8000.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.8000.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.8000.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libidn2.so.0", + "libidn2.so.0.4.0", + "libjson-c.so.5", + "libjson-c.so.5.4.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.4", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnghttp2.so.14", + "libnghttp2.so.14.29.2", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre2-8.so.0", + "libpcre2-8.so.0.13.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.11.0", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libudev.so.1", + "libudev.so.1.7.10", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11010.0", + "libvirt.so.0", + "libvirt.so.0.11010.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libvirt-devel_s390x_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_s390x_cs9", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11009.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11009.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11009.0", + "libvirt.so.0", + "libvirt.so.0.11009.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_s390x_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_x86_64_cs10", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libacl.so.1", + "libacl.so.1.1.2302", + "libattr.so.1", + "libattr.so.1.1.2502", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcbor.so.0.11", + "libcbor.so.0.11.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.8.0", + "libffi.so.8", + "libffi.so.8.1.2", + "libfido2.so.1", + "libfido2.so.1.14.0", + "libgcc_s-14-20251022.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.8000.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.8000.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.8000.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.8000.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libidn2.so.0", + "libidn2.so.0.4.0", + "libjson-c.so.5", + "libjson-c.so.5.4.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.4", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnghttp2.so.14", + "libnghttp2.so.14.29.2", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre2-8.so.0", + "libpcre2-8.so.0.13.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.11.0", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libudev.so.1", + "libudev.so.1.7.10", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11010.0", + "libvirt.so.0", + "libvirt.so.0.11010.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libvirt-devel_x86_64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_x86_64_cs9", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libacl.so.1", + "libacl.so.1.1.2301", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11009.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11009.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11009.0", + "libvirt.so.0", + "libvirt.so.0.11009.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_x86_64_cs9", + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/kubevirt-patch/v1.8.2/WORKSPACE b/kubevirt-patch/v1.8.2/WORKSPACE new file mode 100644 index 0000000..18d30aa --- /dev/null +++ b/kubevirt-patch/v1.8.2/WORKSPACE @@ -0,0 +1,16949 @@ +workspace(name = "kubevirt") + +# register crosscompiler toolchains +load("//bazel/toolchain:toolchain.bzl", "register_all_toolchains") + +register_all_toolchains() + +load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") +load( + "@bazel_tools//tools/build_defs/repo:http.bzl", + "http_archive", + "http_file", +) + +http_archive( + name = "rules_python", + sha256 = "934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + urls = [ + "https://github.com/bazelbuild/rules_python/releases/download/0.3.0/rules_python-0.3.0.tar.gz", + "https://storage.googleapis.com/builddeps/934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b", + ], +) + +http_archive( + name = "rules_oci", + sha256 = "acbf8f40e062f707f8754e914dcb0013803c6e5e3679d3e05b571a9f5c7e0b43", + strip_prefix = "rules_oci-2.0.1", + urls = [ + "https://github.com/bazel-contrib/rules_oci/releases/download/v2.0.1/rules_oci-v2.0.1.tar.gz", + "https://storage.googleapis.com/builddeps/acbf8f40e062f707f8754e914dcb0013803c6e5e3679d3e05b571a9f5c7e0b43", + ], +) + +load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies") + +rules_oci_dependencies() + +load("@rules_oci//oci:repositories.bzl", "oci_register_toolchains") + +oci_register_toolchains( + name = "oci", +) + +load("@rules_oci//oci:pull.bzl", "oci_pull") + +# Bazel buildtools prebuilt binaries +http_archive( + name = "buildifier_prebuilt", + sha256 = "7f85b688a4b558e2d9099340cfb510ba7179f829454fba842370bccffb67d6cc", + strip_prefix = "buildifier-prebuilt-7.3.1", + urls = [ + "http://github.com/keith/buildifier-prebuilt/archive/7.3.1.tar.gz", + "https://storage.googleapis.com/builddeps/7f85b688a4b558e2d9099340cfb510ba7179f829454fba842370bccffb67d6cc", + ], +) + +load("@buildifier_prebuilt//:deps.bzl", "buildifier_prebuilt_deps") + +buildifier_prebuilt_deps() + +# Additional bazel rules + +http_archive( + name = "platforms", + sha256 = "3384eb1c30762704fbe38e440204e114154086c8fc8a8c2e3e28441028c019a8", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/1.0.0/platforms-1.0.0.tar.gz", + "https://github.com/bazelbuild/platforms/releases/download/1.0.0/platforms-1.0.0.tar.gz", + "https://storage.googleapis.com/builddeps/3384eb1c30762704fbe38e440204e114154086c8fc8a8c2e3e28441028c019a8", + ], +) + +http_archive( + name = "io_bazel_rules_go", + sha256 = "130739704540caa14e77c54810b9f01d6d9ae897d53eedceb40fd6b75efc3c23", + urls = [ + "https://github.com/bazel-contrib/rules_go/releases/download/v0.54.1/rules_go-v0.54.1.zip", + "https://storage.googleapis.com/builddeps/130739704540caa14e77c54810b9f01d6d9ae897d53eedceb40fd6b75efc3c23", + ], +) + +load("@buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains", "buildtools_assets") + +buildifier_prebuilt_register_toolchains( + assets = buildtools_assets( + arches = [ + "amd64", + "arm64", + "s390x", + ], + names = [ + "buildifier", + "buildozer", + ], + platforms = [ + "darwin", + "linux", + "windows", + ], + sha256_values = { + "buildifier_darwin_amd64": "375f823103d01620aaec20a0c29c6cbca99f4fd0725ae30b93655c6704f44d71", + "buildifier_darwin_arm64": "5a6afc6ac7a09f5455ba0b89bd99d5ae23b4174dc5dc9d6c0ed5ce8caac3f813", + "buildifier_linux_amd64": "5474cc5128a74e806783d54081f581662c4be8ae65022f557e9281ed5dc88009", + "buildifier_linux_arm64": "0bf86c4bfffaf4f08eed77bde5b2082e4ae5039a11e2e8b03984c173c34a561c", + "buildifier_linux_s390x": "e2d79ff5885d45274f76531f1adbc7b73a129f59e767f777e8fbde633d9d4e2e", + "buildifier_windows_amd64": "370cd576075ad29930a82f5de132f1a1de4084c784a82514bd4da80c85acf4a8", + "buildozer_darwin_amd64": "854c9583efc166602276802658cef3f224d60898cfaa60630b33d328db3b0de2", + "buildozer_darwin_arm64": "31b1bfe20d7d5444be217af78f94c5c43799cdf847c6ce69794b7bf3319c5364", + "buildozer_linux_amd64": "3305e287b3fcc68b9a35fd8515ee617452cd4e018f9e6886b6c7cdbcba8710d4", + "buildozer_linux_arm64": "0b5a2a717ac4fc911e1fec8d92af71dbb4fe95b10e5213da0cc3d56cea64a328", + "buildozer_linux_s390x": "7e28da8722656e800424989f5cdbc095cb29b2d398d33e6b3d04e0f50bc0bb10", + "buildozer_windows_amd64": "58d41ce53257c5594c9bc86d769f580909269f68de114297f46284fbb9023dcf", + }, + version = "v7.3.1", + ), +) + +http_archive( + name = "bazel_gazelle", + sha256 = "b760f7fe75173886007f7c2e616a21241208f3d90e8657dc65d36a771e916b6a", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.39.1/bazel-gazelle-v0.39.1.tar.gz", + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.39.1/bazel-gazelle-v0.39.1.tar.gz", + "https://storage.googleapis.com/builddeps/b760f7fe75173886007f7c2e616a21241208f3d90e8657dc65d36a771e916b6a", + ], +) + +http_archive( + name = "rules_pkg", + sha256 = "d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz", + "https://github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz", + "https://storage.googleapis.com/builddeps/d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef", + ], +) + +load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") + +rules_pkg_dependencies() + +http_archive( + name = "io_bazel_rules_docker", + sha256 = "95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + strip_prefix = "rules_docker-0.16.0", + urls = [ + "https://github.com/bazelbuild/rules_docker/releases/download/v0.16.0/rules_docker-v0.16.0.tar.gz", + "https://storage.googleapis.com/builddeps/95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334", + ], +) + +http_archive( + name = "com_github_ash2k_bazel_tools", + sha256 = "46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + strip_prefix = "bazel-tools-19b174803c0db1a01e77f10fa2079c35f54eed6e", + urls = [ + "https://github.com/ash2k/bazel-tools/archive/19b174803c0db1a01e77f10fa2079c35f54eed6e.zip", + "https://storage.googleapis.com/builddeps/46fdbc00930c8dc9d84690b5bd94db6b4683b061199967d2cda1cfbda8f02c49", + ], +) + +# Disk images +http_file( + name = "alpine_image", + sha256 = "f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/x86_64/alpine-virt-3.20.1-x86_64.iso", + "https://storage.googleapis.com/builddeps/f87a0fd3ab0e65d2a84acd5dad5f8b6afce51cb465f65dd6f8a3810a3723b6e4", + ], +) + +http_file( + name = "alpine_image_aarch64", + sha256 = "ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/aarch64/alpine-virt-3.20.1-aarch64.iso", + "https://storage.googleapis.com/builddeps/ca2f0e8aa7a1d7917bce7b9e7bd413772b64ec529a1938d20352558f90a5035a", + ], +) + +http_file( + name = "alpine_image_s390x", + sha256 = "4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + urls = [ + "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/s390x/alpine-standard-3.18.8-s390x.iso", + "https://storage.googleapis.com/builddeps/4ca1462252246d53e4949523b87fcea088e8b4992dbd6df792818c5875069b16", + ], +) + +http_file( + name = "cirros_image", + sha256 = "932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-x86_64-disk.img", + "https://storage.googleapis.com/builddeps/932fcae93574e242dc3d772d5235061747dfe537668443a1f0567d893614b464", + ], +) + +http_file( + name = "cirros_image_aarch64", + sha256 = "889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + urls = [ + "https://download.cirros-cloud.net/0.5.2/cirros-0.5.2-aarch64-disk.img", + "https://storage.googleapis.com/builddeps/889c1117647b3b16cfc47957931c6573bf8e755fc9098fdcad13727b6c9f2629", + ], +) + +http_file( + name = "virtio_win_image", + sha256 = "57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + urls = [ + "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.266-1/virtio-win-0.1.266.iso", + "https://storage.googleapis.com/builddeps/57b0f6dc8dc92dc2ae8621f8b1bfbd8a873de9bedc788c4c4b305ea28acc77cd", + ], +) + +http_archive( + name = "bazeldnf", + sha256 = "0a4b9740da1839ded674c8f5012c069b235b101f1eaa2552a4721287808541af", + strip_prefix = "bazeldnf-v0.5.9-2", + urls = [ + "https://github.com/brianmcarey/bazeldnf/releases/download/v0.5.9-2/bazeldnf-v0.5.9-2.tar.gz", + "https://storage.googleapis.com/builddeps/0a4b9740da1839ded674c8f5012c069b235b101f1eaa2552a4721287808541af", + ], +) + +load("@bazeldnf//bazeldnf:defs.bzl", "rpm") +load( + "@bazeldnf//bazeldnf:repositories.bzl", + "bazeldnf_dependencies", + "bazeldnf_register_toolchains", +) +load( + "@io_bazel_rules_go//go:deps.bzl", + "go_register_toolchains", + "go_rules_dependencies", +) + +bazeldnf_dependencies() + +bazeldnf_register_toolchains( + name = "bazeldnf_prebuilt", +) + +go_rules_dependencies() + +go_register_toolchains( + go_version = "1.24.9", + nogo = "@//:nogo_vet", +) + +load("@com_github_ash2k_bazel_tools//goimports:deps.bzl", "goimports_dependencies") + +goimports_dependencies() + +load( + "@bazel_gazelle//:deps.bzl", + "gazelle_dependencies", + "go_repository", +) + +gazelle_dependencies(go_sdk = "go_sdk") + +bazeldnf_dependencies() + +# Winrmcli dependencies +go_repository( + name = "com_github_masterzen_winrmcli", + commit = "c85a68ee8b6e3ac95af2a5fd62d2f41c9e9c5f32", + importpath = "github.com/masterzen/winrm-cli", +) + +# Winrmcp deps +go_repository( + name = "com_github_packer_community_winrmcp", + commit = "c76d91c1e7db27b0868c5d09e292bb540616c9a2", + importpath = "github.com/packer-community/winrmcp", +) + +go_repository( + name = "com_github_masterzen_winrm_cli", + commit = "6f0c57dee4569c04f64c44c335752b415e5d73a7", + importpath = "github.com/masterzen/winrm-cli", +) + +go_repository( + name = "com_github_masterzen_winrm", + commit = "1d17eaf15943ca3554cdebb3b1b10aaa543a0b7e", + importpath = "github.com/masterzen/winrm", +) + +go_repository( + name = "com_github_nu7hatch_gouuid", + commit = "179d4d0c4d8d407a32af483c2354df1d2c91e6c3", + importpath = "github.com/nu7hatch/gouuid", +) + +go_repository( + name = "com_github_dylanmei_iso8601", + commit = "2075bf119b58e5576c6ed9f867b8f3d17f2e54d4", + importpath = "github.com/dylanmei/iso8601", +) + +go_repository( + name = "com_github_gofrs_uuid", + commit = "abfe1881e60ef34074c1b8d8c63b42565c356ed6", + importpath = "github.com/gofrs/uuid", +) + +go_repository( + name = "com_github_christrenkamp_goxpath", + commit = "c5096ec8773dd9f554971472081ddfbb0782334e", + importpath = "github.com/ChrisTrenkamp/goxpath", +) + +go_repository( + name = "com_github_azure_go_ntlmssp", + commit = "4a21cbd618b459155f8b8ee7f4491cd54f5efa77", + importpath = "github.com/Azure/go-ntlmssp", +) + +go_repository( + name = "com_github_masterzen_simplexml", + commit = "31eea30827864c9ab643aa5a0d5b2d4988ec8409", + importpath = "github.com/masterzen/simplexml", +) + +go_repository( + name = "org_golang_x_crypto", + commit = "4def268fd1a49955bfb3dda92fe3db4f924f2285", + importpath = "golang.org/x/crypto", +) + +# override rules_docker issue with this dependency +# rules_docker 0.16 uses 0.1.4, let's grab by commit +go_repository( + name = "com_github_google_go_containerregistry", + commit = "8a2841911ffee4f6892ca0083e89752fb46c48dd", # v0.1.4 + importpath = "github.com/google/go-containerregistry", +) + +# Pull go_image_base +oci_pull( + name = "go_image_base", + digest = "sha256:1f144c77a9ecaaa132fc3037b4417d9f9fd0b7a50101c696af5cb186876aa2a3", + image = "gcr.io/distroless/base-debian12", +) + +oci_pull( + name = "go_image_base_aarch64", + digest = "sha256:092d065d29d72957dc7a85519c3f911d6ad233fe6b53e7a9f42891e6464cc7d9", + image = "gcr.io/distroless/base-debian12", +) + +oci_pull( + name = "go_image_base_s390x", + digest = "sha256:f17ca174b7738b7d065584558d7999c08bcc2658bd2d0ad324c47c8178272774", + image = "gcr.io/distroless/base-debian12", +) + +# Pull fedora container-disk preconfigured with ci tooling +# like stress and qemu guest agent pre-configured +# TODO build fedora_with_test_tooling for multi-arch +oci_pull( + name = "fedora_with_test_tooling", + digest = "sha256:897af945d1c58366086d5933ae4f341a5f1413b88e6c7f2b659436adc5d0f522", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "alpine_with_test_tooling", + digest = "sha256:8c8e8bb6cd81c75e492c678abb3e5f186d52eba2174ebabc328316250acfea58", + image = "quay.io/kubevirtci/alpine-with-test-tooling-container-disk", +) + +oci_pull( + name = "alpine_with_test_tooling_s390x", + digest = "sha256:1a52903133c00507607e8a82308a34923e89288d852762b9f4d5da227767e965", + image = "quay.io/kubevirtci/alpine-with-test-tooling-container-disk", +) + +oci_pull( + name = "fedora_with_test_tooling_aarch64", + digest = "sha256:3d5a2a95f7f9382dc6730073fe19a6b1bc668b424c362339c88c6a13dff2ef49", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "fedora_with_test_tooling_s390x", + digest = "sha256:3d9f468750d90845a81608ea13c85237ea295c6295c911a99dc5e0504c8bc05b", + image = "quay.io/kubevirtci/fedora-with-test-tooling", +) + +oci_pull( + name = "s390x-guestless-kernel", + digest = "sha256:3bf6fc355fc9718c088c4c881b2d35a073ea274f6b16dc42236ef5e29db2215d", + image = "quay.io/kubevirt/s390x-guestless-kernel", +) + +oci_pull( + name = "alpine-ext-kernel-boot-demo-container-base", + digest = "sha256:bccd990554f55623d96fa70bc7efc553dd617523ebca76919b917ad3ee616c1d", + image = "quay.io/kubevirt/alpine-ext-kernel-boot-demo", +) + +# TODO build fedora_realtime for multi-arch +oci_pull( + name = "fedora_realtime", + digest = "sha256:f91379d202a5493aba9ce06870b5d1ada2c112f314530c9820a9ad07426aa565", + image = "quay.io/kubevirt/fedora-realtime-container-disk", +) + +oci_pull( + name = "busybox", + digest = "sha256:545e6a6310a27636260920bc07b994a299b6708a1b26910cfefd335fdfb60d2b", + image = "registry.k8s.io/busybox", +) + +load("//images/virt-template:deps.bzl", "virt_template_images") + +virt_template_images() + +http_archive( + name = "io_bazel_rules_container_rpm", + sha256 = "151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + strip_prefix = "rules_container_rpm-0.0.5", + urls = [ + "https://github.com/rmohr/rules_container_rpm/archive/v0.0.5.tar.gz", + "https://storage.googleapis.com/builddeps/151261f1b81649de6e36f027c945722bff31176f1340682679cade2839e4b1e1", + ], +) + +http_archive( + name = "libguestfs-appliance-x86_64", + sha256 = "fb6da700eeae24da89aae6516091f7c5f46958b0b7812d2b122dc11dca1ab26a", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.54.0-qcow2-linux-5.14.0-575-centos9-amd64.tar.xz", + ], +) + +http_archive( + name = "libguestfs-appliance-s390x", + sha256 = "532cb951d4245265da645c8cce14033c19ea8f0d163c01e88f4153dae44e0f95", + urls = [ + "https://storage.googleapis.com/kubevirt-prow/devel/release/kubevirt/libguestfs-appliance/libguestfs-appliance-1.54.0-qcow2-linux-5.14.0-575-centos9-s390x.tar.xz", + ], +) + +# Get container-disk-v1alpha RPM's +http_file( + name = "qemu-img", + sha256 = "669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea", + urls = ["https://storage.googleapis.com/builddeps/669250ad47aad5939cf4d1b88036fd95a94845d8e0bbdb05e933f3d2fe262fea"], +) + +# some repos which are not part of go_rules anymore +go_repository( + name = "org_golang_x_net", + importpath = "golang.org/x/net", + sum = "h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=", + version = "v0.0.0-20190311183353-d8887717615a", +) + +go_repository( + name = "org_golang_x_text", + importpath = "golang.org/x/text", + sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=", + version = "v0.3.0", +) + +register_toolchains("//:py_toolchain") + +go_repository( + name = "org_golang_x_mod", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/mod", + sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", + version = "v0.3.0", +) + +go_repository( + name = "org_golang_x_xerrors", + build_file_generation = "on", + build_file_proto_mode = "disable", + importpath = "golang.org/x/xerrors", + sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=", + version = "v0.0.0-20200804184101-5ec99f83aff1", +) + +rpm( + name = "acl-0__2.3.1-4.el9.aarch64", + sha256 = "a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/acl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0a9b302d252d32c0da8100a0ad762852c22eeac4ccad0aaf72ad68a2bbd7a93", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.s390x", + sha256 = "5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/acl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5d12a3e157b07244a7c0546905af864148730e982ac7ceaa4b0bf287dd7ae669", + ], +) + +rpm( + name = "acl-0__2.3.1-4.el9.x86_64", + sha256 = "dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/acl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd11bab2ea0abdfa310362eace871422a003340bf223135626500f8f5a985f6b", + ], +) + +rpm( + name = "acl-0__2.3.2-4.el10.aarch64", + sha256 = "e5c1d6460330fabe5ef57fb4b13d46ab0840f93556d898b5179f1b267f34455f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/acl-2.3.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e5c1d6460330fabe5ef57fb4b13d46ab0840f93556d898b5179f1b267f34455f", + ], +) + +rpm( + name = "acl-0__2.3.2-4.el10.s390x", + sha256 = "295d62b3d46571e5327671616bff8d1872af066f41719e09d5e0554d00001e49", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/acl-2.3.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/295d62b3d46571e5327671616bff8d1872af066f41719e09d5e0554d00001e49", + ], +) + +rpm( + name = "acl-0__2.3.2-4.el10.x86_64", + sha256 = "fd89f3c793d09fe633bf7721da719d29d599d01f65aaaa355b1b308a6fa580f2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/acl-2.3.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fd89f3c793d09fe633bf7721da719d29d599d01f65aaaa355b1b308a6fa580f2", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.s390x", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64", + sha256 = "9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/adobe-source-code-pro-fonts-2.030.1.050-12.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/9e6aa0c60204bb4b152ce541ca3a9f5c28b020ed551dd417d3936a8b2153f0df", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.aarch64", + sha256 = "3b8d0d6154ccc1047474072afc94cc1f72b7c234d8cd4e50734c67ca67da4161", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/alternatives-1.24-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b8d0d6154ccc1047474072afc94cc1f72b7c234d8cd4e50734c67ca67da4161", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.s390x", + sha256 = "8eb7ef117114059c44818eec88c4ed06c271a1185be1b1178ad096adcc934f11", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/alternatives-1.24-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8eb7ef117114059c44818eec88c4ed06c271a1185be1b1178ad096adcc934f11", + ], +) + +rpm( + name = "alternatives-0__1.24-2.el9.x86_64", + sha256 = "1e9effe6f59312207b55f87eaded01e8f238622ad14018ffd33ef49e9ce8d4c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/alternatives-1.24-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1e9effe6f59312207b55f87eaded01e8f238622ad14018ffd33ef49e9ce8d4c6", + ], +) + +rpm( + name = "alternatives-0__1.30-2.el10.aarch64", + sha256 = "13d1cae28aecbc13bee2cf23391ec2ee41d39c51c9bb47f466fbad133d38f5c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/alternatives-1.30-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/13d1cae28aecbc13bee2cf23391ec2ee41d39c51c9bb47f466fbad133d38f5c9", + ], +) + +rpm( + name = "alternatives-0__1.30-2.el10.s390x", + sha256 = "ab4f800759f602c25f483681b126b4eced6ba81331c9b613dd47a229379c71e1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/alternatives-1.30-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ab4f800759f602c25f483681b126b4eced6ba81331c9b613dd47a229379c71e1", + ], +) + +rpm( + name = "alternatives-0__1.30-2.el10.x86_64", + sha256 = "1c8b83bf3dd0fa8d998a3c801986f50ea3661c2f8a21c60971c0391c381919c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/alternatives-1.30-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1c8b83bf3dd0fa8d998a3c801986f50ea3661c2f8a21c60971c0391c381919c8", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-4.el9.x86_64", + sha256 = "d1482f65e84e761f0282e9e2c2a7111f0638dc889d6f34e4cde160e465855d1e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d1482f65e84e761f0282e9e2c2a7111f0638dc889d6f34e4cde160e465855d1e", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-8.el9.aarch64", + sha256 = "83af8b9a4dd0539f10ffda2ee09fe4a93eaf45fb12a3fc4aaea5899025f12cac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/audit-libs-3.1.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/83af8b9a4dd0539f10ffda2ee09fe4a93eaf45fb12a3fc4aaea5899025f12cac", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-8.el9.s390x", + sha256 = "267f9e2528d2ca70c83abd80002aab8284ea93da3f2d87be0d13a0ec7efb13c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/audit-libs-3.1.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/267f9e2528d2ca70c83abd80002aab8284ea93da3f2d87be0d13a0ec7efb13c9", + ], +) + +rpm( + name = "audit-libs-0__3.1.5-8.el9.x86_64", + sha256 = "f970ce7fc0589c0a7b37784c6fc602a35a771db811f8061b8b8af2f4e9b46349", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f970ce7fc0589c0a7b37784c6fc602a35a771db811f8061b8b8af2f4e9b46349", + ], +) + +rpm( + name = "audit-libs-0__4.0.3-5.el10.aarch64", + sha256 = "f45973727e2dea77b2209bc9795c890abac187383a596b3cb81ab066b11ddb90", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/audit-libs-4.0.3-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f45973727e2dea77b2209bc9795c890abac187383a596b3cb81ab066b11ddb90", + ], +) + +rpm( + name = "audit-libs-0__4.0.3-5.el10.s390x", + sha256 = "1d7617a754258f58b0986c6f944621819381543eee344f60f348fc44bc2274c1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/audit-libs-4.0.3-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1d7617a754258f58b0986c6f944621819381543eee344f60f348fc44bc2274c1", + ], +) + +rpm( + name = "audit-libs-0__4.0.3-5.el10.x86_64", + sha256 = "a2be49cd9497b28aa9688b6e58bce216797c868559d249e3a08034e22d1e86f7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/audit-libs-4.0.3-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2be49cd9497b28aa9688b6e58bce216797c868559d249e3a08034e22d1e86f7", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-2.el9.x86_64", + sha256 = "f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f391f8f22e87442cb03e2f822e1b869f49af4b8a6587cdfb05a18eb368eece7b", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-3.el9.s390x", + sha256 = "79f80d96c84bcfc0379638eb82862d6217052e8e72cd188b3544c2f7fc059bcc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/augeas-libs-1.14.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/79f80d96c84bcfc0379638eb82862d6217052e8e72cd188b3544c2f7fc059bcc", + ], +) + +rpm( + name = "augeas-libs-0__1.14.1-3.el9.x86_64", + sha256 = "3db7a360240d905fa0dda490ac8f00f28553299087dc31a18c9e671616889553", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3db7a360240d905fa0dda490ac8f00f28553299087dc31a18c9e671616889553", + ], +) + +rpm( + name = "augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.s390x", + sha256 = "03bb6de04d7f5c64cf30fd0fe26301508b8fad5520c25fd1fc291132b01e0c7a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/augeas-libs-1.14.2-0.9.20260120gitf4135e3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/03bb6de04d7f5c64cf30fd0fe26301508b8fad5520c25fd1fc291132b01e0c7a", + ], +) + +rpm( + name = "augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.x86_64", + sha256 = "479f9bb17e1ede3ae449e0cc47474a935b519febdb65c214eedccc1e836aeb8b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/augeas-libs-1.14.2-0.9.20260120gitf4135e3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/479f9bb17e1ede3ae449e0cc47474a935b519febdb65c214eedccc1e836aeb8b", + ], +) + +rpm( + name = "authselect-0__1.5.2-1.el10.aarch64", + sha256 = "0354c0147a3921b6c3b67e4e38cc1d23be21533aec9e1935d666770258a67994", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/authselect-1.5.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "authselect-0__1.5.2-1.el10.s390x", + sha256 = "fe23c46f2bb599099c783986fcb202b8b8f4282294bdd8f068f22a0f3bc07644", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/authselect-1.5.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "authselect-0__1.5.2-1.el10.x86_64", + sha256 = "f3fea14e3138deb4d1e6c28a9922eaae4c99baf511bd98c179acfd03fb0d61b1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/authselect-1.5.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "authselect-libs-0__1.5.2-1.el10.aarch64", + sha256 = "d90bd5fda96963f4c7a1359eed58974472b76374a116c3fea6eec601b52e5361", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/authselect-libs-1.5.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "authselect-libs-0__1.5.2-1.el10.s390x", + sha256 = "a5a6cd4f6eecab16227e57ac314fd7aafb0ebe7b31535834b847f15c69b235c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/authselect-libs-1.5.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "authselect-libs-0__1.5.2-1.el10.x86_64", + sha256 = "dfa12036f818655945efa17bfeac35e5bcb40a08ba89e74f57e3bb36e083000b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/authselect-libs-1.5.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.aarch64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.s390x", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-13.el9.x86_64", + sha256 = "a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/basesystem-11-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a687ef39dd28d01d34fab18ea7e3e87f649f6c202dded82260b7ea625b9973", + ], +) + +rpm( + name = "basesystem-0__11-22.el10.aarch64", + sha256 = "76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/basesystem-11-22.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + ], +) + +rpm( + name = "basesystem-0__11-22.el10.s390x", + sha256 = "76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/basesystem-11-22.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + ], +) + +rpm( + name = "basesystem-0__11-22.el10.x86_64", + sha256 = "76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/basesystem-11-22.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/76ff57f4d7565cd0e49f5e6dc38f3707dfe6a6b61317d883c2701be4277f2abf", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.aarch64", + sha256 = "acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bash-5.1.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acb782e8dacd2f3efb25d0b8b1b64c59b8a60a84fc86a4fca88ede1affc68f4c", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.s390x", + sha256 = "7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bash-5.1.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7f69429a343d53be5f3390e0e6032869c33cf1e9e344ee1448a4ec2998dc9d9e", + ], +) + +rpm( + name = "bash-0__5.1.8-9.el9.x86_64", + sha256 = "823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bash-5.1.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/823859a9e8fad83004fa0d9f698ff223f6f7d38fd8e7629509d98b5ba6764c03", + ], +) + +rpm( + name = "bash-0__5.2.26-6.el10.aarch64", + sha256 = "3f42c3de9fddc6e6c08f7c603ce29ed96d8d66f4425ce1c27bcb0d7d0e0490b5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/bash-5.2.26-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3f42c3de9fddc6e6c08f7c603ce29ed96d8d66f4425ce1c27bcb0d7d0e0490b5", + ], +) + +rpm( + name = "bash-0__5.2.26-6.el10.s390x", + sha256 = "07261872bd05c23366da7c2529b776dccfdf1a33c99d784370ebfde32d8909d7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/bash-5.2.26-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/07261872bd05c23366da7c2529b776dccfdf1a33c99d784370ebfde32d8909d7", + ], +) + +rpm( + name = "bash-0__5.2.26-6.el10.x86_64", + sha256 = "31eaf885847a6671a93e2b6e0d48e937ae5520f0442265aae19f4294260b5618", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/bash-5.2.26-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/31eaf885847a6671a93e2b6e0d48e937ae5520f0442265aae19f4294260b5618", + ], +) + +rpm( + name = "binutils-0__2.35.2-69.el9.aarch64", + sha256 = "5276381ae395c0d5cf7414cb7bfd3bc14ab93f83233238f1e2b0aa8703eb159b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-2.35.2-69.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5276381ae395c0d5cf7414cb7bfd3bc14ab93f83233238f1e2b0aa8703eb159b", + ], +) + +rpm( + name = "binutils-0__2.35.2-69.el9.s390x", + sha256 = "2312fba1a49412188587995f932f0a8cd18232ccb148a4cb8b5784edb5eddc09", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-2.35.2-69.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2312fba1a49412188587995f932f0a8cd18232ccb148a4cb8b5784edb5eddc09", + ], +) + +rpm( + name = "binutils-0__2.35.2-69.el9.x86_64", + sha256 = "8f5d12203960d696a941987548e6085642eaed291d4858a308c8be247570bf27", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-2.35.2-69.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8f5d12203960d696a941987548e6085642eaed291d4858a308c8be247570bf27", + ], +) + +rpm( + name = "binutils-0__2.41-63.el10.aarch64", + sha256 = "ce296ed443fa75ac3425b197ab9c42cafa20f45970b279a881585cbe1af69743", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/binutils-2.41-63.el10.aarch64.rpm", + ], +) + +rpm( + name = "binutils-0__2.41-63.el10.s390x", + sha256 = "ae3c575b014a5b607fb7d8f43729c94aaaf252bd0c038ad653b7d585045eff69", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/binutils-2.41-63.el10.s390x.rpm", + ], +) + +rpm( + name = "binutils-0__2.41-63.el10.x86_64", + sha256 = "5b89fa4b895ac32b3cc37ae63b414e20637fcdba8e567a8ce2fe4535bf05c297", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/binutils-2.41-63.el10.x86_64.rpm", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-69.el9.aarch64", + sha256 = "b3e833b049af21ad1467586c5975e494ba99a7072320a8f7d81a24edbb7071b2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/binutils-gold-2.35.2-69.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b3e833b049af21ad1467586c5975e494ba99a7072320a8f7d81a24edbb7071b2", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-69.el9.s390x", + sha256 = "df03b983980a4ae5a236dcb480be7a85c3979fc28bb534b2f11dec0cb21e5ebb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/binutils-gold-2.35.2-69.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/df03b983980a4ae5a236dcb480be7a85c3979fc28bb534b2f11dec0cb21e5ebb", + ], +) + +rpm( + name = "binutils-gold-0__2.35.2-69.el9.x86_64", + sha256 = "2bdfd486a24ec343d34085524a9a78a174b6beb746a3ee78ea49d70fddde8f20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/binutils-gold-2.35.2-69.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2bdfd486a24ec343d34085524a9a78a174b6beb746a3ee78ea49d70fddde8f20", + ], +) + +rpm( + name = "binutils-gold-0__2.41-63.el10.aarch64", + sha256 = "c64276fa2ca4e1173f944277f608918eb2aeca7d71d00db8b46857c6c0e53bbe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/binutils-gold-2.41-63.el10.aarch64.rpm", + ], +) + +rpm( + name = "binutils-gold-0__2.41-63.el10.s390x", + sha256 = "0f95a2e63e7dc9212b69f0b9d79a1a6c647a6a3635c965d06a5ae1aaeb1a5703", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/binutils-gold-2.41-63.el10.s390x.rpm", + ], +) + +rpm( + name = "binutils-gold-0__2.41-63.el10.x86_64", + sha256 = "367ad3e3fff8c3a86ebb240f4994af59d4d896349c648181773701a4728916af", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/binutils-gold-2.41-63.el10.x86_64.rpm", + ], +) + +rpm( + name = "bzip2-0__1.0.8-10.el9.x86_64", + sha256 = "930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/930b323ac8a0fc2357baecddc71d0fa1ea6cbae19d2ac61667aef19ed25d088e", + ], +) + +rpm( + name = "bzip2-0__1.0.8-11.el9.aarch64", + sha256 = "b10f34223776bbf7a1b433a92ba6f87a4a58d893acae3a56d38654c3790b5c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-1.0.8-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b10f34223776bbf7a1b433a92ba6f87a4a58d893acae3a56d38654c3790b5c03", + ], +) + +rpm( + name = "bzip2-0__1.0.8-11.el9.s390x", + sha256 = "e94ba526c13a81e1046ff33234dd37bce3a2a9b1e1a15b5cd33434b6b0d399b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-1.0.8-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e94ba526c13a81e1046ff33234dd37bce3a2a9b1e1a15b5cd33434b6b0d399b4", + ], +) + +rpm( + name = "bzip2-0__1.0.8-11.el9.x86_64", + sha256 = "27de96d7fb8285910bdd240cf6c6a842863b9a01d20b25874f5d121a16239441", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27de96d7fb8285910bdd240cf6c6a842863b9a01d20b25874f5d121a16239441", + ], +) + +rpm( + name = "bzip2-0__1.0.8-25.el10.aarch64", + sha256 = "30fd7d37e3f06d0b06b6f3e6fda58fd9d54582b0e497795719d81dc68ac88ba7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/bzip2-1.0.8-25.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/30fd7d37e3f06d0b06b6f3e6fda58fd9d54582b0e497795719d81dc68ac88ba7", + ], +) + +rpm( + name = "bzip2-0__1.0.8-25.el10.s390x", + sha256 = "c9208b97a6a3e2cb7fc84a7bea4e330399cc6ef892c3f0abe20d5df10797eade", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/bzip2-1.0.8-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/c9208b97a6a3e2cb7fc84a7bea4e330399cc6ef892c3f0abe20d5df10797eade", + ], +) + +rpm( + name = "bzip2-0__1.0.8-25.el10.x86_64", + sha256 = "ff7f8e9c3cc936d35033ec40545ee4a836db27c30c240d3aa39be4c8b0fda631", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/bzip2-1.0.8-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff7f8e9c3cc936d35033ec40545ee4a836db27c30c240d3aa39be4c8b0fda631", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-10.el9.x86_64", + sha256 = "84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84392815cc1a8f01c651edd17f570aa449ef6f397ae48d773d655606ea7b4c96", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-11.el9.aarch64", + sha256 = "fafc0f2b7632774d4c07264c73eebbe52f815b4c81056bd44b944e5255cb20bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fafc0f2b7632774d4c07264c73eebbe52f815b4c81056bd44b944e5255cb20bb", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-11.el9.s390x", + sha256 = "e9746e7bd442b4104b726e239cf3b7b87400824c7094de6d11f356da4c27593f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e9746e7bd442b4104b726e239cf3b7b87400824c7094de6d11f356da4c27593f", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-11.el9.x86_64", + sha256 = "e1f4ca1a16276a6ede5f67cab8d8d2920b98531419af7498f5fded85835e0fca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e1f4ca1a16276a6ede5f67cab8d8d2920b98531419af7498f5fded85835e0fca", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-25.el10.aarch64", + sha256 = "ac836c2c133077d0e71092f2c21e69d3985ace8458af527440e13b7edf165beb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-25.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ac836c2c133077d0e71092f2c21e69d3985ace8458af527440e13b7edf165beb", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-25.el10.s390x", + sha256 = "219adea56b92ecf22cb63fad38638e16115df270b78ea1fbd3cc1b183caf69a4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/219adea56b92ecf22cb63fad38638e16115df270b78ea1fbd3cc1b183caf69a4", + ], +) + +rpm( + name = "bzip2-libs-0__1.0.8-25.el10.x86_64", + sha256 = "309c7dbb857254655c51c4ab02d8038137c1363058542d8701c9272609f5b433", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/309c7dbb857254655c51c4ab02d8038137c1363058542d8701c9272609f5b433", + ], +) + +rpm( + name = "ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64", + sha256 = "d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ca-certificates-2024.2.69_v8.0.303-91.4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/d18c1b9763c22dc93da804f96ad3d92b3157195c9eff6e923c33e9011df3e246", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64", + sha256 = "a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/ca-certificates-2025.2.80_v9.0.305-102.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x", + sha256 = "a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/ca-certificates-2025.2.80_v9.0.305-102.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64", + sha256 = "a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/ca-certificates-2025.2.80_v9.0.305-102.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/a5a8cf95b7cae489df2f6b4448b6d5100593256b0033376d25b2705985fad9dc", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64", + sha256 = "489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x", + sha256 = "489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + ], +) + +rpm( + name = "ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64", + sha256 = "489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ca-certificates-2025.2.80_v9.0.305-91.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/489fdf258344892412ff2f10d0c1c849c45d5a15c4628abda33f325a42dd1bb0", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.aarch64", + sha256 = "fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/capstone-4.0.2-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fe07aa69a9e6b70d0324e702b825ad55f330225ecb2af504f7026917e0ff197e", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.s390x", + sha256 = "1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/capstone-4.0.2-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1110f472053cbfaa31ff98c2722c147ac2d9f006fded91d1987ea8d114f3ce0a", + ], +) + +rpm( + name = "capstone-0__4.0.2-10.el9.x86_64", + sha256 = "f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/capstone-4.0.2-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6a9fdc6bcb5da1b2ce44ca7ed6289759c37add7adbb19916dd36d5bb4624a41", + ], +) + +rpm( + name = "capstone-0__5.0.1-6.el10.aarch64", + sha256 = "be12ff671fc1244c69b39284b61f4a7e825570d11176dcd83e8476010157db92", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/capstone-5.0.1-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/be12ff671fc1244c69b39284b61f4a7e825570d11176dcd83e8476010157db92", + ], +) + +rpm( + name = "capstone-0__5.0.1-6.el10.s390x", + sha256 = "f94850c0dedde1efd687de604a99f6461ec2cb394184f76e3d2d17af0654f0d0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/capstone-5.0.1-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f94850c0dedde1efd687de604a99f6461ec2cb394184f76e3d2d17af0654f0d0", + ], +) + +rpm( + name = "capstone-0__5.0.1-6.el10.x86_64", + sha256 = "aa46343e831205d94b08f3d692f88b3a84a16f35b260152684ea10183d972160", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/capstone-5.0.1-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa46343e831205d94b08f3d692f88b3a84a16f35b260152684ea10183d972160", + ], +) + +rpm( + name = "centos-gpg-keys-0__10.0-20.el10.aarch64", + sha256 = "2c8285ac32231cb050b87c841173d071d8a5131026ebff6549f78b65a2de2425", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-gpg-keys-0__10.0-20.el10.s390x", + sha256 = "2c8285ac32231cb050b87c841173d071d8a5131026ebff6549f78b65a2de2425", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-gpg-keys-0__10.0-20.el10.x86_64", + sha256 = "2c8285ac32231cb050b87c841173d071d8a5131026ebff6549f78b65a2de2425", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-26.el9.x86_64", + sha256 = "8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca", + urls = ["https://storage.googleapis.com/builddeps/8d601d9f96356a200ad6ed8e5cb49bbac4aa3c4b762d10a23e11311daa5711ca"], +) + +rpm( + name = "centos-gpg-keys-0__9.0-35.el9.aarch64", + sha256 = "77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-35.el9.s390x", + sha256 = "77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + ], +) + +rpm( + name = "centos-gpg-keys-0__9.0-35.el9.x86_64", + sha256 = "77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/77e4a14370a63fc7b42d5dd7953654d9ae791a8a41e2388788559d65182da8fb", + ], +) + +rpm( + name = "centos-stream-release-0__10.0-20.el10.aarch64", + sha256 = "b0959f089bd8c1686d45f04d1b533856ef338c3113019869d5363b81227cc133", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/centos-stream-release-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-release-0__10.0-20.el10.s390x", + sha256 = "b0959f089bd8c1686d45f04d1b533856ef338c3113019869d5363b81227cc133", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/centos-stream-release-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-release-0__10.0-20.el10.x86_64", + sha256 = "b0959f089bd8c1686d45f04d1b533856ef338c3113019869d5363b81227cc133", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/centos-stream-release-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-26.el9.x86_64", + sha256 = "3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3", + urls = ["https://storage.googleapis.com/builddeps/3d60dc8ed86717f68394fc7468b8024557c43ac2ad97b8e40911d056cd6d64d3"], +) + +rpm( + name = "centos-stream-release-0__9.0-35.el9.aarch64", + sha256 = "1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-release-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-35.el9.s390x", + sha256 = "1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-release-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + ], +) + +rpm( + name = "centos-stream-release-0__9.0-35.el9.x86_64", + sha256 = "1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-release-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c9986cabdf106cae20bc548d11aec1af6446ed670c6226b38a2b0383493c184", + ], +) + +rpm( + name = "centos-stream-repos-0__10.0-20.el10.aarch64", + sha256 = "9b86e7529335e2295623dc5c73d9d79fb9adb0f02d1f4253dfe0de05b2891256", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-repos-0__10.0-20.el10.s390x", + sha256 = "9b86e7529335e2295623dc5c73d9d79fb9adb0f02d1f4253dfe0de05b2891256", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/centos-stream-repos-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-repos-0__10.0-20.el10.x86_64", + sha256 = "9b86e7529335e2295623dc5c73d9d79fb9adb0f02d1f4253dfe0de05b2891256", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-10.0-20.el10.noarch.rpm", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-26.el9.x86_64", + sha256 = "eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035", + urls = ["https://storage.googleapis.com/builddeps/eb3b55a5cf0e1a93a91cd2d39035bd1754b46f69ff3d062b3331e765b2345035"], +) + +rpm( + name = "centos-stream-repos-0__9.0-35.el9.aarch64", + sha256 = "23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-35.el9.s390x", + sha256 = "23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-repos-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + ], +) + +rpm( + name = "centos-stream-repos-0__9.0-35.el9.x86_64", + sha256 = "23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-9.0-35.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/23f3d6d63dd948cf2b0b4ebb5562ccc0facca73bed907db9056fd3d42fdefa29", + ], +) + +rpm( + name = "coreutils-single-0__8.32-39.el9.x86_64", + sha256 = "09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-39.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/09f7d8250c478a2931678063068adb8fccd2048d29fe9df31ca4e12c68f2ec7a", + ], +) + +rpm( + name = "coreutils-single-0__8.32-40.el9.aarch64", + sha256 = "01ae5898e4f6a43c85f5d0123a02015309384d1a4a40bf58db0ef899adf398be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/coreutils-single-8.32-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01ae5898e4f6a43c85f5d0123a02015309384d1a4a40bf58db0ef899adf398be", + ], +) + +rpm( + name = "coreutils-single-0__8.32-40.el9.s390x", + sha256 = "a258bc285a7a31480f9d9e8255e24c748f1271834e5c92c60b003e1f2fa0a076", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/coreutils-single-8.32-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a258bc285a7a31480f9d9e8255e24c748f1271834e5c92c60b003e1f2fa0a076", + ], +) + +rpm( + name = "coreutils-single-0__8.32-40.el9.x86_64", + sha256 = "14976e3ef37565bd9959bdda734c92199fde7d6ad6c0d970349a84340f11c871", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/14976e3ef37565bd9959bdda734c92199fde7d6ad6c0d970349a84340f11c871", + ], +) + +rpm( + name = "coreutils-single-0__9.5-7.el10.aarch64", + sha256 = "61dca0bdaea3cc04e67778fee3009c88e6db35208dde22fa035e7614074c547a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/coreutils-single-9.5-7.el10.aarch64.rpm", + ], +) + +rpm( + name = "coreutils-single-0__9.5-7.el10.s390x", + sha256 = "f1cf5fccb8144ca9483a26f63ac943af27f9e190253b79e49a5c4fa6d857bf04", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/coreutils-single-9.5-7.el10.s390x.rpm", + ], +) + +rpm( + name = "coreutils-single-0__9.5-7.el10.x86_64", + sha256 = "9a5196ca04b3c69e82abfeac7e0424077b6e8696b40c37fb1c17766f63af91bc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/coreutils-single-9.5-7.el10.x86_64.rpm", + ], +) + +rpm( + name = "cpp-0__11.5.0-14.el9.aarch64", + sha256 = "6c14ab2a1cfa7fcaa55e1a6a1d35220c817010c89321c7e8654855cc9582b381", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/cpp-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6c14ab2a1cfa7fcaa55e1a6a1d35220c817010c89321c7e8654855cc9582b381", + ], +) + +rpm( + name = "cpp-0__11.5.0-14.el9.s390x", + sha256 = "168ccf4f3a4dad3eeccaaf2614cdae24a77c3a0ec1ee409d71e9fbc3dca12a23", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/cpp-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/168ccf4f3a4dad3eeccaaf2614cdae24a77c3a0ec1ee409d71e9fbc3dca12a23", + ], +) + +rpm( + name = "cpp-0__11.5.0-14.el9.x86_64", + sha256 = "b2792e076b41cd6d044d341ae756575a51e0ab85a6dae375f1cb1d59cf47d921", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cpp-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b2792e076b41cd6d044d341ae756575a51e0ab85a6dae375f1cb1d59cf47d921", + ], +) + +rpm( + name = "cpp-0__14.3.1-4.4.el10.aarch64", + sha256 = "642cd24d9944392b6d55e2a32b137a0a4f31857a11b6e1c1c423bf66061b4864", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/cpp-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "cpp-0__14.3.1-4.4.el10.s390x", + sha256 = "29ee0eb088163e4b0ffa4166141bb2e40db37742870d57a96e461c3a2ad42fdb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/cpp-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "cpp-0__14.3.1-4.4.el10.x86_64", + sha256 = "7668973ca6c7706025e30e4b557eb1ac8b55d05bda1ba3d8410d0b502ebfbf72", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/cpp-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "cracklib-0__2.9.11-8.el10.aarch64", + sha256 = "04112224e2f1b7027ef15ee4cb9ede5bb89426b29f150692778d8f7ca155eea9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cracklib-2.9.11-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/04112224e2f1b7027ef15ee4cb9ede5bb89426b29f150692778d8f7ca155eea9", + ], +) + +rpm( + name = "cracklib-0__2.9.11-8.el10.s390x", + sha256 = "2e0c0ba830f1a497461b1a7f6e76f5d409c9bf87d2c4a6874957abe3fdb74be3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cracklib-2.9.11-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2e0c0ba830f1a497461b1a7f6e76f5d409c9bf87d2c4a6874957abe3fdb74be3", + ], +) + +rpm( + name = "cracklib-0__2.9.11-8.el10.x86_64", + sha256 = "4d648a415fe67550a22ff50befdaf9a33ccb55dbc9a2e3d4121ddfbe2ee843f7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.11-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4d648a415fe67550a22ff50befdaf9a33ccb55dbc9a2e3d4121ddfbe2ee843f7", + ], +) + +rpm( + name = "cracklib-0__2.9.6-27.el9.x86_64", + sha256 = "be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be9deb2efd06b4b2c1c130acae94c687161d04830119e65a989d904ba9fd1864", + ], +) + +rpm( + name = "cracklib-0__2.9.6-28.el9.aarch64", + sha256 = "78dbd83e4de7c011dedc8071af056989dece25dae7605eb60703b219ebbeadc1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-2.9.6-28.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/78dbd83e4de7c011dedc8071af056989dece25dae7605eb60703b219ebbeadc1", + ], +) + +rpm( + name = "cracklib-0__2.9.6-28.el9.s390x", + sha256 = "14006fd9132581ca7ab86b87eb4751efd25279bc60df48aced985002e401112d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-2.9.6-28.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/14006fd9132581ca7ab86b87eb4751efd25279bc60df48aced985002e401112d", + ], +) + +rpm( + name = "cracklib-0__2.9.6-28.el9.x86_64", + sha256 = "aa659fc5fc1f40d9301850411e1e4cfb9351175e1879a1d404292cbd909982f0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-2.9.6-28.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa659fc5fc1f40d9301850411e1e4cfb9351175e1879a1d404292cbd909982f0", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.11-8.el10.aarch64", + sha256 = "51210426186039c77239cbb3c710acbc9f7778ca44292204ffa2ecf1448e2c1e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.11-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/51210426186039c77239cbb3c710acbc9f7778ca44292204ffa2ecf1448e2c1e", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.11-8.el10.s390x", + sha256 = "45cf94fabce8c9c035df7db91b19fefec5cfef5cee54505cabebce1822e3099d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cracklib-dicts-2.9.11-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/45cf94fabce8c9c035df7db91b19fefec5cfef5cee54505cabebce1822e3099d", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.11-8.el10.x86_64", + sha256 = "79dd2684b0ae0cbc47739c0e292f17243eb448b92f74bae893cf1eb4aba14703", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.11-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79dd2684b0ae0cbc47739c0e292f17243eb448b92f74bae893cf1eb4aba14703", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-27.el9.x86_64", + sha256 = "01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-27.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/01df2a72fcdf988132e82764ce1a22a5a9513fa253b54e17d23058bdb53c2d85", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-28.el9.aarch64", + sha256 = "3b449db83d1a649b93eff386e098ab01f24028b106827d9fef899abc99818b15", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.6-28.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b449db83d1a649b93eff386e098ab01f24028b106827d9fef899abc99818b15", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-28.el9.s390x", + sha256 = "a0ac88ff592620ae37ea0826d59874f0f5a08828c02fcd514473302d15cf6c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cracklib-dicts-2.9.6-28.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a0ac88ff592620ae37ea0826d59874f0f5a08828c02fcd514473302d15cf6c03", + ], +) + +rpm( + name = "cracklib-dicts-0__2.9.6-28.el9.x86_64", + sha256 = "b0e372c09e6eb01d2de1316b7e59c79178c0eaee6d713004d7fe5fbc7e718603", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-28.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b0e372c09e6eb01d2de1316b7e59c79178c0eaee6d713004d7fe5fbc7e718603", + ], +) + +rpm( + name = "crypto-policies-0__20250128-1.git5269e22.el9.x86_64", + sha256 = "f811d2c848f6f93a188f2d74d4ccd172e1dc88fa7919e8e203cf1df3d93571e1", + urls = ["https://storage.googleapis.com/builddeps/f811d2c848f6f93a188f2d74d4ccd172e1dc88fa7919e8e203cf1df3d93571e1"], +) + +rpm( + name = "crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64", + sha256 = "38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-20251126-1.gite9c4db2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + ], +) + +rpm( + name = "crypto-policies-0__20251126-1.gite9c4db2.el9.s390x", + sha256 = "38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-20251126-1.gite9c4db2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + ], +) + +rpm( + name = "crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64", + sha256 = "38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-20251126-1.gite9c4db2.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/38c1e40b477795017996db0683b72004a4810d88a320ae0554e6736b118c5c9a", + ], +) + +rpm( + name = "crypto-policies-0__20260216-1.git0e54016.el10.aarch64", + sha256 = "d6041237021e53b095cc81224a872cbe7d18988374315cd9457be29803641ac8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/crypto-policies-20260216-1.git0e54016.el10.noarch.rpm", + ], +) + +rpm( + name = "crypto-policies-0__20260216-1.git0e54016.el10.s390x", + sha256 = "d6041237021e53b095cc81224a872cbe7d18988374315cd9457be29803641ac8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/crypto-policies-20260216-1.git0e54016.el10.noarch.rpm", + ], +) + +rpm( + name = "crypto-policies-0__20260216-1.git0e54016.el10.x86_64", + sha256 = "d6041237021e53b095cc81224a872cbe7d18988374315cd9457be29803641ac8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/crypto-policies-20260216-1.git0e54016.el10.noarch.rpm", + ], +) + +rpm( + name = "curl-0__8.12.1-4.el10.aarch64", + sha256 = "7fe56b8ad3db9141cd721455717109785447e79358f4541d27bec012230db8c4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/curl-8.12.1-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7fe56b8ad3db9141cd721455717109785447e79358f4541d27bec012230db8c4", + ], +) + +rpm( + name = "curl-0__8.12.1-4.el10.s390x", + sha256 = "2aa147ae00c5fc1a0264f785127771e6ced0f4ee3d82a9bd6c48d1f240e44c7c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/curl-8.12.1-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2aa147ae00c5fc1a0264f785127771e6ced0f4ee3d82a9bd6c48d1f240e44c7c", + ], +) + +rpm( + name = "curl-0__8.12.1-4.el10.x86_64", + sha256 = "30b38c7b64e1a33c6b69634fcb4b9d9f1714f9bd6530ee0175fc3be149f23d9b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/curl-8.12.1-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30b38c7b64e1a33c6b69634fcb4b9d9f1714f9bd6530ee0175fc3be149f23d9b", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be145eb1684cb38553b6611bca6c0fb562ff8485902c49131c5ed0b9ac0733f4", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-40.el9.aarch64", + sha256 = "a3de170776a05462a04ab6bfd8c66f4a032d70f53d34018013751eb2e0392657", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-minimal-7.76.1-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a3de170776a05462a04ab6bfd8c66f4a032d70f53d34018013751eb2e0392657", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-40.el9.s390x", + sha256 = "fb571ec63ecacabed30de75cb81b048e4e01f3a0b521d91190fcd2412df7b6ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-minimal-7.76.1-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fb571ec63ecacabed30de75cb81b048e4e01f3a0b521d91190fcd2412df7b6ae", + ], +) + +rpm( + name = "curl-minimal-0__7.76.1-40.el9.x86_64", + sha256 = "94c55a702411b0bc2c6c9c1bb0ab794105785af58c5ad22597cc68536709a092", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-minimal-7.76.1-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/94c55a702411b0bc2c6c9c1bb0ab794105785af58c5ad22597cc68536709a092", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64", + sha256 = "12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12e292b4e05934f8fc8ecc557b2b57c2844335a559f720140bb7810ef249c043", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x", + sha256 = "0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c9badb44b1c126966382c2016fb3a28e93c79046992656b643b59ff628b306d", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64", + sha256 = "c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-gssapi-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c7cba5ec41adada2d95348705d91a5ef7b4bca2f82ca22440e881ad28d2d27d0", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.28-27.el10.aarch64", + sha256 = "f030977f59727e389143e1813c5fc848799abbea48ed60aca460dc2eb1a79637", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-gssapi-2.1.28-27.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f030977f59727e389143e1813c5fc848799abbea48ed60aca460dc2eb1a79637", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x", + sha256 = "28c75a50cf3f092920ac56fb65805e9c875fc95d4e76bce0e1cc6b6d21e3fba3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cyrus-sasl-gssapi-2.1.28-27.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/28c75a50cf3f092920ac56fb65805e9c875fc95d4e76bce0e1cc6b6d21e3fba3", + ], +) + +rpm( + name = "cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64", + sha256 = "f9ab02ca832fe4d5c1e1ee3abd7ff3db3815d164561350316032a82b44d68b6c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-gssapi-2.1.28-27.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f9ab02ca832fe4d5c1e1ee3abd7ff3db3815d164561350316032a82b44d68b6c", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.aarch64", + sha256 = "898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/898d7094964022ca527a6596550b8d46499b3274f8c6a1ee632a98961012d80c", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.s390x", + sha256 = "e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e8954c3d19fc3aa905d09488c111df37bd5b9fe9c1eeec314420b3be2e75a74f", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.27-21.el9.x86_64", + sha256 = "fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fd4292a29759f9531bbc876d1818e7a83ccac76907234002f598671d7b338469", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.28-27.el10.aarch64", + sha256 = "917d6b8d2eff0dd71b55646c758b938ac7b9f0a298f2dffae5948c9865215067", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.28-27.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/917d6b8d2eff0dd71b55646c758b938ac7b9f0a298f2dffae5948c9865215067", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.28-27.el10.s390x", + sha256 = "b40557a0d21461db27adf093fe6a72ec17a243f6743a3d1e26c32601753e97ee", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/cyrus-sasl-lib-2.1.28-27.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/b40557a0d21461db27adf093fe6a72ec17a243f6743a3d1e26c32601753e97ee", + ], +) + +rpm( + name = "cyrus-sasl-lib-0__2.1.28-27.el10.x86_64", + sha256 = "ea78a83980b03f3709266f5e4c96b41699fe8d5f7003fb9503c3a7529c6ca46a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.28-27.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea78a83980b03f3709266f5e4c96b41699fe8d5f7003fb9503c3a7529c6ca46a", + ], +) + +rpm( + name = "daxctl-libs-0__78-2.el9.x86_64", + sha256 = "1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/daxctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1db2937a9c93ecbf3de5bd8da49475156fcf2d082c93008d786b3ce8ece43829", + ], +) + +rpm( + name = "daxctl-libs-0__82-1.el9.x86_64", + sha256 = "f3650df75436eebe1fd14369f161a7b15c8ab9f4ed6333b8a83e1be70dc185a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/daxctl-libs-82-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f3650df75436eebe1fd14369f161a7b15c8ab9f4ed6333b8a83e1be70dc185a3", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.aarch64", + sha256 = "29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29c244f31d9f3ae910a6b95d4d5534cdf1ea4870fc277e29876a10cf3bd193ae", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.s390x", + sha256 = "a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a99d278716899bb35100d4c9c26a66a795d309555d8d71ef6d1739e2f44cf44d", + ], +) + +rpm( + name = "dbus-1__1.12.20-8.el9.x86_64", + sha256 = "d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d13d52df79bb9a0a1795530a5ce1134c9c92a2a7c401dfc3827ee8bf02f60018", + ], +) + +rpm( + name = "dbus-1__1.14.10-5.el10.aarch64", + sha256 = "2f00025969ff8b32c254ec38919908120f83847e98285413c718d1ad0b2a8766", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-1.14.10-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2f00025969ff8b32c254ec38919908120f83847e98285413c718d1ad0b2a8766", + ], +) + +rpm( + name = "dbus-1__1.14.10-5.el10.s390x", + sha256 = "2a746bab9a5c03b6bc2f680ad3be8ecf935404c17f6488de44e77ab61bdfedb8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-1.14.10-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2a746bab9a5c03b6bc2f680ad3be8ecf935404c17f6488de44e77ab61bdfedb8", + ], +) + +rpm( + name = "dbus-1__1.14.10-5.el10.x86_64", + sha256 = "c71f38667ecebd3ba0adf415ccf181209330bb0e2ca9ad0bf4de9828b370b9e4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-1.14.10-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c71f38667ecebd3ba0adf415ccf181209330bb0e2ca9ad0bf4de9828b370b9e4", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.aarch64", + sha256 = "28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-broker-28-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/28a7abe52040dcda6e5d941206ef6e5c47478fcc06a9f05c2ab7dacc2afa9f42", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.s390x", + sha256 = "d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-broker-28-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d38a5ae851f9006000c3cd7a37310f901a02864e0272d7284c4f2db1efcd61ff", + ], +) + +rpm( + name = "dbus-broker-0__28-7.el9.x86_64", + sha256 = "dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-broker-28-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd65bddd728ed08dcdba5d06b5a5af9f958e5718e8cab938783241bd8f4d1131", + ], +) + +rpm( + name = "dbus-broker-0__36-4.el10.aarch64", + sha256 = "3716b1d4daa23c6fd965175473464ddfa91ea5651a68298a2e0b139021e23035", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-broker-36-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3716b1d4daa23c6fd965175473464ddfa91ea5651a68298a2e0b139021e23035", + ], +) + +rpm( + name = "dbus-broker-0__36-4.el10.s390x", + sha256 = "3d1ec31218c8925602bb7fcd88150c628a0e24ab5cc4e7c63b85785202756283", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-broker-36-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d1ec31218c8925602bb7fcd88150c628a0e24ab5cc4e7c63b85785202756283", + ], +) + +rpm( + name = "dbus-broker-0__36-4.el10.x86_64", + sha256 = "a0778052571fe74351500a06e765219fcf53c0ca2eeb4969a2682a36ee9f9c10", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-broker-36-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0778052571fe74351500a06e765219fcf53c0ca2eeb4969a2682a36ee9f9c10", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.aarch64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.s390x", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.12.20-8.el9.x86_64", + sha256 = "ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-common-1.12.20-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ff91286d9413256c50886a0c96b3d5d0773bd25284b9a94b28b98a5215f09a56", + ], +) + +rpm( + name = "dbus-common-1__1.14.10-5.el10.aarch64", + sha256 = "1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-common-1.14.10-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + ], +) + +rpm( + name = "dbus-common-1__1.14.10-5.el10.s390x", + sha256 = "1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-common-1.14.10-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + ], +) + +rpm( + name = "dbus-common-1__1.14.10-5.el10.x86_64", + sha256 = "1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-common-1.14.10-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/1cf5e00ed550daa874c5ec81be43f4606717a2465d72b733d3b9012015dfa751", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.aarch64", + sha256 = "4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dbus-libs-1.12.20-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4f9a0d0712363aaee565b9883560de7b0afd7f8ffdc5f8584afadc1623ff1897", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.s390x", + sha256 = "03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/dbus-libs-1.12.20-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/03174ea3bd7d525a263d23fbd5c797acff256d3f01ca75d58b2558c561a2e472", + ], +) + +rpm( + name = "dbus-libs-1__1.12.20-8.el9.x86_64", + sha256 = "2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dbus-libs-1.12.20-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d46aaa0b1e8032d10156b040a5226b5a90ef000d8d85d40fd5671379a5bc904", + ], +) + +rpm( + name = "dbus-libs-1__1.14.10-5.el10.aarch64", + sha256 = "976a662683dc4f8235303cd6065f589c4d4728671116827b2002ac1fd4a74a72", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dbus-libs-1.14.10-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/976a662683dc4f8235303cd6065f589c4d4728671116827b2002ac1fd4a74a72", + ], +) + +rpm( + name = "dbus-libs-1__1.14.10-5.el10.s390x", + sha256 = "261a5aee8fd8417bdb0b629b7ae4141cec92de79d32b45982c66cc82878f3175", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/dbus-libs-1.14.10-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/261a5aee8fd8417bdb0b629b7ae4141cec92de79d32b45982c66cc82878f3175", + ], +) + +rpm( + name = "dbus-libs-1__1.14.10-5.el10.x86_64", + sha256 = "7cd5d99568a89ef7100ae60d44aa270cbf5882e95cbc8f43497696f81c664284", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dbus-libs-1.14.10-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7cd5d99568a89ef7100ae60d44aa270cbf5882e95cbc8f43497696f81c664284", + ], +) + +rpm( + name = "device-mapper-10__1.02.210-2.el10.aarch64", + sha256 = "5f304e80a178f73ab39509e1f44d35931d2bbb908b4c701d5729c60843ab6147", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/device-mapper-1.02.210-2.el10.aarch64.rpm", + ], +) + +rpm( + name = "device-mapper-10__1.02.210-2.el10.s390x", + sha256 = "47cc9a17d39ea84ee09481ee09b2d7bc1c21dceab3cb9b9e8eb265d457bfe47b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/device-mapper-1.02.210-2.el10.s390x.rpm", + ], +) + +rpm( + name = "device-mapper-10__1.02.210-2.el10.x86_64", + sha256 = "2293f9c575a49b37a8d4c8551da129a8f8fc9ac169e20c3a0e5468f1dd2d51ff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.210-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "device-mapper-9__1.02.202-6.el9.x86_64", + sha256 = "0bf0cd224f72b8c6f3747d8c8d053418b13ff819601cc1293233b31e3a01998b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.202-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0bf0cd224f72b8c6f3747d8c8d053418b13ff819601cc1293233b31e3a01998b", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.aarch64", + sha256 = "3e2ab355c84e3c552f0c801bcf2abfa52d303c8362e64ee1a1b8349ff5de4e58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-1.02.206-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3e2ab355c84e3c552f0c801bcf2abfa52d303c8362e64ee1a1b8349ff5de4e58", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.s390x", + sha256 = "ba1c1a6f529a1700b2c7257baf88ab421770ea2c760889bc74d1e0372ecf6ea8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-1.02.206-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ba1c1a6f529a1700b2c7257baf88ab421770ea2c760889bc74d1e0372ecf6ea8", + ], +) + +rpm( + name = "device-mapper-9__1.02.206-2.el9.x86_64", + sha256 = "dca7b6ad60c556111c6a2ab198fe7fa802cafb2733183cce831135fedad8a7e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-1.02.206-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dca7b6ad60c556111c6a2ab198fe7fa802cafb2733183cce831135fedad8a7e0", + ], +) + +rpm( + name = "device-mapper-libs-10__1.02.210-2.el10.aarch64", + sha256 = "36844cc162ec8f9e19ba5cd8fa3e74f6f25a7dd0fc31c7295a6ab18815026e05", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.210-2.el10.aarch64.rpm", + ], +) + +rpm( + name = "device-mapper-libs-10__1.02.210-2.el10.s390x", + sha256 = "3c6935e62d32aef864f001e06885b4959700d889e01dc08d2e12acd0c2f43b6a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/device-mapper-libs-1.02.210-2.el10.s390x.rpm", + ], +) + +rpm( + name = "device-mapper-libs-10__1.02.210-2.el10.x86_64", + sha256 = "a8c80a48e8089d0bd787971aa6f7ad6e6d9b8a0ad6cad672d6aae089493789d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.210-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.202-6.el9.x86_64", + sha256 = "8efb6c63cb8dfa44329e6f47cc1f4d97f727ea1b21c619a8cc1244769e692af9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.202-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8efb6c63cb8dfa44329e6f47cc1f4d97f727ea1b21c619a8cc1244769e692af9", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.aarch64", + sha256 = "935550e46fcdabb578ad5373e12f81ed0cadde85b5d7522b1e0d7171eb73c9de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.206-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/935550e46fcdabb578ad5373e12f81ed0cadde85b5d7522b1e0d7171eb73c9de", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.s390x", + sha256 = "61827b1539c7db88538c58fba2a0b95c8cc5ed0f1a696ab26b6acab4cf5c4e67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/device-mapper-libs-1.02.206-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/61827b1539c7db88538c58fba2a0b95c8cc5ed0f1a696ab26b6acab4cf5c4e67", + ], +) + +rpm( + name = "device-mapper-libs-9__1.02.206-2.el9.x86_64", + sha256 = "2b6ab8f98bed43e79f71d4ac2aeb2ff4d303497f04addbfff74bd2dd6ad71796", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.206-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2b6ab8f98bed43e79f71d4ac2aeb2ff4d303497f04addbfff74bd2dd6ad71796", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-44.el9.aarch64", + sha256 = "5345a2ebb787fd142fc056675bd657c15f124733c85958f40dac9512aebdd80a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/device-mapper-multipath-libs-0.8.7-44.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5345a2ebb787fd142fc056675bd657c15f124733c85958f40dac9512aebdd80a", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.8.7-44.el9.x86_64", + sha256 = "6b0c5ee67467eb2a0bb4cd3969878b6add9fe5f0e9dbfea4963e7d8ca239b17b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/device-mapper-multipath-libs-0.8.7-44.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6b0c5ee67467eb2a0bb4cd3969878b6add9fe5f0e9dbfea4963e7d8ca239b17b", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.9.9-15.el10.aarch64", + sha256 = "14a7c7b2affa61a420527a77beba4b9968269b42671ef5bd0a690f11dd3241c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/device-mapper-multipath-libs-0.9.9-15.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/14a7c7b2affa61a420527a77beba4b9968269b42671ef5bd0a690f11dd3241c8", + ], +) + +rpm( + name = "device-mapper-multipath-libs-0__0.9.9-15.el10.x86_64", + sha256 = "e88082ce08b8067cd35fd27daadddd11bd35d55be78f4e3985eb3074c52ef464", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/device-mapper-multipath-libs-0.9.9-15.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e88082ce08b8067cd35fd27daadddd11bd35d55be78f4e3985eb3074c52ef464", + ], +) + +rpm( + name = "diffutils-0__3.10-8.el10.aarch64", + sha256 = "d06031d2cd612618343d29186bc873cafd52c9e71efae6d04dcb494de2b53b58", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/diffutils-3.10-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d06031d2cd612618343d29186bc873cafd52c9e71efae6d04dcb494de2b53b58", + ], +) + +rpm( + name = "diffutils-0__3.10-8.el10.s390x", + sha256 = "4668ee01492723f3a4fd094ff49ef2485ab3f17d1e30b19103a70e4b24a7c3e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/diffutils-3.10-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4668ee01492723f3a4fd094ff49ef2485ab3f17d1e30b19103a70e4b24a7c3e2", + ], +) + +rpm( + name = "diffutils-0__3.10-8.el10.x86_64", + sha256 = "96882ec03cfc01ae557f0ec547fb8d346179eb705c899bec0533eafda7c1bd80", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/diffutils-3.10-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/96882ec03cfc01ae557f0ec547fb8d346179eb705c899bec0533eafda7c1bd80", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.aarch64", + sha256 = "4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/diffutils-3.7-12.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4fea2be2558981a55a569cc7b93f17afce86bba830ebce32a0aa320e4759293e", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.s390x", + sha256 = "e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/diffutils-3.7-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e0f62f72c6d24e0507fa16c23bb74ece2704aabfb902c3649c57dad090f0c1ae", + ], +) + +rpm( + name = "diffutils-0__3.7-12.el9.x86_64", + sha256 = "fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/diffutils-3.7-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fdebefc46badf2e700e00582041a0e5f5183dd4fdc04badfe47c91f030cea0ce", + ], +) + +rpm( + name = "dmidecode-1__3.6-1.el9.x86_64", + sha256 = "e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e06daab6e4f008799ac56a8ff51e51e2333d070bb253fc4506cd106e14657a87", + ], +) + +rpm( + name = "dmidecode-1__3.6-2.el9.aarch64", + sha256 = "800b4e874e52f2d181eccb438ac2ef82185b938f67c80e65e72e1004df9fa575", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/dmidecode-3.6-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/800b4e874e52f2d181eccb438ac2ef82185b938f67c80e65e72e1004df9fa575", + ], +) + +rpm( + name = "dmidecode-1__3.6-2.el9.x86_64", + sha256 = "11bdceab038ffa793efd223db04703bbac90d65c057831e83bc5380e6a16e959", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11bdceab038ffa793efd223db04703bbac90d65c057831e83bc5380e6a16e959", + ], +) + +rpm( + name = "dmidecode-1__3.6-5.el10.aarch64", + sha256 = "381d5765cc5b1346f47dea4818c013bc308eb2cd9a76a9a3c4046a6982910956", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/dmidecode-3.6-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/381d5765cc5b1346f47dea4818c013bc308eb2cd9a76a9a3c4046a6982910956", + ], +) + +rpm( + name = "dmidecode-1__3.6-5.el10.x86_64", + sha256 = "332cfc77ea06aab27c93c1cf2382e50bf62ddad534c526795083a98ec10668c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/dmidecode-3.6-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/332cfc77ea06aab27c93c1cf2382e50bf62ddad534c526795083a98ec10668c8", + ], +) + +rpm( + name = "duktape-0__2.7.0-10.el10.aarch64", + sha256 = "c390a43273231fec4a25199690e0106268e3eb46a1592d4cd68cf56909efce5e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/duktape-2.7.0-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c390a43273231fec4a25199690e0106268e3eb46a1592d4cd68cf56909efce5e", + ], +) + +rpm( + name = "duktape-0__2.7.0-10.el10.s390x", + sha256 = "7cafae00eb1aa432b96c9fb9a6df9789d3ccf03515b7714c16ff8dcbaa7210d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/duktape-2.7.0-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7cafae00eb1aa432b96c9fb9a6df9789d3ccf03515b7714c16ff8dcbaa7210d6", + ], +) + +rpm( + name = "duktape-0__2.7.0-10.el10.x86_64", + sha256 = "23b7d2905723ed7adabe3362c54d54f0745c908029ec3be79bd881770d2c591a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/duktape-2.7.0-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/23b7d2905723ed7adabe3362c54d54f0745c908029ec3be79bd881770d2c591a", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.aarch64", + sha256 = "e764033c6a78fba5f7f5a2cfe59d627aa2b6ff4962dee494b33ed7de9ef0ef51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e764033c6a78fba5f7f5a2cfe59d627aa2b6ff4962dee494b33ed7de9ef0ef51", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.s390x", + sha256 = "b9048f417885369956a1668e204ca2499e2d46b2c61f62a34cb8caa7797e2ff1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b9048f417885369956a1668e204ca2499e2d46b2c61f62a34cb8caa7797e2ff1", + ], +) + +rpm( + name = "e2fsprogs-0__1.46.5-8.el9.x86_64", + sha256 = "a0b4500adf6c74516aeeb6aa2bf08a5a20508fc7ad4d241c7e686110abe17dbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0b4500adf6c74516aeeb6aa2bf08a5a20508fc7ad4d241c7e686110abe17dbe", + ], +) + +rpm( + name = "e2fsprogs-0__1.47.1-5.el10.aarch64", + sha256 = "fd5592fb0e7c1ae9ae023eafb55c7ae3ac71c94c44e1f498f1eb56c1940f3c40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/e2fsprogs-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fd5592fb0e7c1ae9ae023eafb55c7ae3ac71c94c44e1f498f1eb56c1940f3c40", + ], +) + +rpm( + name = "e2fsprogs-0__1.47.1-5.el10.s390x", + sha256 = "23803262e02ed5ad895284267c828bee4620aa498326a36c659a36dcd12bce9e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/e2fsprogs-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/23803262e02ed5ad895284267c828bee4620aa498326a36c659a36dcd12bce9e", + ], +) + +rpm( + name = "e2fsprogs-0__1.47.1-5.el10.x86_64", + sha256 = "736291b66f30c8ad543f5bed5375c92bc8a2e3bce1704a77f5b727ee844fb0dd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/e2fsprogs-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/736291b66f30c8ad543f5bed5375c92bc8a2e3bce1704a77f5b727ee844fb0dd", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.aarch64", + sha256 = "f8ec39d902f629559a263ff7238192887b8f7cc16815af5a4577b86627599919", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f8ec39d902f629559a263ff7238192887b8f7cc16815af5a4577b86627599919", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.s390x", + sha256 = "d279fad6453b9b5f90fc14181727594fb4aaf980b641976d049448ae978f27c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/e2fsprogs-libs-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d279fad6453b9b5f90fc14181727594fb4aaf980b641976d049448ae978f27c2", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.46.5-8.el9.x86_64", + sha256 = "28841ef6789b99559061c236b30e680bd045650bd22180133a3815cceb65cc46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/28841ef6789b99559061c236b30e680bd045650bd22180133a3815cceb65cc46", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.47.1-5.el10.aarch64", + sha256 = "e8b7d03d574363beaebef73048b8fe8461ed7b1206152b81eb0852f5c01d533b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e8b7d03d574363beaebef73048b8fe8461ed7b1206152b81eb0852f5c01d533b", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.47.1-5.el10.s390x", + sha256 = "25bb41764aefa735e891df10d2846b4c86f00f8eaabaf9a66acf08ebf290b700", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/e2fsprogs-libs-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/25bb41764aefa735e891df10d2846b4c86f00f8eaabaf9a66acf08ebf290b700", + ], +) + +rpm( + name = "e2fsprogs-libs-0__1.47.1-5.el10.x86_64", + sha256 = "d73c79a7bda1ce465707d82fa6b9777fcd2776301a6f6722ca323b4c9337c64b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d73c79a7bda1ce465707d82fa6b9777fcd2776301a6f6722ca323b4c9337c64b", + ], +) + +rpm( + name = "edk2-aarch64-0__20241117-8.el9.aarch64", + sha256 = "4d92929c0c6a83146955894e0a7da7b626d7872c2e339301f82cf4ecc24f21a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/edk2-aarch64-20241117-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d92929c0c6a83146955894e0a7da7b626d7872c2e339301f82cf4ecc24f21a0", + ], +) + +rpm( + name = "edk2-aarch64-0__20251114-4.el10.aarch64", + sha256 = "c45e0681ae57f12fc9cb5123c4a55d83b09906fc3d75f8cdb9f2e6b90e1e2f2c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/edk2-aarch64-20251114-4.el10.noarch.rpm", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-2.el9.x86_64", + sha256 = "a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172", + urls = ["https://storage.googleapis.com/builddeps/a64ed00fed189c823f533a013ce8f044a439066524fbb628b266fd898fe23172"], +) + +rpm( + name = "edk2-ovmf-0__20241117-8.el9.s390x", + sha256 = "6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/edk2-ovmf-20241117-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + ], +) + +rpm( + name = "edk2-ovmf-0__20241117-8.el9.x86_64", + sha256 = "6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20241117-8.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6275c2657d403be296076d7a42d62e9253d42cde571f955126db728e339bab23", + ], +) + +rpm( + name = "edk2-ovmf-0__20251114-4.el10.s390x", + sha256 = "1e14d4051f43685a32596907775a33a6e2c94b7ea49d6779ea989a5db517edbf", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/edk2-ovmf-20251114-4.el10.noarch.rpm", + ], +) + +rpm( + name = "edk2-ovmf-0__20251114-4.el10.x86_64", + sha256 = "1e14d4051f43685a32596907775a33a6e2c94b7ea49d6779ea989a5db517edbf", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/edk2-ovmf-20251114-4.el10.noarch.rpm", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el10.aarch64", + sha256 = "280b20ad99ef6a5097776c729d7b7ccc679d9eb4c977d32ee92af4641a8e745d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.194-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/280b20ad99ef6a5097776c729d7b7ccc679d9eb4c977d32ee92af4641a8e745d", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el10.s390x", + sha256 = "70da3d5d468afd29b27733d38e61b79ebeee2de0e75c5f11b9edbd5e151aa4fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-debuginfod-client-0.194-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/70da3d5d468afd29b27733d38e61b79ebeee2de0e75c5f11b9edbd5e151aa4fe", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el10.x86_64", + sha256 = "5ac0c4084d431eda2da1db7698d10d62195ec03f44e25755f4d6b8133d6606e6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.194-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5ac0c4084d431eda2da1db7698d10d62195ec03f44e25755f4d6b8133d6606e6", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el9.aarch64", + sha256 = "745a3f1dec43e34bad7ac3677472a57dd98a293bb5ed6d42c2a423163ae78b9f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.194-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/745a3f1dec43e34bad7ac3677472a57dd98a293bb5ed6d42c2a423163ae78b9f", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el9.s390x", + sha256 = "fb52d62ad9e8477833a5912bba1cccd9d9972ee7fa88c31b4d9867e324000699", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-debuginfod-client-0.194-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fb52d62ad9e8477833a5912bba1cccd9d9972ee7fa88c31b4d9867e324000699", + ], +) + +rpm( + name = "elfutils-debuginfod-client-0__0.194-1.el9.x86_64", + sha256 = "40de0a46e149c1ed6bb79a19191f7279ebf429f05ee9693f6185ed8b56370caf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.194-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/40de0a46e149c1ed6bb79a19191f7279ebf429f05ee9693f6185ed8b56370caf", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el10.aarch64", + sha256 = "35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.194-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el10.s390x", + sha256 = "35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-default-yama-scope-0.194-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el10.x86_64", + sha256 = "35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.194-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/35f822daa4ecdce5dc624e6875d3b55491f8b5e0696d070672d2678036ad2ad0", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el9.aarch64", + sha256 = "6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el9.s390x", + sha256 = "6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + ], +) + +rpm( + name = "elfutils-default-yama-scope-0__0.194-1.el9.x86_64", + sha256 = "6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.194-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/6d94e5a11b829a2e7aa57e28fc3bfd727a77e750e043583236b20f07544e5e3a", + ], +) + +rpm( + name = "elfutils-libelf-0__0.192-5.el9.x86_64", + sha256 = "be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.192-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be527a162e856c28841d407aa2b4845ef1095f6730f71602da3782009f956ba5", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el10.aarch64", + sha256 = "97c0ad3cb708215214b2c79fce3e840eeb023e751a679c8da23b0ac24c9286b4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-libelf-0.194-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/97c0ad3cb708215214b2c79fce3e840eeb023e751a679c8da23b0ac24c9286b4", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el10.s390x", + sha256 = "01795d511317f3717a7f837bf9e0ac92d5db4da33eb1fd5b93987313f6638fcf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-libelf-0.194-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/01795d511317f3717a7f837bf9e0ac92d5db4da33eb1fd5b93987313f6638fcf", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el10.x86_64", + sha256 = "1bfacc8e5b007821e21f82b50aa1ab3f1a2959fd4f3361c277e75db43bd69284", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.194-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1bfacc8e5b007821e21f82b50aa1ab3f1a2959fd4f3361c277e75db43bd69284", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el9.aarch64", + sha256 = "ac9cc272659364f6b60f3754b25fedb2e9aa1f8a3fd91eebde5f4e75ecc8510e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libelf-0.194-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ac9cc272659364f6b60f3754b25fedb2e9aa1f8a3fd91eebde5f4e75ecc8510e", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el9.s390x", + sha256 = "d1ba973a8569fff460f72ae253a3c05d7a6592a9025bf998a5388eefeb7cf2b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libelf-0.194-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d1ba973a8569fff460f72ae253a3c05d7a6592a9025bf998a5388eefeb7cf2b5", + ], +) + +rpm( + name = "elfutils-libelf-0__0.194-1.el9.x86_64", + sha256 = "c59294fcfe3a216267078a010f4cf7e0d191fd1a222f19bf3036ba1b0ce40e1f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libelf-0.194-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c59294fcfe3a216267078a010f4cf7e0d191fd1a222f19bf3036ba1b0ce40e1f", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el10.aarch64", + sha256 = "ca36cc469aae95470c33e08087f5176615ebe42453e06695c8897da87c8e6185", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/elfutils-libs-0.194-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ca36cc469aae95470c33e08087f5176615ebe42453e06695c8897da87c8e6185", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el10.s390x", + sha256 = "f421c5e17662e93a3f0ba2d4511a206c4ee08c7bf2f7ee40e59d8c803c7c6097", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/elfutils-libs-0.194-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f421c5e17662e93a3f0ba2d4511a206c4ee08c7bf2f7ee40e59d8c803c7c6097", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el10.x86_64", + sha256 = "6a6cce578a25f607ab0c593d889c9c52487f6c9019d3f9b4c3ebc2edb5dbbc89", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/elfutils-libs-0.194-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6a6cce578a25f607ab0c593d889c9c52487f6c9019d3f9b4c3ebc2edb5dbbc89", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el9.aarch64", + sha256 = "78b614ff56d76403679094de597ce56f27a776ab8ed40ef399a0d022976a35b2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/elfutils-libs-0.194-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/78b614ff56d76403679094de597ce56f27a776ab8ed40ef399a0d022976a35b2", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el9.s390x", + sha256 = "a7bcd615b80395cd0b88db9406cd063273945972033ebccff541e1fa2d95699b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/elfutils-libs-0.194-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a7bcd615b80395cd0b88db9406cd063273945972033ebccff541e1fa2d95699b", + ], +) + +rpm( + name = "elfutils-libs-0__0.194-1.el9.x86_64", + sha256 = "432d99395a7f57c13a61b3cd987205714a5f83eb95cec3c9e344e1abab5a196e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/elfutils-libs-0.194-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/432d99395a7f57c13a61b3cd987205714a5f83eb95cec3c9e344e1abab5a196e", + ], +) + +rpm( + name = "expat-0__2.5.0-4.el9.x86_64", + sha256 = "360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/360ed994ea2af5b3a7f37694dfdf2249d97e5e5ec2492c9223a2aec72ff8f480", + ], +) + +rpm( + name = "expat-0__2.5.0-6.el9.aarch64", + sha256 = "01f1ff2194173775ebbc1d00934152585a259c9a852e987e672d1810384e4786", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/expat-2.5.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01f1ff2194173775ebbc1d00934152585a259c9a852e987e672d1810384e4786", + ], +) + +rpm( + name = "expat-0__2.5.0-6.el9.s390x", + sha256 = "6e85c05c7eacb3d964af391a67898919239b973d8094c442b917ea450391d25d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/expat-2.5.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6e85c05c7eacb3d964af391a67898919239b973d8094c442b917ea450391d25d", + ], +) + +rpm( + name = "expat-0__2.5.0-6.el9.x86_64", + sha256 = "39cffc5a3a75ccd06d4214f99e3d3a89dd79bee3532175ae38d37c14aad529fc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/expat-2.5.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/39cffc5a3a75ccd06d4214f99e3d3a89dd79bee3532175ae38d37c14aad529fc", + ], +) + +rpm( + name = "expat-0__2.7.3-1.el10.aarch64", + sha256 = "9d093b8a289a4fbac304097d8d628744fa0ea88f3a50a64c4ee1c657cb42a5c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/expat-2.7.3-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9d093b8a289a4fbac304097d8d628744fa0ea88f3a50a64c4ee1c657cb42a5c8", + ], +) + +rpm( + name = "expat-0__2.7.3-1.el10.s390x", + sha256 = "5fce4ab3c8a5e188f560bdbac6f780e36af2e71210f765153ee2c9328b8a2a5f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/expat-2.7.3-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5fce4ab3c8a5e188f560bdbac6f780e36af2e71210f765153ee2c9328b8a2a5f", + ], +) + +rpm( + name = "expat-0__2.7.3-1.el10.x86_64", + sha256 = "e00c0876574daba5e70a3e2c86e21823fae1269b7a123d08ff5493a59dde3f36", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/expat-2.7.3-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e00c0876574daba5e70a3e2c86e21823fae1269b7a123d08ff5493a59dde3f36", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.aarch64", + sha256 = "c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/filesystem-3.16-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c20f1ab9760a8ba5f2d9cb37d7e8fa27f49f91a21a46fe7ad648ff6caf237013", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.s390x", + sha256 = "67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/filesystem-3.16-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a733fe124cda9da89f6946757800c0fe73b918a477adcf67dfbef15c995729", + ], +) + +rpm( + name = "filesystem-0__3.16-5.el9.x86_64", + sha256 = "da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/filesystem-3.16-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/da7750fc31248ecc606016391c3f570e1abe7422f812b29a49d830c71884e6dc", + ], +) + +rpm( + name = "filesystem-0__3.18-17.el10.aarch64", + sha256 = "6c4d8ecaf8b45c8d7d588c6ebe368a77805ed84830d0bc3b38e4c8e499514aba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/filesystem-3.18-17.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6c4d8ecaf8b45c8d7d588c6ebe368a77805ed84830d0bc3b38e4c8e499514aba", + ], +) + +rpm( + name = "filesystem-0__3.18-17.el10.s390x", + sha256 = "087e8def18ded2dd2a96f7a4292a3654704807d05f4424c43c0f5c873d7f9cb5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/filesystem-3.18-17.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/087e8def18ded2dd2a96f7a4292a3654704807d05f4424c43c0f5c873d7f9cb5", + ], +) + +rpm( + name = "filesystem-0__3.18-17.el10.x86_64", + sha256 = "bcfb13f67c813d645f47e0a56d4bb76c0863deaf64ba93be8e0c30eecdc1e45e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/filesystem-3.18-17.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bcfb13f67c813d645f47e0a56d4bb76c0863deaf64ba93be8e0c30eecdc1e45e", + ], +) + +rpm( + name = "findutils-1__4.10.0-5.el10.aarch64", + sha256 = "f0e4db5b6e713c75e097e80218c592de4e6cb85d353f0933f64714df11b178b2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/findutils-4.10.0-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f0e4db5b6e713c75e097e80218c592de4e6cb85d353f0933f64714df11b178b2", + ], +) + +rpm( + name = "findutils-1__4.10.0-5.el10.s390x", + sha256 = "da20bdfeb9053ac3a1689d2ee2281298ee119175a8d486e4bb3eed1bc2857a94", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/findutils-4.10.0-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/da20bdfeb9053ac3a1689d2ee2281298ee119175a8d486e4bb3eed1bc2857a94", + ], +) + +rpm( + name = "findutils-1__4.10.0-5.el10.x86_64", + sha256 = "c646c7c108a007d62792aa66e0bc9326312089a0f8bc1c9e9300b301fd2e4276", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/findutils-4.10.0-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c646c7c108a007d62792aa66e0bc9326312089a0f8bc1c9e9300b301fd2e4276", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.aarch64", + sha256 = "de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/findutils-4.8.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/de9914a265a46cc629f7423ef5f53deefc7044a9c46acb941d9ca0dc6bfc73f8", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.s390x", + sha256 = "627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/findutils-4.8.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/627204a8e5a95bde190b1755dacfd72ffe66862438a6e9878d0d0fec90cf5097", + ], +) + +rpm( + name = "findutils-1__4.8.0-7.el9.x86_64", + sha256 = "393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/findutils-4.8.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/393fc651dddb826521d528d78819515c09b93e551701cafb62b672c2c4701d04", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-3.el10.x86_64", + sha256 = "d1314bd57fd4e4bb2030519cd79ab562f8ce64866d51827cd4e0f73c190a6c9c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/fips-provider-next-1.2.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d1314bd57fd4e4bb2030519cd79ab562f8ce64866d51827cd4e0f73c190a6c9c", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-7.el9.aarch64", + sha256 = "e8c9fcd61b0ade060233a0c9755b8ca59705838844bddebef0ab5cd48fbaab9e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/fips-provider-next-1.2.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e8c9fcd61b0ade060233a0c9755b8ca59705838844bddebef0ab5cd48fbaab9e", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-7.el9.s390x", + sha256 = "0f1f863a00b32b0517c785c0b68f839426cae4c087fde39c8c5d91ab3cdf2ee4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/fips-provider-next-1.2.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0f1f863a00b32b0517c785c0b68f839426cae4c087fde39c8c5d91ab3cdf2ee4", + ], +) + +rpm( + name = "fips-provider-next-0__1.2.0-7.el9.x86_64", + sha256 = "1f78c1d7f88f2494994d8735676c2afd529606c8f59c2a7b830e993831b6ce2c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fips-provider-next-1.2.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f78c1d7f88f2494994d8735676c2afd529606c8f59c2a7b830e993831b6ce2c", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.s390x", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fonts-filesystem-1__2.0.5-7.el9.1.x86_64", + sha256 = "c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fonts-filesystem-2.0.5-7.el9.1.noarch.rpm", + "https://storage.googleapis.com/builddeps/c79fa96aa7fb447975497dd50c94002ee73d01171343f8ee14032d06adb58a92", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.s390x", + sha256 = "4f5532023b6272eb79706c080fce40a5f083398820bfbbfaa7116243c6a93bc0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4f5532023b6272eb79706c080fce40a5f083398820bfbbfaa7116243c6a93bc0", + ], +) + +rpm( + name = "fuse-0__2.9.9-17.el9.x86_64", + sha256 = "8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8cb98fe8a2bd6f4c39661c12f0daccae258acadcf3d444136c517fe2f46c421c", + ], +) + +rpm( + name = "fuse-0__2.9.9-25.el10.s390x", + sha256 = "6d0dd7c5dc828fc93d96ff215d90324f8efd9e88a9512081f4cf6d6323387a2f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse-2.9.9-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d0dd7c5dc828fc93d96ff215d90324f8efd9e88a9512081f4cf6d6323387a2f", + ], +) + +rpm( + name = "fuse-0__2.9.9-25.el10.x86_64", + sha256 = "0707885f1d8074b5d36d85b4c60a68a10867894b379225302a94f3d54b6d4934", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse-2.9.9-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0707885f1d8074b5d36d85b4c60a68a10867894b379225302a94f3d54b6d4934", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.s390x", + sha256 = "18de6b2985152ae3b3f1e72d90591543362c09e71ccb749a3adb63099c37496e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-common-3.10.2-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18de6b2985152ae3b3f1e72d90591543362c09e71ccb749a3adb63099c37496e", + ], +) + +rpm( + name = "fuse-common-0__3.10.2-9.el9.x86_64", + sha256 = "ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-common-3.10.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad4960b97840017eb3996e150d59a7fe4158da8bb88c178bc2acc08c35772431", + ], +) + +rpm( + name = "fuse-common-0__3.16.2-5.el10.s390x", + sha256 = "86983857ec56f535e57283f302d9f344a348b55a9dc5e6e81ef388b397a14e2a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse-common-3.16.2-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/86983857ec56f535e57283f302d9f344a348b55a9dc5e6e81ef388b397a14e2a", + ], +) + +rpm( + name = "fuse-common-0__3.16.2-5.el10.x86_64", + sha256 = "eecc51472bf7713a97821ae02898b6811752aa513aa40dc5d380459fce590a40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse-common-3.16.2-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eecc51472bf7713a97821ae02898b6811752aa513aa40dc5d380459fce590a40", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.aarch64", + sha256 = "5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/fuse-libs-2.9.9-17.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5cfdb796cb825686e224aec5ab1752cccd7416b5078f860246e7210cdee0e57a", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.s390x", + sha256 = "89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/fuse-libs-2.9.9-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/89b568150669f246789540bb83b24db22821a1b5d761881e591a67643c2aaeaa", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-17.el9.x86_64", + sha256 = "a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/fuse-libs-2.9.9-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a164f06f802c04e6d3091d57150362b26a5ec3ab85ac612fba5dc9a068e77ac5", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-25.el10.s390x", + sha256 = "65b86c79a139100f7d61acbef829a0a345c70316988cd7eb0f573f0c57e98647", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse-libs-2.9.9-25.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/65b86c79a139100f7d61acbef829a0a345c70316988cd7eb0f573f0c57e98647", + ], +) + +rpm( + name = "fuse-libs-0__2.9.9-25.el10.x86_64", + sha256 = "a8b094d60b9a7f83a84d8c7b0cdeed565be044dc2ecd170965b2c55ee4fa40f7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse-libs-2.9.9-25.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a8b094d60b9a7f83a84d8c7b0cdeed565be044dc2ecd170965b2c55ee4fa40f7", + ], +) + +rpm( + name = "fuse3-libs-0__3.16.2-5.el10.aarch64", + sha256 = "919f632731bc755d7c9c81d6faebb3bb703d7460ed72fdd65c453541d3999a72", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/fuse3-libs-3.16.2-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/919f632731bc755d7c9c81d6faebb3bb703d7460ed72fdd65c453541d3999a72", + ], +) + +rpm( + name = "fuse3-libs-0__3.16.2-5.el10.s390x", + sha256 = "68501eaef0f538ca7e3731a4968f308ced9ae9c2a1b3b4d310890dd86b1843c5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/fuse3-libs-3.16.2-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/68501eaef0f538ca7e3731a4968f308ced9ae9c2a1b3b4d310890dd86b1843c5", + ], +) + +rpm( + name = "fuse3-libs-0__3.16.2-5.el10.x86_64", + sha256 = "3482d8de135a306e94f7a35c1f8315b4e6acb699c1871ef28ddb02dc0fbdf7d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/fuse3-libs-3.16.2-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3482d8de135a306e94f7a35c1f8315b4e6acb699c1871ef28ddb02dc0fbdf7d6", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.aarch64", + sha256 = "656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gawk-5.1.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/656d23c583b0705eaad75cffbe880f2ec39c7d5b7a756c6a8853c2977eec331b", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.s390x", + sha256 = "acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gawk-5.1.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/acad833571094a674d4073b4e747e15d373e3a8b06a7e7e8aecfec6fd4860c0e", + ], +) + +rpm( + name = "gawk-0__5.1.0-6.el9.x86_64", + sha256 = "6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gawk-5.1.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e6d77b76b1e89fe6f012cdc16111bea35eb4ceedac5040e5d81b5a066429af8", + ], +) + +rpm( + name = "gawk-0__5.3.0-6.el10.aarch64", + sha256 = "16d7b639936dd4c8c977cd5b2ee3f5a02d3235954f67aa7485765a6b146683de", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gawk-5.3.0-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/16d7b639936dd4c8c977cd5b2ee3f5a02d3235954f67aa7485765a6b146683de", + ], +) + +rpm( + name = "gawk-0__5.3.0-6.el10.s390x", + sha256 = "0c918acd6aed7bbe461611db414bed4c1871b9ee9e4e5369460e016eb0c6bcbb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gawk-5.3.0-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c918acd6aed7bbe461611db414bed4c1871b9ee9e4e5369460e016eb0c6bcbb", + ], +) + +rpm( + name = "gawk-0__5.3.0-6.el10.x86_64", + sha256 = "ba59a3a4ee8741ed4e0c2517086164a76dc85309947f8b5ca7884f05c08ed959", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gawk-5.3.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ba59a3a4ee8741ed4e0c2517086164a76dc85309947f8b5ca7884f05c08ed959", + ], +) + +rpm( + name = "gcc-0__11.5.0-14.el9.aarch64", + sha256 = "ab3bb73a4443fdef60969ae4d57cce670a88e4c73d8a758111bf713037eef286", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gcc-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ab3bb73a4443fdef60969ae4d57cce670a88e4c73d8a758111bf713037eef286", + ], +) + +rpm( + name = "gcc-0__11.5.0-14.el9.s390x", + sha256 = "0c816944b06c65f19d8ed958416554eee0f128f38bfda9f0951926917fafd8de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gcc-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0c816944b06c65f19d8ed958416554eee0f128f38bfda9f0951926917fafd8de", + ], +) + +rpm( + name = "gcc-0__11.5.0-14.el9.x86_64", + sha256 = "c0d0eb5639d870197ccb4cee6fbbb8bfc8e0038983285a9660369dc9651f0089", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gcc-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c0d0eb5639d870197ccb4cee6fbbb8bfc8e0038983285a9660369dc9651f0089", + ], +) + +rpm( + name = "gcc-0__14.3.1-4.4.el10.aarch64", + sha256 = "fe754a0edcf74767003728f0f1b2ba99bcd070a07e3f68785886272abd40818d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/gcc-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "gcc-0__14.3.1-4.4.el10.s390x", + sha256 = "227501eb019e43934d83194f34ade61c6f0fee7ffbf6bc5e75aeb9035375965a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gcc-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "gcc-0__14.3.1-4.4.el10.x86_64", + sha256 = "e93acc10b23ee2b9ddef5e593307cdf68ebc72551be03057fa11f44095675803", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/gcc-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "gdbm-1__1.23-14.el10.aarch64", + sha256 = "0db16e24bf3d297cc3543842d63143f583de6ee157806b0a3dc51b5740a2722f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gdbm-1.23-14.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0db16e24bf3d297cc3543842d63143f583de6ee157806b0a3dc51b5740a2722f", + ], +) + +rpm( + name = "gdbm-1__1.23-14.el10.s390x", + sha256 = "95c556f933af240938736727df962465928b7a556a8586b01e90c647facc2839", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gdbm-1.23-14.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/95c556f933af240938736727df962465928b7a556a8586b01e90c647facc2839", + ], +) + +rpm( + name = "gdbm-1__1.23-14.el10.x86_64", + sha256 = "159a6f1affc65d960c11a8726472699f693cec90a54a0862ad8340d0968f4838", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gdbm-1.23-14.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/159a6f1affc65d960c11a8726472699f693cec90a54a0862ad8340d0968f4838", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.aarch64", + sha256 = "69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gdbm-libs-1.23-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/69754627d810b252c6202f2ef8765ca39b9c8a0b0fd6da0325a9e492dbf88f96", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.s390x", + sha256 = "29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gdbm-libs-1.23-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/29c9ab72536be72b9c78285ef12117633cf3e2dfd18757bcf7587cd94eb9e055", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-1.el9.x86_64", + sha256 = "cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gdbm-libs-1.23-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cada66331cc07a4f8a0701fc1ad13c346913a0d6f913e35c0257a68b6a1e6ce0", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-14.el10.aarch64", + sha256 = "b46628d13eba77191aad6905de11fff87d6f45e52168e5b5365cb1f62078fd4d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gdbm-libs-1.23-14.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b46628d13eba77191aad6905de11fff87d6f45e52168e5b5365cb1f62078fd4d", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-14.el10.s390x", + sha256 = "38f1f8006c38c8fffa7f298bf3a143943f8611acaee7aad8200edc6bcde534aa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gdbm-libs-1.23-14.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/38f1f8006c38c8fffa7f298bf3a143943f8611acaee7aad8200edc6bcde534aa", + ], +) + +rpm( + name = "gdbm-libs-1__1.23-14.el10.x86_64", + sha256 = "b5f678293062eb1fcba572501d62e215dccfd222c26f5b76d9424f3c188cedee", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gdbm-libs-1.23-14.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b5f678293062eb1fcba572501d62e215dccfd222c26f5b76d9424f3c188cedee", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.aarch64", + sha256 = "66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/66387c45fa58eea0120e0cdfa27ffb2ca4eda1cb9f157be7af23503f4b42fdab", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.s390x", + sha256 = "369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/369ef71c5a7c3337079cf9a25647dc1835a35a99ed3bbb3a028dbd49366db910", + ], +) + +rpm( + name = "gettext-0__0.21-8.el9.x86_64", + sha256 = "1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f1f79d426dd3d6c3c39a45fa9af8bbf37e2547a50136b7c30b76c1bfe5a487f", + ], +) + +rpm( + name = "gettext-0__0.22.5-6.el10.aarch64", + sha256 = "27cba50dbb800aaf7f46bffa04003338c797472b334b08344b3633a60e0f1755", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/27cba50dbb800aaf7f46bffa04003338c797472b334b08344b3633a60e0f1755", + ], +) + +rpm( + name = "gettext-0__0.22.5-6.el10.s390x", + sha256 = "02ab0b35769a517e0a2c255c4e4f23cfb9f661179355f81687a2d5b5198289d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/02ab0b35769a517e0a2c255c4e4f23cfb9f661179355f81687a2d5b5198289d6", + ], +) + +rpm( + name = "gettext-0__0.22.5-6.el10.x86_64", + sha256 = "19430ae2b77a7e4637bfcb70501748a27011f6c1e144a195b7046ecd9e6a96b4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/19430ae2b77a7e4637bfcb70501748a27011f6c1e144a195b7046ecd9e6a96b4", + ], +) + +rpm( + name = "gettext-envsubst-0__0.22.5-6.el10.aarch64", + sha256 = "ae3a179fff748702f7ad12bc2d8e58910d724a1d42f4cafb22af8ddfaf2eb216", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-envsubst-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae3a179fff748702f7ad12bc2d8e58910d724a1d42f4cafb22af8ddfaf2eb216", + ], +) + +rpm( + name = "gettext-envsubst-0__0.22.5-6.el10.s390x", + sha256 = "a9f2345a5875671c4d3a14ae491ea02b535d52ecb6ff65813aba392660d96065", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-envsubst-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a9f2345a5875671c4d3a14ae491ea02b535d52ecb6ff65813aba392660d96065", + ], +) + +rpm( + name = "gettext-envsubst-0__0.22.5-6.el10.x86_64", + sha256 = "f7b90e29f350fd67a2425a9d06c404371f1bbcdc43727452bf27c6c855d9eccf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-envsubst-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f7b90e29f350fd67a2425a9d06c404371f1bbcdc43727452bf27c6c855d9eccf", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.aarch64", + sha256 = "f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gettext-libs-0.21-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f979fa61b8cb97a3f26dec4844a3ad978cf85a85e9ccccac8f0698c04c7849dc", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.s390x", + sha256 = "d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gettext-libs-0.21-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d55003d65db061381fa5ab04e16049451ead0d15ec5b19ac87269c453c50987f", + ], +) + +rpm( + name = "gettext-libs-0__0.21-8.el9.x86_64", + sha256 = "5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gettext-libs-0.21-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a1780e9d485c014b95802531aecd7bf8593daa0af24646a74ab335cddfb40fa", + ], +) + +rpm( + name = "gettext-libs-0__0.22.5-6.el10.aarch64", + sha256 = "460e9216dbdd5a5a42bcd49162639e5515020a1caf9a246734ab7c19d5747b8e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-libs-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/460e9216dbdd5a5a42bcd49162639e5515020a1caf9a246734ab7c19d5747b8e", + ], +) + +rpm( + name = "gettext-libs-0__0.22.5-6.el10.s390x", + sha256 = "aebeafee7bc7b3513b5210039214447304f4734e8ba4e590cbf74cfe0fb04393", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-libs-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/aebeafee7bc7b3513b5210039214447304f4734e8ba4e590cbf74cfe0fb04393", + ], +) + +rpm( + name = "gettext-libs-0__0.22.5-6.el10.x86_64", + sha256 = "de538283e9cc0281d53e05c235905a9e5c64ad1ac2533afb915ba75052f540a3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-libs-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/de538283e9cc0281d53e05c235905a9e5c64ad1ac2533afb915ba75052f540a3", + ], +) + +rpm( + name = "gettext-runtime-0__0.22.5-6.el10.aarch64", + sha256 = "76d58cbcdddca202c4eecc30df7692d5f6e847f0ac233227349942b6f860a5da", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gettext-runtime-0.22.5-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/76d58cbcdddca202c4eecc30df7692d5f6e847f0ac233227349942b6f860a5da", + ], +) + +rpm( + name = "gettext-runtime-0__0.22.5-6.el10.s390x", + sha256 = "59a0988b7180c5b0c78c02b40c60f902f60d363beb3acc379c5d1ffd8fa6dfeb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gettext-runtime-0.22.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/59a0988b7180c5b0c78c02b40c60f902f60d363beb3acc379c5d1ffd8fa6dfeb", + ], +) + +rpm( + name = "gettext-runtime-0__0.22.5-6.el10.x86_64", + sha256 = "aec2ce3c3805190c65667c617e1ed100b65c251d16896819b0bc933ec3084ebf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gettext-runtime-0.22.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aec2ce3c3805190c65667c617e1ed100b65c251d16896819b0bc933ec3084ebf", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.s390x", + sha256 = "f5d013624d04c2f1ec232a59e46342b4c52688c29c2a43304e52456a63408667", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib-networking-2.68.3-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5d013624d04c2f1ec232a59e46342b4c52688c29c2a43304e52456a63408667", + ], +) + +rpm( + name = "glib-networking-0__2.68.3-3.el9.x86_64", + sha256 = "ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib-networking-2.68.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea106ccc142daf5016626cfe5c4f0a2d97e700ae7ad4780835e899897b63317f", + ], +) + +rpm( + name = "glib2-0__2.68.4-16.el9.x86_64", + sha256 = "793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib2-2.68.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/793cbb8b6f5885a3b8a501dd5e4c0fe19141c34beeb4410fbc680424ae02ed2d", + ], +) + +rpm( + name = "glib2-0__2.68.4-19.el9.aarch64", + sha256 = "5fc2f7510779708b553a13fc5f0de31fcfe384ce318295a8b9d3cc496b99905c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glib2-2.68.4-19.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5fc2f7510779708b553a13fc5f0de31fcfe384ce318295a8b9d3cc496b99905c", + ], +) + +rpm( + name = "glib2-0__2.68.4-19.el9.s390x", + sha256 = "eae096d247448db793b42cada5accb2176444752b1fe17560c8fc9135626de05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glib2-2.68.4-19.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/eae096d247448db793b42cada5accb2176444752b1fe17560c8fc9135626de05", + ], +) + +rpm( + name = "glib2-0__2.68.4-19.el9.x86_64", + sha256 = "3128523dc47f5fdea4633b0166544de8fbda27b03165265ec0b6d360a056b169", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glib2-2.68.4-19.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3128523dc47f5fdea4633b0166544de8fbda27b03165265ec0b6d360a056b169", + ], +) + +rpm( + name = "glib2-0__2.80.4-12.el10.aarch64", + sha256 = "6847ee0a0c10eecd66127502bcec4f9cab481827fb4ef206feea13a70ebdf132", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glib2-2.80.4-12.el10.aarch64.rpm", + ], +) + +rpm( + name = "glib2-0__2.80.4-12.el10.s390x", + sha256 = "da6a273e029cf3b589ea071a4a73cdf24fd25fa48d4877e6fcbe448a1f930b46", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glib2-2.80.4-12.el10.s390x.rpm", + ], +) + +rpm( + name = "glib2-0__2.80.4-12.el10.x86_64", + sha256 = "a0f85a2eb4072da3f617a915f32775f3084f11076a5f0cca73c9827eafb7259f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glib2-2.80.4-12.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-0__2.34-168.el9.x86_64", + sha256 = "e06212b1cac1d9fd9857a00ddefefe9fb9f406199cb84fdd1153589c15e16289", + urls = ["https://storage.googleapis.com/builddeps/e06212b1cac1d9fd9857a00ddefefe9fb9f406199cb84fdd1153589c15e16289"], +) + +rpm( + name = "glibc-0__2.34-256.el9.aarch64", + sha256 = "0f1f638935d5e83129505d0a4272caec7fbe0824c296f70f23821649dd6cb403", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0f1f638935d5e83129505d0a4272caec7fbe0824c296f70f23821649dd6cb403", + ], +) + +rpm( + name = "glibc-0__2.34-256.el9.s390x", + sha256 = "9e0b35e40f3a7ca86dd0598dbe4007cf60f61833cca386cd039ff531db1734ab", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9e0b35e40f3a7ca86dd0598dbe4007cf60f61833cca386cd039ff531db1734ab", + ], +) + +rpm( + name = "glibc-0__2.34-256.el9.x86_64", + sha256 = "faf54d1c3b0b1a14b97d019738221438b695823f35fdaa402996fabffddb9258", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/faf54d1c3b0b1a14b97d019738221438b695823f35fdaa402996fabffddb9258", + ], +) + +rpm( + name = "glibc-0__2.39-114.el10.aarch64", + sha256 = "557936b920a631712b048faf3344402318b9c90f54aad15e310d1bbbe83edb51", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-0__2.39-114.el10.s390x", + sha256 = "74d5e5a846d03aad14189f8e5bd80c822d02c39669b72c19697cf58c351dcfca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-0__2.39-114.el10.x86_64", + sha256 = "a7fe9a665fd25f878cbb677b6008a8014e3421a2ec6f49c43a9be6ab0526a69a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-common-0__2.34-168.el9.x86_64", + sha256 = "531650744909efd0284bf6c16a45dbaf455b214c0cac4197cf6d43e8c7d83af8", + urls = ["https://storage.googleapis.com/builddeps/531650744909efd0284bf6c16a45dbaf455b214c0cac4197cf6d43e8c7d83af8"], +) + +rpm( + name = "glibc-common-0__2.34-256.el9.aarch64", + sha256 = "007a480554685ca65e9e1e2f5235122368583ae7f7eb21c24a6021b2bd8fd37b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-common-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/007a480554685ca65e9e1e2f5235122368583ae7f7eb21c24a6021b2bd8fd37b", + ], +) + +rpm( + name = "glibc-common-0__2.34-256.el9.s390x", + sha256 = "ecdc7f4677e6f4b0d8474f97e7b26e3341bcb6c21a8295c9e4e1c6169ff8c41a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-common-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ecdc7f4677e6f4b0d8474f97e7b26e3341bcb6c21a8295c9e4e1c6169ff8c41a", + ], +) + +rpm( + name = "glibc-common-0__2.34-256.el9.x86_64", + sha256 = "702ad993520a48e430689147878b207ac8d3ab9e9bc0c4588cc522928510b5be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-common-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/702ad993520a48e430689147878b207ac8d3ab9e9bc0c4588cc522928510b5be", + ], +) + +rpm( + name = "glibc-common-0__2.39-114.el10.aarch64", + sha256 = "10afbad1cfcd4ecb81b9ce318b26a019fda848bf35b346b89ae1f25bf930863e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-common-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-common-0__2.39-114.el10.s390x", + sha256 = "cff86d74c2b95b100da2084c1eb20b16f37af19846df0157b284f7d47cdc4e93", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-common-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-common-0__2.39-114.el10.x86_64", + sha256 = "579ddb85fcb50d27e7ea0f496372d1428e9defe98a96dce85c8ddd7717dbc31b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-common-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-devel-0__2.34-256.el9.aarch64", + sha256 = "3b33e1208fff4e68cf6f2e5305f75aed494fc0874ab57b80ffc24ec283e294a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/glibc-devel-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3b33e1208fff4e68cf6f2e5305f75aed494fc0874ab57b80ffc24ec283e294a4", + ], +) + +rpm( + name = "glibc-devel-0__2.34-256.el9.s390x", + sha256 = "3af88161f384dd774aed59345e1a43a746adf1de0399867bbc314fc3a770ee70", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-devel-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3af88161f384dd774aed59345e1a43a746adf1de0399867bbc314fc3a770ee70", + ], +) + +rpm( + name = "glibc-devel-0__2.34-256.el9.x86_64", + sha256 = "5e8bee34e61a8322e6d9e79afd3eede04095d8e672b2fd5a3ebd6ea4a9c23620", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-devel-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5e8bee34e61a8322e6d9e79afd3eede04095d8e672b2fd5a3ebd6ea4a9c23620", + ], +) + +rpm( + name = "glibc-devel-0__2.39-114.el10.aarch64", + sha256 = "2918c6a9222413215b4440a7f1b006f0ad4e2c12cd4ab2b6a0becb3d4ca09ec9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/glibc-devel-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-devel-0__2.39-114.el10.s390x", + sha256 = "b3de42fdb58f49caa7f42f932d5daa91fcc603329609313534bc32c2ba19cd09", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/glibc-devel-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-devel-0__2.39-114.el10.x86_64", + sha256 = "c632f2f80421b746a69851a9a95fb8e51301cf931ad084aba65ca139b6d63721", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/glibc-devel-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-headers-0__2.34-256.el9.s390x", + sha256 = "2088b2430ca5482a79f8706b6422eea7b625f11898e673f83750941b13f22ee7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/glibc-headers-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2088b2430ca5482a79f8706b6422eea7b625f11898e673f83750941b13f22ee7", + ], +) + +rpm( + name = "glibc-headers-0__2.34-256.el9.x86_64", + sha256 = "08a447365679b957999efc5d0aabc7f683b7fc72461bfa4046189fda7e906889", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glibc-headers-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/08a447365679b957999efc5d0aabc7f683b7fc72461bfa4046189fda7e906889", + ], +) + +rpm( + name = "glibc-langpack-en-0__2.34-256.el9.aarch64", + sha256 = "61a01121bb7608375077fc661e031916876c69ed665b19968c1038773c6bab8d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-langpack-en-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/61a01121bb7608375077fc661e031916876c69ed665b19968c1038773c6bab8d", + ], +) + +rpm( + name = "glibc-langpack-es-0__2.39-114.el10.aarch64", + sha256 = "a565534b17a0e8f446b611fc6304be058c358bc941b41108944542068f1c4c6f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-langpack-es-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-langpack-et-0__2.34-256.el9.s390x", + sha256 = "2dd542ed563f5aa9e920db1b32719c1895adfdaeb85ac2b9ae1e6a887ca04a05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-langpack-et-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2dd542ed563f5aa9e920db1b32719c1895adfdaeb85ac2b9ae1e6a887ca04a05", + ], +) + +rpm( + name = "glibc-langpack-eu-0__2.34-256.el9.x86_64", + sha256 = "1f9eeaefdd95d6974694fa9c28baf3cd29fc215b298fff3b92a1d7795f139568", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-langpack-eu-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1f9eeaefdd95d6974694fa9c28baf3cd29fc215b298fff3b92a1d7795f139568", + ], +) + +rpm( + name = "glibc-langpack-fa-0__2.39-114.el10.x86_64", + sha256 = "0a2a7a3668677ac47648e1b229ad186d3c214939ac5a441d24a451478449e46d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-langpack-fa-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-langpack-ga-0__2.39-114.el10.s390x", + sha256 = "7dac921346c64ffc84662f35936fa8c87aae47c9f5f46dd135b0ef1bc5ce7a87", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-langpack-ga-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-168.el9.x86_64", + sha256 = "991b6d7370b237a3d576536a517d01a1ccc997959f4ea30ba07bd779641f79e8", + urls = ["https://storage.googleapis.com/builddeps/991b6d7370b237a3d576536a517d01a1ccc997959f4ea30ba07bd779641f79e8"], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-256.el9.aarch64", + sha256 = "6223607052336e57a06364f93047c67160e1f0bd6ba989b1a1ceb87824b58755", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/glibc-minimal-langpack-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6223607052336e57a06364f93047c67160e1f0bd6ba989b1a1ceb87824b58755", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-256.el9.s390x", + sha256 = "795d38261507a67e8c23446b899a3b0e056ee2fd785f6d16f669b7e666387e7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/glibc-minimal-langpack-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/795d38261507a67e8c23446b899a3b0e056ee2fd785f6d16f669b7e666387e7e", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.34-256.el9.x86_64", + sha256 = "840384c2b63ead3045c2ee3fb9893686bd07704cd31ff2bb64f0255611006fbf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/glibc-minimal-langpack-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/840384c2b63ead3045c2ee3fb9893686bd07704cd31ff2bb64f0255611006fbf", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.39-114.el10.aarch64", + sha256 = "c701b9a0e218d373ecd4951465ed45c0f30c5bcce1697d8944d69cd8eb8cb1dd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/glibc-minimal-langpack-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.39-114.el10.s390x", + sha256 = "619cf1f1feb3c79f561ed3d2954c93e65085ccc308c0449aaae1dbd1c5f07b1a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/glibc-minimal-langpack-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-minimal-langpack-0__2.39-114.el10.x86_64", + sha256 = "17a35df7844ce8322dfbd877f47940d6d33c21885006c5f9e8a20530718ce304", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/glibc-minimal-langpack-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "glibc-static-0__2.34-256.el9.aarch64", + sha256 = "19a6dc41af6303dafe99bd6d7c2e0d8678101ba4bae66e19f827eb67899b1244", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/glibc-static-2.34-256.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19a6dc41af6303dafe99bd6d7c2e0d8678101ba4bae66e19f827eb67899b1244", + ], +) + +rpm( + name = "glibc-static-0__2.34-256.el9.s390x", + sha256 = "5cae49aefbc89f0d27e99a9622a25e6c0b8a5178e2af49361e72330ea6b3fc72", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/glibc-static-2.34-256.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5cae49aefbc89f0d27e99a9622a25e6c0b8a5178e2af49361e72330ea6b3fc72", + ], +) + +rpm( + name = "glibc-static-0__2.34-256.el9.x86_64", + sha256 = "5a3cc7edbe18a1df6e7258de7279a20378f40af5cf276b5e1b7a7a5849c25463", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/glibc-static-2.34-256.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a3cc7edbe18a1df6e7258de7279a20378f40af5cf276b5e1b7a7a5849c25463", + ], +) + +rpm( + name = "glibc-static-0__2.39-114.el10.aarch64", + sha256 = "8187c65502242ffc476ea852cc3e63245fea69d4d3191c67f0502578a747f0e7", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/glibc-static-2.39-114.el10.aarch64.rpm", + ], +) + +rpm( + name = "glibc-static-0__2.39-114.el10.s390x", + sha256 = "29bc94d97264749a2442d9304080043e07f1277cb31aef8108c8c18420e6233f", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/glibc-static-2.39-114.el10.s390x.rpm", + ], +) + +rpm( + name = "glibc-static-0__2.39-114.el10.x86_64", + sha256 = "49f80124ad4d72fcc6506ecf98123669d75dc6570010a9b20d5600cd7a8d584c", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/glibc-static-2.39-114.el10.x86_64.rpm", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.aarch64", + sha256 = "01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gmp-6.2.0-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/01716c2de2af5ddce80cfc2f81fbcabe50670583f8d3ebf8af1058982edb9c70", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.s390x", + sha256 = "c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gmp-6.2.0-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c26b4f2d1e2c6a9a3b683d1909df8f788a261fcc8e766ded00a96681e5dc62d2", + ], +) + +rpm( + name = "gmp-1__6.2.0-13.el9.x86_64", + sha256 = "b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gmp-6.2.0-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b6d592895ccc0fcad6106cd41800cd9d68e5384c418e53a2c3ff2ac8c8b15a33", + ], +) + +rpm( + name = "gmp-1__6.2.1-12.el10.aarch64", + sha256 = "9bbe58df2a29320daf9b4c36305fcc7f781ab0bdd486736c6d8c685838141a41", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gmp-6.2.1-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9bbe58df2a29320daf9b4c36305fcc7f781ab0bdd486736c6d8c685838141a41", + ], +) + +rpm( + name = "gmp-1__6.2.1-12.el10.s390x", + sha256 = "54d437788539933aa6de0963c6b1303e50b07f17db9ea847a71e19d1b4ef6a66", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gmp-6.2.1-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/54d437788539933aa6de0963c6b1303e50b07f17db9ea847a71e19d1b4ef6a66", + ], +) + +rpm( + name = "gmp-1__6.2.1-12.el10.x86_64", + sha256 = "6678824b5d45f9b66e8bfeb8f32736e0d710e3b38531a85548f55702d96b63a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gmp-6.2.1-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6678824b5d45f9b66e8bfeb8f32736e0d710e3b38531a85548f55702d96b63a8", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-4.el9.x86_64", + sha256 = "03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnupg2-2.3.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/03e7697ffc0ae9301c30adccfe28d3b100063e5d2c7c5f87dc21f1c56af4052f", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-5.el9.s390x", + sha256 = "9cbb342b46df96e85e55919bee459b2fd5023642494eeb2466344b765c1802d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnupg2-2.3.3-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9cbb342b46df96e85e55919bee459b2fd5023642494eeb2466344b765c1802d3", + ], +) + +rpm( + name = "gnupg2-0__2.3.3-5.el9.x86_64", + sha256 = "5628444d9a62a7b6b46951c5187ccf43cb4d9254a45ae225808c6ef7d28c027f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnupg2-2.3.3-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5628444d9a62a7b6b46951c5187ccf43cb4d9254a45ae225808c6ef7d28c027f", + ], +) + +rpm( + name = "gnupg2-0__2.4.5-4.el10.s390x", + sha256 = "2b576fbf4dafb91c6ed3ccb439f6ff4fa4057efd10d07949cf51fa2ef1f076f0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gnupg2-2.4.5-4.el10.s390x.rpm", + ], +) + +rpm( + name = "gnupg2-0__2.4.5-4.el10.x86_64", + sha256 = "0531cbe23b63a37972751c9fefb904041d304df93f21b97ad18271659b0a5643", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gnupg2-2.4.5-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el10.aarch64", + sha256 = "8d8d8ade46ec8214a50f4e3c1c749f0d04d2df012738f87cf5b031a286558710", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gnutls-3.8.10-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el10.s390x", + sha256 = "e7012d2c1c0df897340a99e80a19c7d52553b70a9be99fb132521a81c5798478", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gnutls-3.8.10-3.el10.s390x.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el10.x86_64", + sha256 = "6c16093eae7a14611b7c1c7049ec6c107440f1a950369779876aae5c848c7780", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.10-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el9.aarch64", + sha256 = "4b9e4757f999a9995f53e49577b9b3f3a5e0d683a227015c357e6d5603a87982", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gnutls-3.8.10-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4b9e4757f999a9995f53e49577b9b3f3a5e0d683a227015c357e6d5603a87982", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el9.s390x", + sha256 = "3d2808eadf410398ae827793fcc526af2bcc1e24a2551d33e61e1293786f1fb6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gnutls-3.8.10-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d2808eadf410398ae827793fcc526af2bcc1e24a2551d33e61e1293786f1fb6", + ], +) + +rpm( + name = "gnutls-0__3.8.10-3.el9.x86_64", + sha256 = "95b8f11db2d075d96817bad2ca9b131b78ad2836edc5a75f99f967c30249b1e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gnutls-3.8.10-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/95b8f11db2d075d96817bad2ca9b131b78ad2836edc5a75f99f967c30249b1e7", + ], +) + +rpm( + name = "gnutls-0__3.8.3-6.el9.x86_64", + sha256 = "97364bd099856650cdbcc18448e85a3cc6a3cebc9513190a1b4d7016132920d9", + urls = ["https://storage.googleapis.com/builddeps/97364bd099856650cdbcc18448e85a3cc6a3cebc9513190a1b4d7016132920d9"], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el10.aarch64", + sha256 = "6bfb9f3bb96a0fe3f4ae2c906f1c6769042df05c5eeffdae9e1389187d57f2d4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/gnutls-dane-3.8.10-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el10.s390x", + sha256 = "f26b50d4cca9316840d4944488e59bc53838e60d8a0fd8a50f309a208311bf24", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gnutls-dane-3.8.10-3.el10.s390x.rpm", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el10.x86_64", + sha256 = "aba49c14e53a10912aff385b1e8728d635a97fa691cd6b6bb53c7452deb2f5ba", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/gnutls-dane-3.8.10-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el9.aarch64", + sha256 = "a41c588fc3f4d6c3686f872f493ba32b61a46cfd0cb8f0c7458d9f62e7b7c22a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-dane-3.8.10-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a41c588fc3f4d6c3686f872f493ba32b61a46cfd0cb8f0c7458d9f62e7b7c22a", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el9.s390x", + sha256 = "8e8793bc2a500256747f4745bed2d7b494854153d52e064a51aeb252c214dd26", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-dane-3.8.10-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8e8793bc2a500256747f4745bed2d7b494854153d52e064a51aeb252c214dd26", + ], +) + +rpm( + name = "gnutls-dane-0__3.8.10-3.el9.x86_64", + sha256 = "9d8148e86c8013335fe8747bc113eda9ba6ad59921c057ab9715f6f9beb17288", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-dane-3.8.10-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9d8148e86c8013335fe8747bc113eda9ba6ad59921c057ab9715f6f9beb17288", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el10.aarch64", + sha256 = "02a5817d97614fda36e20c500ac1a87c3c3b25b3656236a205d0dac3504f5a0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/gnutls-utils-3.8.10-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el10.s390x", + sha256 = "8895aaf8347ebb6391468a1b4c1a41c3f2417332392f8ece56316b37f4062825", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/gnutls-utils-3.8.10-3.el10.s390x.rpm", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el10.x86_64", + sha256 = "a8b0ec6837074d8f9fccf01ee563220b90a9404e7f9245e68a9589f26e1c3500", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/gnutls-utils-3.8.10-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el9.aarch64", + sha256 = "d88cfcc208c54f0fb9182785356382295d188d680e190340a2c187aa15e49faa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/gnutls-utils-3.8.10-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d88cfcc208c54f0fb9182785356382295d188d680e190340a2c187aa15e49faa", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el9.s390x", + sha256 = "8938b2f992f04bd4a120d1052db7865c58dc42f88e35e917f3628ee00d5e091d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/gnutls-utils-3.8.10-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8938b2f992f04bd4a120d1052db7865c58dc42f88e35e917f3628ee00d5e091d", + ], +) + +rpm( + name = "gnutls-utils-0__3.8.10-3.el9.x86_64", + sha256 = "e9e4aff0e53b81327f6bfd5c0a07de4be8900fd8e466c301c2b74c5af74fb508", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gnutls-utils-3.8.10-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e9e4aff0e53b81327f6bfd5c0a07de4be8900fd8e466c301c2b74c5af74fb508", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.aarch64", + sha256 = "bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gobject-introspection-1.68.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bcb5e3ab1d0ee579a11ec1449585196c0d13b552f73bbea3e2ada642b5313fbd", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.s390x", + sha256 = "27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gobject-introspection-1.68.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/27ff550b5596d6a8ae414c20b42c20aba8f37794372fd19ddce5270a6e0d0328", + ], +) + +rpm( + name = "gobject-introspection-0__1.68.0-11.el9.x86_64", + sha256 = "d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gobject-introspection-1.68.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d75cc220f9b5978bb1755cf5e4de30244ff8e7ad7f98dfbdfe897f41442e4587", + ], +) + +rpm( + name = "gobject-introspection-0__1.79.1-6.el10.aarch64", + sha256 = "a3bd85b169c321602bafe23ca724dfa2b897379a89384dfd453cbb3a03d25e66", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gobject-introspection-1.79.1-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a3bd85b169c321602bafe23ca724dfa2b897379a89384dfd453cbb3a03d25e66", + ], +) + +rpm( + name = "gobject-introspection-0__1.79.1-6.el10.s390x", + sha256 = "440ef891180126b7d295bca67df47a23bdf05dff3a43d535826b8aa82ad26bb3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gobject-introspection-1.79.1-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/440ef891180126b7d295bca67df47a23bdf05dff3a43d535826b8aa82ad26bb3", + ], +) + +rpm( + name = "gobject-introspection-0__1.79.1-6.el10.x86_64", + sha256 = "80913f97462db46c9962d539f325cef09bf85ab4c415a2c47b445fe96bba84b6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gobject-introspection-1.79.1-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/80913f97462db46c9962d539f325cef09bf85ab4c415a2c47b445fe96bba84b6", + ], +) + +rpm( + name = "grep-0__3.11-10.el10.aarch64", + sha256 = "d797740f7c738e5e7729949bde3d82274c5c6422242a82c1058fbe71ea0c37e9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/grep-3.11-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d797740f7c738e5e7729949bde3d82274c5c6422242a82c1058fbe71ea0c37e9", + ], +) + +rpm( + name = "grep-0__3.11-10.el10.s390x", + sha256 = "d30a1ab1991131978b67f26d6c119f97bb5408a4bebac0294f2ac5417fe12276", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/grep-3.11-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d30a1ab1991131978b67f26d6c119f97bb5408a4bebac0294f2ac5417fe12276", + ], +) + +rpm( + name = "grep-0__3.11-10.el10.x86_64", + sha256 = "a0eb701c640cd0a0c9195493a8fc9206fff62174d958ba4af2d92527191f803f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/grep-3.11-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0eb701c640cd0a0c9195493a8fc9206fff62174d958ba4af2d92527191f803f", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.aarch64", + sha256 = "33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/grep-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/33bdf571a62cb8b7d659617e9278e46043aa936f8e963202750d19463a805f60", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.s390x", + sha256 = "b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/grep-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b6b83738fc6afb9ba28d0c2c57eaf17cdbe5b26ff89a8da17812dd261045df3e", + ], +) + +rpm( + name = "grep-0__3.6-5.el9.x86_64", + sha256 = "10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/grep-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10a41b66b1fbd6eb055178e22c37199e5b49b4852e77c806f7af7211044a4a55", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-6.el9.x86_64", + sha256 = "9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9935991dc0dfb2eda15db01d388d4a018ee3aaf0c5f8ffa4ca1297f05d62db33", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-8.el9.s390x", + sha256 = "2de739236b8adb578b1dff03269c977b8ba9ad1ae6581793acf4614a70705638", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gsettings-desktop-schemas-40.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2de739236b8adb578b1dff03269c977b8ba9ad1ae6581793acf4614a70705638", + ], +) + +rpm( + name = "gsettings-desktop-schemas-0__40.0-8.el9.x86_64", + sha256 = "06b0fd5bd1b106371aa42cd47d8784f248c7df3962165cab4a58ff67d35512be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-40.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/06b0fd5bd1b106371aa42cd47d8784f248c7df3962165cab4a58ff67d35512be", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-2.el9.x86_64", + sha256 = "2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2c3cfa7e3de1e97ff1a6465d2c776311bffded28d451d38983919c1a6cca8dd8", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-5.el9.s390x", + sha256 = "09f07a0309459e9aeaa0d4004496a4bbbd10dc1ebf2ea0b97187a8a27020c08e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/guestfs-tools-1.52.2-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09f07a0309459e9aeaa0d4004496a4bbbd10dc1ebf2ea0b97187a8a27020c08e", + ], +) + +rpm( + name = "guestfs-tools-0__1.52.2-5.el9.x86_64", + sha256 = "0d4ff23abb20c16245b8452201cd693aa864ba609f4fea36ba23612011c2a9bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.52.2-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0d4ff23abb20c16245b8452201cd693aa864ba609f4fea36ba23612011c2a9bf", + ], +) + +rpm( + name = "guestfs-tools-0__1.54.0-7.el10.s390x", + sha256 = "a8afff6d24bfb91072d2a0c98ad7d574ac5840da0f5a97e92b717862f8f28492", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/guestfs-tools-1.54.0-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a8afff6d24bfb91072d2a0c98ad7d574ac5840da0f5a97e92b717862f8f28492", + ], +) + +rpm( + name = "guestfs-tools-0__1.54.0-7.el10.x86_64", + sha256 = "8e050750f08fbb8a0fd2b0600e8d3acd966e74155bccafe0cd6eb0aaf9d087a3", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/guestfs-tools-1.54.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e050750f08fbb8a0fd2b0600e8d3acd966e74155bccafe0cd6eb0aaf9d087a3", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.aarch64", + sha256 = "5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/gzip-1.12-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5a39a441dad01ccc8af601f1cca5bed46ac231fbdbe39ea3202bd54cf9390d81", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.s390x", + sha256 = "72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/gzip-1.12-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/72b8b818027d9d716be069743c03431f057ce5af62b38273c249990890cbc504", + ], +) + +rpm( + name = "gzip-0__1.12-1.el9.x86_64", + sha256 = "e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/gzip-1.12-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e8d7783c666a58ab870246b04eb0ea22965123fe284697d2c0e1e6dbf10ea861", + ], +) + +rpm( + name = "gzip-0__1.13-3.el10.aarch64", + sha256 = "9b276d61a13e3c996f059a095881630fab9ec5a4a56a07ddc711e4db0a3362d4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/gzip-1.13-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9b276d61a13e3c996f059a095881630fab9ec5a4a56a07ddc711e4db0a3362d4", + ], +) + +rpm( + name = "gzip-0__1.13-3.el10.s390x", + sha256 = "d76be88d032b4f7525f5414d11081fb930fe338f108830b01b24f8501de3c2d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/gzip-1.13-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d76be88d032b4f7525f5414d11081fb930fe338f108830b01b24f8501de3c2d5", + ], +) + +rpm( + name = "gzip-0__1.13-3.el10.x86_64", + sha256 = "b7117230deceaba8bcd1341f0528df5855e54997cea04379fd3cc2c7c1e07ba8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/gzip-1.13-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b7117230deceaba8bcd1341f0528df5855e54997cea04379fd3cc2c7c1e07ba8", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.s390x", + sha256 = "d6a58dc3d17cad456ea20945a93ccca5bae70620a1d16ac059c9c8554337b33a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/hexedit-1.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6a58dc3d17cad456ea20945a93ccca5bae70620a1d16ac059c9c8554337b33a", + ], +) + +rpm( + name = "hexedit-0__1.6-1.el9.x86_64", + sha256 = "8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hexedit-1.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c0781f044f9e45329cfc0f4c7d7acd65c9f779b34816c205279f977919e856f", + ], +) + +rpm( + name = "hexedit-0__1.6-8.el10.s390x", + sha256 = "3b3fa64ec84f359ff667cf1c9f0c66e5300d08284d6a944e295fefbd3fd1e720", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/hexedit-1.6-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3b3fa64ec84f359ff667cf1c9f0c66e5300d08284d6a944e295fefbd3fd1e720", + ], +) + +rpm( + name = "hexedit-0__1.6-8.el10.x86_64", + sha256 = "b4e61671ac71d0dc721f67b6a7d5ff28e3ec9c8e1b8251104bcd34d6f0611ce3", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/hexedit-1.6-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b4e61671ac71d0dc721f67b6a7d5ff28e3ec9c8e1b8251104bcd34d6f0611ce3", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.s390x", + sha256 = "1976d559fb2ad7ae330a7265d2ff03d59ca1726637db13a54bceba2be08d9920", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/hivex-libs-1.3.24-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1976d559fb2ad7ae330a7265d2ff03d59ca1726637db13a54bceba2be08d9920", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-1.el9.x86_64", + sha256 = "f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hivex-libs-1.3.24-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f757c1720320e62ebc874dd169dea4540f145d5a0132afb4263c640cae87af46", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-2.el10.s390x", + sha256 = "967989dfab46ed23e33b59c956d27ad881051582f1c59995824b93249c5ff004", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/hivex-libs-1.3.24-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/967989dfab46ed23e33b59c956d27ad881051582f1c59995824b93249c5ff004", + ], +) + +rpm( + name = "hivex-libs-0__1.3.24-2.el10.x86_64", + sha256 = "ecf17b83680af8d8a3cef0a632ec3a7163d01c3dddd2364c9b47a4ba79e23150", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/hivex-libs-1.3.24-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ecf17b83680af8d8a3cef0a632ec3a7163d01c3dddd2364c9b47a4ba79e23150", + ], +) + +rpm( + name = "hwdata-0__0.348-9.18.el9.x86_64", + sha256 = "b25f5743e2f54a34d41bb6b37602b301260629ef91713f0b894c8ed9dd37c137", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.18.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/b25f5743e2f54a34d41bb6b37602b301260629ef91713f0b894c8ed9dd37c137", + ], +) + +rpm( + name = "hwdata-0__0.348-9.22.el9.s390x", + sha256 = "c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/hwdata-0.348-9.22.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + ], +) + +rpm( + name = "hwdata-0__0.348-9.22.el9.x86_64", + sha256 = "c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/hwdata-0.348-9.22.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/c7baa0d2e9e8890469a4e246d56be47563402a8f36d4e2afc7ff5d002a7af335", + ], +) + +rpm( + name = "hwdata-0__0.379-10.8.el10.s390x", + sha256 = "b1503fb4af22475819cd6df6b86681266230cbe55def3c11dcee8f68e97050c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/hwdata-0.379-10.8.el10.noarch.rpm", + ], +) + +rpm( + name = "hwdata-0__0.379-10.8.el10.x86_64", + sha256 = "b1503fb4af22475819cd6df6b86681266230cbe55def3c11dcee8f68e97050c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/hwdata-0.379-10.8.el10.noarch.rpm", + ], +) + +rpm( + name = "iproute-0__6.11.0-1.el9.x86_64", + sha256 = "3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3780635befbf4a3c3b8a1a52e6b9eb666b64574189be3b9b13624355dae4a8a8", + ], +) + +rpm( + name = "iproute-0__6.17.0-1.el10.aarch64", + sha256 = "44ddded795dfa336e7c553ee68f70d2ccfbe5f954849cfba4975d1a914565398", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iproute-6.17.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/44ddded795dfa336e7c553ee68f70d2ccfbe5f954849cfba4975d1a914565398", + ], +) + +rpm( + name = "iproute-0__6.17.0-1.el10.s390x", + sha256 = "902537a96edca3984a114f83b7a927b83316104ae3ba34c9606b4a964dea7aba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iproute-6.17.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/902537a96edca3984a114f83b7a927b83316104ae3ba34c9606b4a964dea7aba", + ], +) + +rpm( + name = "iproute-0__6.17.0-1.el10.x86_64", + sha256 = "6ebcdb339cc28036f2dc26b8be2f38d628b7206c715c484dca6031631c304e88", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iproute-6.17.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6ebcdb339cc28036f2dc26b8be2f38d628b7206c715c484dca6031631c304e88", + ], +) + +rpm( + name = "iproute-0__6.17.0-2.el9.aarch64", + sha256 = "d388c9ac3e1ab6fdc97227710f35243bf63de4a4aa818222aa8f3fe241e8a9ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-6.17.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d388c9ac3e1ab6fdc97227710f35243bf63de4a4aa818222aa8f3fe241e8a9ae", + ], +) + +rpm( + name = "iproute-0__6.17.0-2.el9.s390x", + sha256 = "e838d01d8318ab25f322225b6cdb7dd906c5f1d35b95fa3c89cb8e8ae1450791", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-6.17.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e838d01d8318ab25f322225b6cdb7dd906c5f1d35b95fa3c89cb8e8ae1450791", + ], +) + +rpm( + name = "iproute-0__6.17.0-2.el9.x86_64", + sha256 = "95f9c5dc7e6bc06ce26c1f905bb1c9114aee2df223a20d0806396664bee2cc67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-6.17.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/95f9c5dc7e6bc06ce26c1f905bb1c9114aee2df223a20d0806396664bee2cc67", + ], +) + +rpm( + name = "iproute-tc-0__6.11.0-1.el9.x86_64", + sha256 = "0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0dd645d098e02a1ebc31cbddc8d1cd6f36a3bd92190bb496b2cfc1e9849958ed", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-1.el10.aarch64", + sha256 = "46b8ce7f1acdae7878bf667f40c63c3497576749ced449f51ba5b951ca9c39c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iproute-tc-6.17.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/46b8ce7f1acdae7878bf667f40c63c3497576749ced449f51ba5b951ca9c39c8", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-1.el10.s390x", + sha256 = "50a10556d2351456e5e4cb6b5a17b608f731352c06046e4e5ce2bd7a6a387490", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iproute-tc-6.17.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/50a10556d2351456e5e4cb6b5a17b608f731352c06046e4e5ce2bd7a6a387490", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-1.el10.x86_64", + sha256 = "1956f5939d423ba743e5d30ca9310ed7e38c5b6cd671c966d0ed093edfa29ba9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.17.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1956f5939d423ba743e5d30ca9310ed7e38c5b6cd671c966d0ed093edfa29ba9", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-2.el9.aarch64", + sha256 = "906641c6eb987b2d1ae0e66ee81d50c88b1268894daa83884126a5005389f418", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iproute-tc-6.17.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/906641c6eb987b2d1ae0e66ee81d50c88b1268894daa83884126a5005389f418", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-2.el9.s390x", + sha256 = "9ee321e9f865810eb4098788af2231918716c1a7c2b8b34b103b5cc636b1f3d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iproute-tc-6.17.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9ee321e9f865810eb4098788af2231918716c1a7c2b8b34b103b5cc636b1f3d7", + ], +) + +rpm( + name = "iproute-tc-0__6.17.0-2.el9.x86_64", + sha256 = "8813251157fade8cfb191f476d568a8d8a86dcdd1537eeb5d6dfb636c630afcc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iproute-tc-6.17.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8813251157fade8cfb191f476d568a8d8a86dcdd1537eeb5d6dfb636c630afcc", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.aarch64", + sha256 = "097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iptables-libs-1.8.10-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097df125f6836f5dbdce2f3e961a649cd2e15b5f2a8164267c7c98b281ab60e4", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.s390x", + sha256 = "469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iptables-libs-1.8.10-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/469bd3ae07fb31f648a81d8ffa6b5053ee647b4c5dffcbcfbf11081921231715", + ], +) + +rpm( + name = "iptables-libs-0__1.8.10-11.el9.x86_64", + sha256 = "7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iptables-libs-1.8.10-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7ffd51ff29c86e31d36ff9518dead9fd403034824e874b069a24c6587d4e1084", + ], +) + +rpm( + name = "iptables-libs-0__1.8.11-12.el10.aarch64", + sha256 = "4bf894764ed0f9e7e92228587b8ec02962197b6ff87db3c0562081daf54efb40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iptables-libs-1.8.11-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4bf894764ed0f9e7e92228587b8ec02962197b6ff87db3c0562081daf54efb40", + ], +) + +rpm( + name = "iptables-libs-0__1.8.11-12.el10.s390x", + sha256 = "c94759e8d3245cfbe43eb96964ee9a4031585e6874535d564a00596cd56a4d76", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iptables-libs-1.8.11-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/c94759e8d3245cfbe43eb96964ee9a4031585e6874535d564a00596cd56a4d76", + ], +) + +rpm( + name = "iptables-libs-0__1.8.11-12.el10.x86_64", + sha256 = "450dfc1d463564d4955c3a244cf190bd4544cf56288b9703e2d39af238494f6c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iptables-libs-1.8.11-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/450dfc1d463564d4955c3a244cf190bd4544cf56288b9703e2d39af238494f6c", + ], +) + +rpm( + name = "iputils-0__20210202-15.el9.aarch64", + sha256 = "834bb57dc3ce91c41050e1fab4d2808a10a2b410b7c4a07cce3199c57181fe4d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/iputils-20210202-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/834bb57dc3ce91c41050e1fab4d2808a10a2b410b7c4a07cce3199c57181fe4d", + ], +) + +rpm( + name = "iputils-0__20210202-15.el9.s390x", + sha256 = "ed9f65c5d621415497674b76c248d79da0128d8fb1ee1838060129889f947360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/iputils-20210202-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ed9f65c5d621415497674b76c248d79da0128d8fb1ee1838060129889f947360", + ], +) + +rpm( + name = "iputils-0__20210202-15.el9.x86_64", + sha256 = "225a2b191c1d5f9070dacb71ba3aed71f7247f0912a9ba18c6c08379587e4c37", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/iputils-20210202-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/225a2b191c1d5f9070dacb71ba3aed71f7247f0912a9ba18c6c08379587e4c37", + ], +) + +rpm( + name = "iputils-0__20240905-5.el10.aarch64", + sha256 = "3ed67cca3fbb5f60f14f85ea712b1822f2a80c58287e744795ef995ebebc3761", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/iputils-20240905-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3ed67cca3fbb5f60f14f85ea712b1822f2a80c58287e744795ef995ebebc3761", + ], +) + +rpm( + name = "iputils-0__20240905-5.el10.s390x", + sha256 = "bf09f778f68c47515f0763e7c4aa952ed32dea57608a9473cb8edd50742e8a6a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/iputils-20240905-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bf09f778f68c47515f0763e7c4aa952ed32dea57608a9473cb8edd50742e8a6a", + ], +) + +rpm( + name = "iputils-0__20240905-5.el10.x86_64", + sha256 = "adfa1b26bf1cd23d0998c85da06ad787f0fa745bfd232f7acec225c1e88b05d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/iputils-20240905-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/adfa1b26bf1cd23d0998c85da06ad787f0fa745bfd232f7acec225c1e88b05d8", + ], +) + +rpm( + name = "ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64", + sha256 = "fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/ipxe-roms-qemu-20200823-9.git4bd064de.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/fa304f6cffa4a84a8aae1e0d2dd10606ffb51b88d9568b7da92ffd63acb14851", + ], +) + +rpm( + name = "ipxe-roms-qemu-0__20240119-5.gitde8a0821.el10.x86_64", + sha256 = "0b834df444ffe592d164f1dd5a2ce690417e459b8cd6d6c69b2075bbb9c8b4cb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/ipxe-roms-qemu-20240119-5.gitde8a0821.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0b834df444ffe592d164f1dd5a2ce690417e459b8cd6d6c69b2075bbb9c8b4cb", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.aarch64", + sha256 = "23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/jansson-2.14-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23a8033dae909a6b87db199e04ecbc9798820b1b939e12d51733fed4554b9279", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.s390x", + sha256 = "ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/jansson-2.14-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ec1863fd2bd9672ecb0bd4f77d929dad04f253330a41307300f485ae13d017e5", + ], +) + +rpm( + name = "jansson-0__2.14-1.el9.x86_64", + sha256 = "c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/jansson-2.14-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c3fb9f8020f978f9b392709996e62e4ddb6cb19074635af3338487195b688f66", + ], +) + +rpm( + name = "jansson-0__2.14-3.el10.aarch64", + sha256 = "a838d217420f9f10eb80a221b6cda50ff65e729c15be94f33cbb420f206ee880", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/jansson-2.14-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a838d217420f9f10eb80a221b6cda50ff65e729c15be94f33cbb420f206ee880", + ], +) + +rpm( + name = "jansson-0__2.14-3.el10.s390x", + sha256 = "cc054f4efd4b779ec708061759de28acd9eb9df0ad8f3b32f9fe4752b1dcb06c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/jansson-2.14-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/cc054f4efd4b779ec708061759de28acd9eb9df0ad8f3b32f9fe4752b1dcb06c", + ], +) + +rpm( + name = "jansson-0__2.14-3.el10.x86_64", + sha256 = "25d2ef852d5941b27ae105ec780aa367605a6f8b86e6c6a13abdee1c1065979f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/jansson-2.14-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/25d2ef852d5941b27ae105ec780aa367605a6f8b86e6c6a13abdee1c1065979f", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.aarch64", + sha256 = "65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-c-0.14-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65a68a23f33540b4d7cd2d9227a63d7eda1a7ab7cdd52457fee9662c06731cfa", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.s390x", + sha256 = "224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-c-0.14-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/224d820ba796088e5742a550fe7add8accf6bae309f154b4589bc11628edbcc4", + ], +) + +rpm( + name = "json-c-0__0.14-11.el9.x86_64", + sha256 = "1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-c-0.14-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1a75404c6bc8c1369914077dc99480e73bf13a40f15fd1cd8afc792b8600adf8", + ], +) + +rpm( + name = "json-c-0__0.18-3.el10.aarch64", + sha256 = "d3ecfebff7515c94e971c9584b0815202712cc2642526ee4fe5e424ec8ff2fae", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/json-c-0.18-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d3ecfebff7515c94e971c9584b0815202712cc2642526ee4fe5e424ec8ff2fae", + ], +) + +rpm( + name = "json-c-0__0.18-3.el10.s390x", + sha256 = "d4bc7597af6496e70ffa04858c8d2418267b302959db9da3f89c6edfc723ccd4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/json-c-0.18-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d4bc7597af6496e70ffa04858c8d2418267b302959db9da3f89c6edfc723ccd4", + ], +) + +rpm( + name = "json-c-0__0.18-3.el10.x86_64", + sha256 = "e73ae01d509fb9bef1bbd675be1c0003b0ee942a4187e9b14ef43e56e508245b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/json-c-0.18-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e73ae01d509fb9bef1bbd675be1c0003b0ee942a4187e9b14ef43e56e508245b", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.aarch64", + sha256 = "04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/json-glib-1.6.6-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/04a7348a546a972f275a4de34373ad7a937a5a93f4c868dffa47daa31a226243", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.s390x", + sha256 = "5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/json-glib-1.6.6-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5cdd9c06afe511d378bcfad5624ec79ae27b154ca2de67f1073404381891fc79", + ], +) + +rpm( + name = "json-glib-0__1.6.6-1.el9.x86_64", + sha256 = "d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/json-glib-1.6.6-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d850cb45d31fe84cb50cb1fa26eb5418633aae1f0dcab8b7ebadd3bd3e340956", + ], +) + +rpm( + name = "json-glib-0__1.8.0-5.el10.aarch64", + sha256 = "41de435cef6d704c1bb85066b9711e44f60b1dbff3574997094e5ed166e2b95e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/json-glib-1.8.0-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/41de435cef6d704c1bb85066b9711e44f60b1dbff3574997094e5ed166e2b95e", + ], +) + +rpm( + name = "json-glib-0__1.8.0-5.el10.s390x", + sha256 = "851e663120bae993deed48bd36f06a84d9082b51b35c87244e7a8d3735bf422f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/json-glib-1.8.0-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/851e663120bae993deed48bd36f06a84d9082b51b35c87244e7a8d3735bf422f", + ], +) + +rpm( + name = "json-glib-0__1.8.0-5.el10.x86_64", + sha256 = "156fddb0053ab256ec6ecbe7818c0ec8e957228eb2ed1d7cd244ecda85e1197e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/json-glib-1.8.0-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/156fddb0053ab256ec6ecbe7818c0ec8e957228eb2ed1d7cd244ecda85e1197e", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-686.el9.aarch64", + sha256 = "23539bf902346ab880ca3bb58fc13f4e2351f699ac0f419e59b1f8662226831d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/kernel-headers-5.14.0-686.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23539bf902346ab880ca3bb58fc13f4e2351f699ac0f419e59b1f8662226831d", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-686.el9.s390x", + sha256 = "4e521fbe77edcedc41d06e22e8dbf5efd99043ffc04961974e8a085de4f892b2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/kernel-headers-5.14.0-686.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4e521fbe77edcedc41d06e22e8dbf5efd99043ffc04961974e8a085de4f892b2", + ], +) + +rpm( + name = "kernel-headers-0__5.14.0-686.el9.x86_64", + sha256 = "f6e5d44ad55edc1eafaa0842819f788636298c2ddf8a6f0c9dc7510946568ea8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/kernel-headers-5.14.0-686.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f6e5d44ad55edc1eafaa0842819f788636298c2ddf8a6f0c9dc7510946568ea8", + ], +) + +rpm( + name = "kernel-headers-0__6.12.0-211.el10.aarch64", + sha256 = "1109f3c8a5725d7ab10eea8b99ab4be56486e69f76866e87be988c79488135a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/kernel-headers-6.12.0-211.el10.aarch64.rpm", + ], +) + +rpm( + name = "kernel-headers-0__6.12.0-211.el10.s390x", + sha256 = "d6850e41ac47e1c0f4e63822ac215f36cdc9c28af1e6e20afdfd1bd2de0cebfc", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/kernel-headers-6.12.0-211.el10.s390x.rpm", + ], +) + +rpm( + name = "kernel-headers-0__6.12.0-211.el10.x86_64", + sha256 = "caf9650fceb96c996aaf30d1df27b4fe670e408e2a3398efef7bc9796c8cf7a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/kernel-headers-6.12.0-211.el10.x86_64.rpm", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.aarch64", + sha256 = "5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/keyutils-libs-1.6.3-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5d97ee3ed28533eb2ea01a6be97696fbbbc72f8178dcf7f1acf30e674a298a6e", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.s390x", + sha256 = "954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/keyutils-libs-1.6.3-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/954b22cc636f29363edc7a29c24cb05039929ca71780174b8ec4dc495af314ef", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-1.el9.x86_64", + sha256 = "aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/keyutils-libs-1.6.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aef982501694486a27411c68698886d76ec70c5cd10bfe619501e7e4c36f50a9", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-5.el10.aarch64", + sha256 = "a6ff394736256d5c2317ab5503a056d0f60155a92090853179506358bfd2333f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/keyutils-libs-1.6.3-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a6ff394736256d5c2317ab5503a056d0f60155a92090853179506358bfd2333f", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-5.el10.s390x", + sha256 = "f2ed690c8ec6ef2a0b912ba324268d354d282f437b30044a44304543e78d9238", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/keyutils-libs-1.6.3-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f2ed690c8ec6ef2a0b912ba324268d354d282f437b30044a44304543e78d9238", + ], +) + +rpm( + name = "keyutils-libs-0__1.6.3-5.el10.x86_64", + sha256 = "312e0bf42841bb330f7721012d1ee5816e5ea223e54fc5dfd1a95c6f1d7516b0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/keyutils-libs-1.6.3-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/312e0bf42841bb330f7721012d1ee5816e5ea223e54fc5dfd1a95c6f1d7516b0", + ], +) + +rpm( + name = "kmod-0__28-11.el9.aarch64", + sha256 = "857f2f75fc01e8228750d5aef82040c00520c0a91670c951620a4161a1ac2d77", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/kmod-28-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/857f2f75fc01e8228750d5aef82040c00520c0a91670c951620a4161a1ac2d77", + ], +) + +rpm( + name = "kmod-0__28-11.el9.s390x", + sha256 = "3021be113a18631fb55f76bc2491733b3d9887fa563be60004569e2f36caab6c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/kmod-28-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3021be113a18631fb55f76bc2491733b3d9887fa563be60004569e2f36caab6c", + ], +) + +rpm( + name = "kmod-0__28-11.el9.x86_64", + sha256 = "c2cd4a2dcdc7cc55fbaf97f5641487091dbd13a5ea7974087ef8215d18fe2ffb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-28-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c2cd4a2dcdc7cc55fbaf97f5641487091dbd13a5ea7974087ef8215d18fe2ffb", + ], +) + +rpm( + name = "kmod-0__31-13.el10.aarch64", + sha256 = "a3db8298e46e1ba852dec2537f616ae51c4ef14989932059c4c57563d30c4c82", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/kmod-31-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "kmod-0__31-13.el10.s390x", + sha256 = "e238e6f1772a648243c41cc4ccce6a592b12c16a460e0a90f662f23c1cabebc5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/kmod-31-13.el10.s390x.rpm", + ], +) + +rpm( + name = "kmod-0__31-13.el10.x86_64", + sha256 = "eccbe0bed15e27471945b486d82b6bc4b1003b63e579b99b79afc7cf897656a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/kmod-31-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "kmod-libs-0__28-10.el9.x86_64", + sha256 = "79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79deb68a50b02b69df260fdb6e5c29f1b992290968ac6b07e7b249b2bdbc8ced", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.aarch64", + sha256 = "68bd119a65b2d37388623c0e4a0a717b74787e1243244c8ffa0a448f42718ee4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/kmod-libs-28-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/68bd119a65b2d37388623c0e4a0a717b74787e1243244c8ffa0a448f42718ee4", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.s390x", + sha256 = "e04b90f099224b2cb1dd28df4ff45aaa1982d26b2e2f04cb7bdcdf9b5a1306c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/kmod-libs-28-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e04b90f099224b2cb1dd28df4ff45aaa1982d26b2e2f04cb7bdcdf9b5a1306c4", + ], +) + +rpm( + name = "kmod-libs-0__28-11.el9.x86_64", + sha256 = "29d2fd267498f3e12d420a3d867483d32ce97d544327de983872f8ee89ec02b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/kmod-libs-28-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/29d2fd267498f3e12d420a3d867483d32ce97d544327de983872f8ee89ec02b3", + ], +) + +rpm( + name = "kmod-libs-0__31-13.el10.aarch64", + sha256 = "9bd10be61b682fb1263c2c6afff852efc714f0cf04acbaa1ed1180f5abeca919", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/kmod-libs-31-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "kmod-libs-0__31-13.el10.s390x", + sha256 = "b164ddc883444eae10d296a4478e5fe2576a193c4ee0921ccdd4df7211e1aa55", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/kmod-libs-31-13.el10.s390x.rpm", + ], +) + +rpm( + name = "kmod-libs-0__31-13.el10.x86_64", + sha256 = "bdf857119d993a27da5b7b4bdfa581dd92f1c1e0a7a29596c21080e1ac8b4fc8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/kmod-libs-31-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-6.el9.x86_64", + sha256 = "50edf4089d0480048aeba2bfd736b93aa89dc25735cd02e80bad57e562e1e001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/50edf4089d0480048aeba2bfd736b93aa89dc25735cd02e80bad57e562e1e001", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.aarch64", + sha256 = "7671147fe79cb1fa2fd011cee451be325a8e4aca6290ff67eb9e4d01f0c1edfd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/krb5-libs-1.21.1-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7671147fe79cb1fa2fd011cee451be325a8e4aca6290ff67eb9e4d01f0c1edfd", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.s390x", + sha256 = "ea2d05d119e5b9072dd4c58d74079accfd24bae196d012e0de105ab3e0bcc892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/krb5-libs-1.21.1-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ea2d05d119e5b9072dd4c58d74079accfd24bae196d012e0de105ab3e0bcc892", + ], +) + +rpm( + name = "krb5-libs-0__1.21.1-8.el9.x86_64", + sha256 = "d5d3473637d3453c3216b1f14fef500e10bd8158c99bbadb48b788b88d92786f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.1-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5d3473637d3453c3216b1f14fef500e10bd8158c99bbadb48b788b88d92786f", + ], +) + +rpm( + name = "krb5-libs-0__1.21.3-8.el10.aarch64", + sha256 = "ae0332e7dc9a151a1f86f44e8cd75148f8ced6aeb54d1d9671af752fd863b0c8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/krb5-libs-1.21.3-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae0332e7dc9a151a1f86f44e8cd75148f8ced6aeb54d1d9671af752fd863b0c8", + ], +) + +rpm( + name = "krb5-libs-0__1.21.3-8.el10.s390x", + sha256 = "415688256b2cea553669441e078c28bcb9dc2227c4bbbd29c46c505cec994d6e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/krb5-libs-1.21.3-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/415688256b2cea553669441e078c28bcb9dc2227c4bbbd29c46c505cec994d6e", + ], +) + +rpm( + name = "krb5-libs-0__1.21.3-8.el10.x86_64", + sha256 = "c19429221a54c4de8c9d88d6c6e0f929d1c4199828300c6f94b667c6f7ff00f4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/krb5-libs-1.21.3-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c19429221a54c4de8c9d88d6c6e0f929d1c4199828300c6f94b667c6f7ff00f4", + ], +) + +rpm( + name = "less-0__590-5.el9.x86_64", + sha256 = "46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46e11dfacb75a8d03047d82f44ae46b11d95da31e0ec1b3a8cc37a132b1c7cae", + ], +) + +rpm( + name = "less-0__590-6.el9.s390x", + sha256 = "0f83cc72b28298a902ac58ab5e0a0dfb092a9a218a00f5baaa45f07ec0fbc09d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/less-590-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0f83cc72b28298a902ac58ab5e0a0dfb092a9a218a00f5baaa45f07ec0fbc09d", + ], +) + +rpm( + name = "less-0__590-6.el9.x86_64", + sha256 = "c6d44d94d48746cb6a909c5a929f69c86db83aef59635cbabfc5a4a176a388a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/less-590-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c6d44d94d48746cb6a909c5a929f69c86db83aef59635cbabfc5a4a176a388a0", + ], +) + +rpm( + name = "less-0__661-3.el10.s390x", + sha256 = "6eb8705527ce26aa64dd692e6103e6b2197fb134a9e4f03e5db78d4c45035ddf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/less-661-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6eb8705527ce26aa64dd692e6103e6b2197fb134a9e4f03e5db78d4c45035ddf", + ], +) + +rpm( + name = "less-0__661-3.el10.x86_64", + sha256 = "1cf4afdf660772f65668cc702722facd7ed79d849150e14cab623cffd4167516", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/less-661-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1cf4afdf660772f65668cc702722facd7ed79d849150e14cab623cffd4167516", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.aarch64", + sha256 = "90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libacl-2.3.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/90e4392e312cd793eeba4cd68bd12836a882ac37356c784806d67a0cd1d48c25", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.s390x", + sha256 = "bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libacl-2.3.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bfdd2316c1742032df9b15d1a91ff2e3674faeae1e27e4a851165e5c6bb666f5", + ], +) + +rpm( + name = "libacl-0__2.3.1-4.el9.x86_64", + sha256 = "60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libacl-2.3.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/60a3affaa1c387fd6f72dd65aa7ad619a1830947823abb4b29e7b9fcb4c9d27c", + ], +) + +rpm( + name = "libacl-0__2.3.2-4.el10.aarch64", + sha256 = "20f3eeb53bf86dd2c7152fcdc33df3efd60777edd11f31f633739c0fdc0bdbf5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libacl-2.3.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/20f3eeb53bf86dd2c7152fcdc33df3efd60777edd11f31f633739c0fdc0bdbf5", + ], +) + +rpm( + name = "libacl-0__2.3.2-4.el10.s390x", + sha256 = "5f26a314b6e88e87516979610e9c0bda3dc55c67c9339bf79739574162eb1fa6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libacl-2.3.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5f26a314b6e88e87516979610e9c0bda3dc55c67c9339bf79739574162eb1fa6", + ], +) + +rpm( + name = "libacl-0__2.3.2-4.el10.x86_64", + sha256 = "dd06cfe883fcdf7cb14b749180abfd9fe9924723341a8644a9f65c086febc647", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libacl-2.3.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd06cfe883fcdf7cb14b749180abfd9fe9924723341a8644a9f65c086febc647", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.aarch64", + sha256 = "1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libaio-0.3.111-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1730d732818fa2471b5cd461175ceda18e909410db8a32185d8db2aa7461130c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.s390x", + sha256 = "b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libaio-0.3.111-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4adecd95273b4ae7590b84ecbed5a7b4a1795066bab430d15f04eb82bb9dc1c", + ], +) + +rpm( + name = "libaio-0__0.3.111-13.el9.x86_64", + sha256 = "7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libaio-0.3.111-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d9d4d37e86ba94bb941e2dad40c90a157aaa0602f02f3f90e76086515f439be", + ], +) + +rpm( + name = "libaio-0__0.3.111-22.el10.aarch64", + sha256 = "99660f7b25fdb5503e0414e263ad91d0c1b61f1dc4e106721c0d1380b239d17f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libaio-0.3.111-22.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99660f7b25fdb5503e0414e263ad91d0c1b61f1dc4e106721c0d1380b239d17f", + ], +) + +rpm( + name = "libaio-0__0.3.111-22.el10.s390x", + sha256 = "5ee6ef6f4625016ae0746586e62fcf1c70596f8b557d8e6ad54cc67a4ae26690", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libaio-0.3.111-22.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5ee6ef6f4625016ae0746586e62fcf1c70596f8b557d8e6ad54cc67a4ae26690", + ], +) + +rpm( + name = "libaio-0__0.3.111-22.el10.x86_64", + sha256 = "ea807b22c77a37a766e62ad533dc3f9b80fd5b260016487cecea55b095092446", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libaio-0.3.111-22.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ea807b22c77a37a766e62ad533dc3f9b80fd5b260016487cecea55b095092446", + ], +) + +rpm( + name = "libarchive-0__3.5.3-4.el9.x86_64", + sha256 = "4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4c53176eafd8c449aef704b8fbc2d5401bb7d2ea0a67961956f318f2e9a2c7a4", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.aarch64", + sha256 = "737b5493221fbebb7d6578de00ccf9ee29a2685ef6cb6bc4705a4680384b63ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libarchive-3.5.3-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/737b5493221fbebb7d6578de00ccf9ee29a2685ef6cb6bc4705a4680384b63ae", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.s390x", + sha256 = "343b64738033626728e908dc8c3e186c64fb9eb1752f35a2cf5fefa5156fa593", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libarchive-3.5.3-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/343b64738033626728e908dc8c3e186c64fb9eb1752f35a2cf5fefa5156fa593", + ], +) + +rpm( + name = "libarchive-0__3.5.3-6.el9.x86_64", + sha256 = "a8f609bd9ce84d600fd4b6843c93025569cec32e3006d065a5e4323d2ff5696a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libarchive-3.5.3-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a8f609bd9ce84d600fd4b6843c93025569cec32e3006d065a5e4323d2ff5696a", + ], +) + +rpm( + name = "libarchive-0__3.7.7-4.el10.s390x", + sha256 = "6d1dedaf9597a0df9e485662dda1f971639912c40af3c7fbc1150dab8622900a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libarchive-3.7.7-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d1dedaf9597a0df9e485662dda1f971639912c40af3c7fbc1150dab8622900a", + ], +) + +rpm( + name = "libarchive-0__3.7.7-4.el10.x86_64", + sha256 = "604bd62429638f12bd4699692e75f1bc0c2be2558c3e8abdf85d03974c443194", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libarchive-3.7.7-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/604bd62429638f12bd4699692e75f1bc0c2be2558c3e8abdf85d03974c443194", + ], +) + +rpm( + name = "libasan-0__11.5.0-14.el9.aarch64", + sha256 = "e2c312abf632bae493826b22f82b80809c307b40e7993226655bae9c9bafa228", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libasan-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e2c312abf632bae493826b22f82b80809c307b40e7993226655bae9c9bafa228", + ], +) + +rpm( + name = "libasan-0__11.5.0-14.el9.s390x", + sha256 = "d341357ba1a1add96ff4d59a34005e8618cca59c5d378f58148b9310d1401682", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libasan-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d341357ba1a1add96ff4d59a34005e8618cca59c5d378f58148b9310d1401682", + ], +) + +rpm( + name = "libasan-0__14.3.1-4.4.el10.aarch64", + sha256 = "1d1728b4d1ac7cdc05a696ef8b4f65346e788a79e11e25ddd38f4cc189539a8e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libasan-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libasan-0__14.3.1-4.4.el10.s390x", + sha256 = "cb18cf1281793fac52d882eb27c367da6551ee7e9802d1a329770f4dd2edd8a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libasan-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.s390x", + sha256 = "56a2e5e9e6c2fde071486b174eeecec2631d3b40a6bfc036019e5cd6e590a49c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libassuan-2.5.5-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56a2e5e9e6c2fde071486b174eeecec2631d3b40a6bfc036019e5cd6e590a49c", + ], +) + +rpm( + name = "libassuan-0__2.5.5-3.el9.x86_64", + sha256 = "3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libassuan-2.5.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f7ab80145768029619033b31406a9aeef8c8f0d42a0c94ad464d8a3405e12b0", + ], +) + +rpm( + name = "libassuan-0__2.5.6-6.el10.s390x", + sha256 = "d31b659dd6036b990ea71c10c426df13f2f395685ea8674fcca49d6a5fbeb580", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libassuan-2.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d31b659dd6036b990ea71c10c426df13f2f395685ea8674fcca49d6a5fbeb580", + ], +) + +rpm( + name = "libassuan-0__2.5.6-6.el10.x86_64", + sha256 = "5cb1eff4efadf906bb8060bb41c205bf77eabe73142599053ae892ee7d85e9c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libassuan-2.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5cb1eff4efadf906bb8060bb41c205bf77eabe73142599053ae892ee7d85e9c0", + ], +) + +rpm( + name = "libatomic-0__11.5.0-14.el9.aarch64", + sha256 = "9111ad5dcd16ac04ee06dbedbc730bdf438d58f1f16af2de5cd3cdb3e346efbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libatomic-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9111ad5dcd16ac04ee06dbedbc730bdf438d58f1f16af2de5cd3cdb3e346efbe", + ], +) + +rpm( + name = "libatomic-0__11.5.0-14.el9.s390x", + sha256 = "b071b407128db07af4859894ee99fc7f1106be0a325bdb6242ca5d92752a3c5d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libatomic-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b071b407128db07af4859894ee99fc7f1106be0a325bdb6242ca5d92752a3c5d", + ], +) + +rpm( + name = "libatomic-0__14.3.1-4.4.el10.aarch64", + sha256 = "be72dc41f36eb4e8f01003b4ed4f45b921db5b8eced1fcde29b055a224b5d6d2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libatomic-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libatomic-0__14.3.1-4.4.el10.s390x", + sha256 = "bde0e892caec40bb5a2460e0b470d2e996b60678d50700927373fbcdd011fc7e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libatomic-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.aarch64", + sha256 = "a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libattr-2.5.1-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a0101ccea66aef376f4067c1002ebdfb5dbeeecd334047459b3855eff17a6fda", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.s390x", + sha256 = "c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libattr-2.5.1-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c37335be62aaca9f21f2b0b0312d3800e245f6e70fa8b57d03ab89cce863f2be", + ], +) + +rpm( + name = "libattr-0__2.5.1-3.el9.x86_64", + sha256 = "d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libattr-2.5.1-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d4db095a015e84065f27a642ee7829cd1690041ba8c51501f908cc34760c9409", + ], +) + +rpm( + name = "libattr-0__2.5.2-5.el10.aarch64", + sha256 = "37a06ff130ff4112ca431839607e4d7c583ec4b0191431aa9913bba754880040", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libattr-2.5.2-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/37a06ff130ff4112ca431839607e4d7c583ec4b0191431aa9913bba754880040", + ], +) + +rpm( + name = "libattr-0__2.5.2-5.el10.s390x", + sha256 = "583ef53e42b6928c6a707baee521a3161f0d00d094db96ce05b39ae4409c73f8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libattr-2.5.2-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/583ef53e42b6928c6a707baee521a3161f0d00d094db96ce05b39ae4409c73f8", + ], +) + +rpm( + name = "libattr-0__2.5.2-5.el10.x86_64", + sha256 = "2ec3c5ba70aaae97db5226f07476c3fd0adfeed15d7cce3b676288273c829274", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libattr-2.5.2-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ec3c5ba70aaae97db5226f07476c3fd0adfeed15d7cce3b676288273c829274", + ], +) + +rpm( + name = "libblkid-0__2.37.4-21.el9.x86_64", + sha256 = "2433f8829f894c7c5ba0639eb37a18a92632d4f9383551c901434b4353f96fc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libblkid-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2433f8829f894c7c5ba0639eb37a18a92632d4f9383551c901434b4353f96fc4", + ], +) + +rpm( + name = "libblkid-0__2.37.4-25.el9.aarch64", + sha256 = "40de20b6cbd0d5bf61e1576d47c154b349779be6790d8ad05d54cad94a8f9a3b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libblkid-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/40de20b6cbd0d5bf61e1576d47c154b349779be6790d8ad05d54cad94a8f9a3b", + ], +) + +rpm( + name = "libblkid-0__2.37.4-25.el9.s390x", + sha256 = "62d6027ed230599196800f12bbd058670aa4a8759c829c934e0b829c3996c288", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libblkid-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/62d6027ed230599196800f12bbd058670aa4a8759c829c934e0b829c3996c288", + ], +) + +rpm( + name = "libblkid-0__2.37.4-25.el9.x86_64", + sha256 = "2309af12b80fec77070d354fdae370ffa3e57209137b46098286895be5a484f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libblkid-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2309af12b80fec77070d354fdae370ffa3e57209137b46098286895be5a484f5", + ], +) + +rpm( + name = "libblkid-0__2.40.2-18.el10.aarch64", + sha256 = "67ab380cf5fc556fab3c5059885588f8c9318abc9e5627e61f825dbfc60f4d89", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libblkid-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libblkid-0__2.40.2-18.el10.s390x", + sha256 = "1575800e4ac6460c20042e4cfcd00d6f32dc9907068505ea0102702f88799066", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libblkid-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libblkid-0__2.40.2-18.el10.x86_64", + sha256 = "fcf4a4e003b682e00bba896f32ee14911f92b25f27c6df0f0d6e3cb91299718f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libblkid-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libbpf-2__1.5.0-1.el9.x86_64", + sha256 = "5280ff8fe8a1f217b54abeed8b357c4c3fd47fbcfa928483806effac723accba", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.5.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5280ff8fe8a1f217b54abeed8b357c4c3fd47fbcfa928483806effac723accba", + ], +) + +rpm( + name = "libbpf-2__1.5.0-3.el9.aarch64", + sha256 = "1aee4e44b6e5b6b0b888c2d994367efaa4c729521c925baef2e9f96c29813fa1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libbpf-1.5.0-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1aee4e44b6e5b6b0b888c2d994367efaa4c729521c925baef2e9f96c29813fa1", + ], +) + +rpm( + name = "libbpf-2__1.5.0-3.el9.s390x", + sha256 = "9087b5e9cc04fbffeaaa824b5fc050d41ad59cb7e0b3e2657810d4455308282b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbpf-1.5.0-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9087b5e9cc04fbffeaaa824b5fc050d41ad59cb7e0b3e2657810d4455308282b", + ], +) + +rpm( + name = "libbpf-2__1.5.0-3.el9.x86_64", + sha256 = "27859976d0cc4123f8f717dbb8e9b4031f685ac648851eb290b54b069d51c868", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbpf-1.5.0-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27859976d0cc4123f8f717dbb8e9b4031f685ac648851eb290b54b069d51c868", + ], +) + +rpm( + name = "libbpf-2__1.7.0-1.el10.aarch64", + sha256 = "f89a67afcbc8eacc5c8c40e7c30ec5a5aaa78e89bca1dd1032b89c8634bbc605", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libbpf-1.7.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f89a67afcbc8eacc5c8c40e7c30ec5a5aaa78e89bca1dd1032b89c8634bbc605", + ], +) + +rpm( + name = "libbpf-2__1.7.0-1.el10.s390x", + sha256 = "0d45b7988fb7d679b8f4f9e88439b086c0c086a1ba7853bfd376b5061ac3c12b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libbpf-1.7.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/0d45b7988fb7d679b8f4f9e88439b086c0c086a1ba7853bfd376b5061ac3c12b", + ], +) + +rpm( + name = "libbpf-2__1.7.0-1.el10.x86_64", + sha256 = "1379b88512429975bbbdd65c8737cbc793664bef2f0e8c2e04c1481b939c85ca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libbpf-1.7.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1379b88512429975bbbdd65c8737cbc793664bef2f0e8c2e04c1481b939c85ca", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-7.el9.x86_64", + sha256 = "5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbrotli-1.0.9-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5eb0c43339cf40cc8b668c9f2803b80aff8f149798002660947edf8d5a75de1a", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-9.el9.s390x", + sha256 = "aae2d2967058c0d6da0697788b37338a83dbb7c0a83c42e526051e2b12ee2c3f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libbrotli-1.0.9-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/aae2d2967058c0d6da0697788b37338a83dbb7c0a83c42e526051e2b12ee2c3f", + ], +) + +rpm( + name = "libbrotli-0__1.0.9-9.el9.x86_64", + sha256 = "b9add1a745e5a7edae289502896a3ac075fda4d097eb73c4cee592363cd976ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libbrotli-1.0.9-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b9add1a745e5a7edae289502896a3ac075fda4d097eb73c4cee592363cd976ed", + ], +) + +rpm( + name = "libbrotli-0__1.1.0-7.el10.s390x", + sha256 = "6deea1eafedaa040d5c7c4af870f2ae2edb6742f02cd56cdf07789cf2acd1359", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libbrotli-1.1.0-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6deea1eafedaa040d5c7c4af870f2ae2edb6742f02cd56cdf07789cf2acd1359", + ], +) + +rpm( + name = "libbrotli-0__1.1.0-7.el10.x86_64", + sha256 = "9b397443a3ffe381380af22b55b0cac0f02412b859f92888138fba5e1df5e15d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libbrotli-1.1.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9b397443a3ffe381380af22b55b0cac0f02412b859f92888138fba5e1df5e15d", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.aarch64", + sha256 = "acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/acaf7cc4d8f4926e8a7560af50c0e3248c75dea0ce95d8f0fe48d62088375695", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.s390x", + sha256 = "a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a663e91009f1daaf573f9f054918983b1a48cada23913a099795f3643471b7c1", + ], +) + +rpm( + name = "libburn-0__1.5.4-5.el9.x86_64", + sha256 = "356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/356d18d9694992d402013cf1eea1d5755e70ee57ab95a7dd9a9b1bca0ab57111", + ], +) + +rpm( + name = "libburn-0__1.5.6-6.el10.aarch64", + sha256 = "221ced92933bca63eb94d1ed60699f364e5d0b0b9915a0fba39d8b98d513d887", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libburn-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/221ced92933bca63eb94d1ed60699f364e5d0b0b9915a0fba39d8b98d513d887", + ], +) + +rpm( + name = "libburn-0__1.5.6-6.el10.s390x", + sha256 = "6ac13f60b7e3bee622332411d4ec87c77dbd23f5710edf73209d29bf85904e4d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libburn-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/6ac13f60b7e3bee622332411d4ec87c77dbd23f5710edf73209d29bf85904e4d", + ], +) + +rpm( + name = "libburn-0__1.5.6-6.el10.x86_64", + sha256 = "83ba66223a60bf93d13710b632ecc8c057c294a17f36ba31a18e16e7d4b97819", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libburn-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/83ba66223a60bf93d13710b632ecc8c057c294a17f36ba31a18e16e7d4b97819", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.aarch64", + sha256 = "7159fe4c1e6be9c8324632bfabcbc86ad8b7cb5105acb0b8a5c35774c93470f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-2.48-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7159fe4c1e6be9c8324632bfabcbc86ad8b7cb5105acb0b8a5c35774c93470f2", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.s390x", + sha256 = "2883f350016ef87b8f6aa33966023cb0f3c789bdcb36374037fc94096ee61bf7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-2.48-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2883f350016ef87b8f6aa33966023cb0f3c789bdcb36374037fc94096ee61bf7", + ], +) + +rpm( + name = "libcap-0__2.48-10.el9.x86_64", + sha256 = "bda5d981249ac16603228a4f544a15a140e1eed105ab1206da6bef9705cddee7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bda5d981249ac16603228a4f544a15a140e1eed105ab1206da6bef9705cddee7", + ], +) + +rpm( + name = "libcap-0__2.48-9.el9.x86_64", + sha256 = "7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-2.48-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d07ec8a6a0975d84c66adf21c885c41a5571ecb631055959265c60fda314111", + ], +) + +rpm( + name = "libcap-0__2.69-7.el10.aarch64", + sha256 = "38c8ab1a8883b39bf46006ed39b7834cfa0df2ca0a4825908f7da4ed631c8fc6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcap-2.69-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/38c8ab1a8883b39bf46006ed39b7834cfa0df2ca0a4825908f7da4ed631c8fc6", + ], +) + +rpm( + name = "libcap-0__2.69-7.el10.s390x", + sha256 = "3f7016928e759a177e4103d6c31dc0833ec43eae5836d871bc5ea540fd3d0c7b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcap-2.69-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3f7016928e759a177e4103d6c31dc0833ec43eae5836d871bc5ea540fd3d0c7b", + ], +) + +rpm( + name = "libcap-0__2.69-7.el10.x86_64", + sha256 = "54c14cb5c8dc3536f43d632d766ed302a8ecad2ad8efd6aa2d079dafc11d1cd9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcap-2.69-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/54c14cb5c8dc3536f43d632d766ed302a8ecad2ad8efd6aa2d079dafc11d1cd9", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.aarch64", + sha256 = "1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcap-ng-0.8.2-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1dfa7208abe1af5522523cabdabb73783ed1df4424dc8846eab8a570d010deaa", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.s390x", + sha256 = "9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcap-ng-0.8.2-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9b68fda78e685d347ae1b9e937613125d01d7c8cdb06226e3c57e6cb08b9f306", + ], +) + +rpm( + name = "libcap-ng-0__0.8.2-7.el9.x86_64", + sha256 = "62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcap-ng-0.8.2-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/62429b788acfb40dbc9da9951690c11e907e230879c790d139f73d0e85dd76f4", + ], +) + +rpm( + name = "libcap-ng-0__0.8.4-6.el10.aarch64", + sha256 = "993a88b692dbb7a73ec214c464d8c267155c87ebdb18fb3ecb8782a2f777ce31", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcap-ng-0.8.4-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/993a88b692dbb7a73ec214c464d8c267155c87ebdb18fb3ecb8782a2f777ce31", + ], +) + +rpm( + name = "libcap-ng-0__0.8.4-6.el10.s390x", + sha256 = "8256ca0cc7612b3bc6d2f86039c914f90c349fda27513cb42868242cb4949542", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcap-ng-0.8.4-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/8256ca0cc7612b3bc6d2f86039c914f90c349fda27513cb42868242cb4949542", + ], +) + +rpm( + name = "libcap-ng-0__0.8.4-6.el10.x86_64", + sha256 = "38b2ce6018bc0c73cdbc79f5cb2bad63045d84c308a56085a9de4adfd3250add", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcap-ng-0.8.4-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/38b2ce6018bc0c73cdbc79f5cb2bad63045d84c308a56085a9de4adfd3250add", + ], +) + +rpm( + name = "libcbor-0__0.11.0-3.el10.aarch64", + sha256 = "588538490e8d295a4b0833bfcec72eeb378e7175e5d1df3c50341f6537ba15a9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcbor-0.11.0-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "libcbor-0__0.11.0-3.el10.s390x", + sha256 = "cebf5e31b218be5724ff76f34f60e3ef673e821ca5b5a7ea60e1dea67cfd271a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcbor-0.11.0-3.el10.s390x.rpm", + ], +) + +rpm( + name = "libcbor-0__0.11.0-3.el10.x86_64", + sha256 = "49a800e8569ac3e22fbe1b3595683f9934cbeabc6fd03c1a224b97441af7d3ab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcbor-0.11.0-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-7.el9.x86_64", + sha256 = "d11e18dbfddd56538c476851d98bd96795f34045e14ebe7b3285f225c4b4b189", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d11e18dbfddd56538c476851d98bd96795f34045e14ebe7b3285f225c4b4b189", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.aarch64", + sha256 = "7bf194e4f69e548566ff21b178ae1f47d5e00f064bfa492616e4dd42f812f2a7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcom_err-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7bf194e4f69e548566ff21b178ae1f47d5e00f064bfa492616e4dd42f812f2a7", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.s390x", + sha256 = "b8aa8922757718f85c31dfc7c333434e576a52f9425e91f51db8fb082661c3ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcom_err-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8aa8922757718f85c31dfc7c333434e576a52f9425e91f51db8fb082661c3ff", + ], +) + +rpm( + name = "libcom_err-0__1.46.5-8.el9.x86_64", + sha256 = "ef43794f39d49b69e12506722e432a497e7f96038e26cab2c34476aad4b3d413", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcom_err-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef43794f39d49b69e12506722e432a497e7f96038e26cab2c34476aad4b3d413", + ], +) + +rpm( + name = "libcom_err-0__1.47.1-5.el10.aarch64", + sha256 = "97380e5fe0fce42be70418333bae2d5d9044c5f7fbda30c9b28f7776718e76a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcom_err-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/97380e5fe0fce42be70418333bae2d5d9044c5f7fbda30c9b28f7776718e76a2", + ], +) + +rpm( + name = "libcom_err-0__1.47.1-5.el10.s390x", + sha256 = "09f3032ebafe4e8d93152c940f160b68df98b1a1c978fae86b8524a8d7713467", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcom_err-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/09f3032ebafe4e8d93152c940f160b68df98b1a1c978fae86b8524a8d7713467", + ], +) + +rpm( + name = "libcom_err-0__1.47.1-5.el10.x86_64", + sha256 = "37b036aa4cb44adade9c4206f2eea389035387082be0d2eda0249d9fd07fb842", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcom_err-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/37b036aa4cb44adade9c4206f2eea389035387082be0d2eda0249d9fd07fb842", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.s390x", + sha256 = "6000e568152331fe40da9b244e579aa22c404bed59b4f33b08de2c962f5849b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libconfig-1.7.2-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6000e568152331fe40da9b244e579aa22c404bed59b4f33b08de2c962f5849b4", + ], +) + +rpm( + name = "libconfig-0__1.7.2-9.el9.x86_64", + sha256 = "e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libconfig-1.7.2-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0d4d2cf8215404750c3975a19e2b7cd2c9e9e1e5c539d3fd93532775fd2ed16", + ], +) + +rpm( + name = "libconfig-0__1.7.3-10.el10.s390x", + sha256 = "2df21ddec6f917d330835cee60c9c71a604fa3f988aabe5f1deeebd76582dc5a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libconfig-1.7.3-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2df21ddec6f917d330835cee60c9c71a604fa3f988aabe5f1deeebd76582dc5a", + ], +) + +rpm( + name = "libconfig-0__1.7.3-10.el10.x86_64", + sha256 = "5bee52a5f0599fc6a59df28222e6e831c441887471412a3d18e6d13ddfaaa881", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libconfig-1.7.3-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5bee52a5f0599fc6a59df28222e6e831c441887471412a3d18e6d13ddfaaa881", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-31.el9.x86_64", + sha256 = "6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-31.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6438485e38465ee944e25abedcf4a1761564fe5202f05a02c71e4c880255b539", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-40.el9.aarch64", + sha256 = "888e91e92f094f60d88b501ae583ec1e440fb3f9ba5faa41ba520f8c11623ea2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libcurl-minimal-7.76.1-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/888e91e92f094f60d88b501ae583ec1e440fb3f9ba5faa41ba520f8c11623ea2", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-40.el9.s390x", + sha256 = "e9bb1bbb6e5239f02eded93f1774e535d0d215c91b59149c76a3101a26422f33", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libcurl-minimal-7.76.1-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e9bb1bbb6e5239f02eded93f1774e535d0d215c91b59149c76a3101a26422f33", + ], +) + +rpm( + name = "libcurl-minimal-0__7.76.1-40.el9.x86_64", + sha256 = "e2153e0e701347fd2cbf7660905b21ad9707342b4c1a715a8d49aaf555471d51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-7.76.1-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e2153e0e701347fd2cbf7660905b21ad9707342b4c1a715a8d49aaf555471d51", + ], +) + +rpm( + name = "libcurl-minimal-0__8.12.1-4.el10.aarch64", + sha256 = "17a02035eee04463ae727468fb756a7088e83fe3db93138b8a1e5a6d8a7b2904", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libcurl-minimal-8.12.1-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/17a02035eee04463ae727468fb756a7088e83fe3db93138b8a1e5a6d8a7b2904", + ], +) + +rpm( + name = "libcurl-minimal-0__8.12.1-4.el10.s390x", + sha256 = "4acfbb95ccb0ba29bd9598472942f3df90a6e3bbe7e4ec7893ec92dd97636a66", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libcurl-minimal-8.12.1-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4acfbb95ccb0ba29bd9598472942f3df90a6e3bbe7e4ec7893ec92dd97636a66", + ], +) + +rpm( + name = "libcurl-minimal-0__8.12.1-4.el10.x86_64", + sha256 = "053872b16ba35bdac16d7e3b3bed01fde3143face1ac9292dde9ac9b44a96758", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libcurl-minimal-8.12.1-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/053872b16ba35bdac16d7e3b3bed01fde3143face1ac9292dde9ac9b44a96758", + ], +) + +rpm( + name = "libdb-0__5.3.28-55.el9.x86_64", + sha256 = "e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-55.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e28608db5eaa3ee38e8bc0d6be1831048da1e638920a6f16a8084e72e2ebf6c9", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.aarch64", + sha256 = "32cfcb3dbd040c206ead6aae6bb3378246af95ab2c7ba18a9db7ec0cec649f34", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libdb-5.3.28-57.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/32cfcb3dbd040c206ead6aae6bb3378246af95ab2c7ba18a9db7ec0cec649f34", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.s390x", + sha256 = "5bae96e362fb4731b841f84d22b8ec876eeca2519404625afc51b5ae9fcd6326", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libdb-5.3.28-57.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5bae96e362fb4731b841f84d22b8ec876eeca2519404625afc51b5ae9fcd6326", + ], +) + +rpm( + name = "libdb-0__5.3.28-57.el9.x86_64", + sha256 = "17f7fd8c15436826da5ac9d0428ecb83feec18c01b6c5057ab9b85ab97314c96", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libdb-5.3.28-57.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/17f7fd8c15436826da5ac9d0428ecb83feec18c01b6c5057ab9b85ab97314c96", + ], +) + +rpm( + name = "libeconf-0__0.4.1-4.el9.x86_64", + sha256 = "ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libeconf-0.4.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ed519cc2e9031e2bf03275b28c7cca6520ae916d0a7edbbc69f327c1b70ed6cc", + ], +) + +rpm( + name = "libeconf-0__0.4.1-5.el9.aarch64", + sha256 = "40675233785bf5ffc0e97cd559efd2e9f4b8b8c392013bb6c9441c6e01b332d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libeconf-0.4.1-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/40675233785bf5ffc0e97cd559efd2e9f4b8b8c392013bb6c9441c6e01b332d6", + ], +) + +rpm( + name = "libeconf-0__0.4.1-5.el9.s390x", + sha256 = "025025697e1f9d222fb6224be5f6a463ad630971c67f4a55ff8d70fc25780443", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libeconf-0.4.1-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/025025697e1f9d222fb6224be5f6a463ad630971c67f4a55ff8d70fc25780443", + ], +) + +rpm( + name = "libeconf-0__0.4.1-5.el9.x86_64", + sha256 = "aba2474e57729f395e1918638270e7aa7cf8de8f3fc31b81f9412888320459e8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libeconf-0.4.1-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aba2474e57729f395e1918638270e7aa7cf8de8f3fc31b81f9412888320459e8", + ], +) + +rpm( + name = "libeconf-0__0.6.2-4.el10.aarch64", + sha256 = "1bb73420b4f72fb200ccc560224107e1ae62b8a7156051a88c9239c9def47983", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libeconf-0.6.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1bb73420b4f72fb200ccc560224107e1ae62b8a7156051a88c9239c9def47983", + ], +) + +rpm( + name = "libeconf-0__0.6.2-4.el10.s390x", + sha256 = "eb314cc56ffe80a641f97664b4d5a7313e3be7f1bef79e6636bcaab5751b350f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libeconf-0.6.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/eb314cc56ffe80a641f97664b4d5a7313e3be7f1bef79e6636bcaab5751b350f", + ], +) + +rpm( + name = "libeconf-0__0.6.2-4.el10.x86_64", + sha256 = "1cdb8e5bf4d7680e41ebb2b76da3aab34c1ece4bba2fed952d8f49da69117dfa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libeconf-0.6.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1cdb8e5bf4d7680e41ebb2b76da3aab34c1ece4bba2fed952d8f49da69117dfa", + ], +) + +rpm( + name = "libevent-0__2.1.12-16.el10.aarch64", + sha256 = "275530b6896bec203e5cdf0cb427c78da43f5b01d3d26b0a2b239f2ad49fcda2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libevent-2.1.12-16.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/275530b6896bec203e5cdf0cb427c78da43f5b01d3d26b0a2b239f2ad49fcda2", + ], +) + +rpm( + name = "libevent-0__2.1.12-16.el10.s390x", + sha256 = "11e041d07e9f2f30736efa420ed437e11676bc796914f22c7b3fc322f08e997a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libevent-2.1.12-16.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/11e041d07e9f2f30736efa420ed437e11676bc796914f22c7b3fc322f08e997a", + ], +) + +rpm( + name = "libevent-0__2.1.12-16.el10.x86_64", + sha256 = "f8f5c3946bbd53590978e9aeca3064d81ab580492c4ff8044c48797870276f47", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libevent-2.1.12-16.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f8f5c3946bbd53590978e9aeca3064d81ab580492c4ff8044c48797870276f47", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.aarch64", + sha256 = "abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libevent-2.1.12-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/abea343484ceb42612ce394cf7cf0a191ae7d6ea93391fa32721ff7e04b0bb28", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.s390x", + sha256 = "5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libevent-2.1.12-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c1bdffe7f5dfc8175e2b06acbb4154b272205c40d3c19b88a0d1fde095728b0", + ], +) + +rpm( + name = "libevent-0__2.1.12-8.el9.x86_64", + sha256 = "5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libevent-2.1.12-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5683f51c9b02d5f4a3324dc6dacb3a84f0c3710cdc46fa7f04df64b60d38a62b", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-21.el9.x86_64", + sha256 = "9a594c51e3bf09cb5016485ee2f143de6db960ff1c7e135c0097f59fa51b2edb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libfdisk-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9a594c51e3bf09cb5016485ee2f143de6db960ff1c7e135c0097f59fa51b2edb", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-25.el9.aarch64", + sha256 = "d724b6dd4dc886b1d598edc24d30ebb06dfc675252073e04838c56d0ed18e173", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libfdisk-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d724b6dd4dc886b1d598edc24d30ebb06dfc675252073e04838c56d0ed18e173", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-25.el9.s390x", + sha256 = "7584b9f892c5378bfa976d40c1e02e5a9ee058fd09ee14658aa13b1ab3448b6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libfdisk-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7584b9f892c5378bfa976d40c1e02e5a9ee058fd09ee14658aa13b1ab3448b6b", + ], +) + +rpm( + name = "libfdisk-0__2.37.4-25.el9.x86_64", + sha256 = "57e990f6940ce2caed0d9578838549576535ad83f93ffc97df3bcbaf1ae72567", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libfdisk-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/57e990f6940ce2caed0d9578838549576535ad83f93ffc97df3bcbaf1ae72567", + ], +) + +rpm( + name = "libfdisk-0__2.40.2-18.el10.aarch64", + sha256 = "6551849727350c641fe821f772e5777bd8422db3403a54fbcd66c7b03896371f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libfdisk-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libfdisk-0__2.40.2-18.el10.s390x", + sha256 = "35bac963613af20328d16c8051c7bd86a147ac2570c01ab516e4c325b6db52c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libfdisk-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libfdisk-0__2.40.2-18.el10.x86_64", + sha256 = "48fc0ae109cf63e1fdef4ef81839e6a817ce07567e2631d22f6c057795e25b93", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libfdisk-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.aarch64", + sha256 = "19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libfdt-1.6.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19cd82e2bbdd6254169b267e645564acd0911e02fafaf6e3ad9893cd1f9d3d67", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.s390x", + sha256 = "fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libfdt-1.6.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd91a54a5655e7727f059dd3a4c942cf81137e1eb30581a6d00bcc360aedacc4", + ], +) + +rpm( + name = "libfdt-0__1.6.0-7.el9.x86_64", + sha256 = "a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfdt-1.6.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a071b9d517505a2ff8642de7ac094faa689b96122c0a3e9ce86933aa1dea525f", + ], +) + +rpm( + name = "libfdt-0__1.7.0-12.el10.aarch64", + sha256 = "2a568810d2b8fbd8425eeb64738491a514feaec766f1b90d320caf320e543134", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libfdt-1.7.0-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2a568810d2b8fbd8425eeb64738491a514feaec766f1b90d320caf320e543134", + ], +) + +rpm( + name = "libfdt-0__1.7.0-12.el10.s390x", + sha256 = "bd49a0dac4411aca4319b6dc670e0fab0fb9672eaedd83aab40452878fbe46ac", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libfdt-1.7.0-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bd49a0dac4411aca4319b6dc670e0fab0fb9672eaedd83aab40452878fbe46ac", + ], +) + +rpm( + name = "libfdt-0__1.7.0-12.el10.x86_64", + sha256 = "9c519693ffe97be0dda3e06ea9708446b2692b5fd72b8cfb93f0b78ddc6418d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libfdt-1.7.0-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9c519693ffe97be0dda3e06ea9708446b2692b5fd72b8cfb93f0b78ddc6418d5", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.aarch64", + sha256 = "da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libffi-3.4.2-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da6d3f1b21c23a97e61c35fde044aca5bc9f1097ffdcb387759f544c61548301", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.s390x", + sha256 = "25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libffi-3.4.2-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/25556c4a1bdb85f426595faa76996616a45986c93cac4361c2371f2e9b737304", + ], +) + +rpm( + name = "libffi-0__3.4.2-8.el9.x86_64", + sha256 = "110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libffi-3.4.2-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/110d5008364a65b38b832949970886fdccb97762b0cdb257571cc0c84182d7d0", + ], +) + +rpm( + name = "libffi-0__3.4.4-10.el10.aarch64", + sha256 = "87b620ad4069f0a9623913acc568a2659bcee3695293b275a9f09b809437bf6e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libffi-3.4.4-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/87b620ad4069f0a9623913acc568a2659bcee3695293b275a9f09b809437bf6e", + ], +) + +rpm( + name = "libffi-0__3.4.4-10.el10.s390x", + sha256 = "592be60a3f4ee70236cc254894f587012ce533a6f4fc74031bf6674792782338", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libffi-3.4.4-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/592be60a3f4ee70236cc254894f587012ce533a6f4fc74031bf6674792782338", + ], +) + +rpm( + name = "libffi-0__3.4.4-10.el10.x86_64", + sha256 = "72aff2f3b4291f5418491e612be4f92d65a9239224a4906c0c63dbc4fc668e73", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libffi-3.4.4-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/72aff2f3b4291f5418491e612be4f92d65a9239224a4906c0c63dbc4fc668e73", + ], +) + +rpm( + name = "libfido2-0__1.14.0-7.el10.aarch64", + sha256 = "8ac9963cf2e29f6450213363a9f963747e185cbab7b9d472d0cd275768139d4a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libfido2-1.14.0-7.el10.aarch64.rpm", + ], +) + +rpm( + name = "libfido2-0__1.14.0-7.el10.s390x", + sha256 = "3ff583eaa691f84cb0f3f4b49b7454880f2aca54db749a2532c03d0f361de529", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libfido2-1.14.0-7.el10.s390x.rpm", + ], +) + +rpm( + name = "libfido2-0__1.14.0-7.el10.x86_64", + sha256 = "5652d77a1394ba80ece520e817832224a03b693d172b7b32587d0fc502419bdd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libfido2-1.14.0-7.el10.x86_64.rpm", + ], +) + +rpm( + name = "libgcc-0__11.5.0-14.el9.aarch64", + sha256 = "ed0598c9cb4f10406c662d17ac2367eeba1e207683953410146927bba3d92c46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcc-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ed0598c9cb4f10406c662d17ac2367eeba1e207683953410146927bba3d92c46", + ], +) + +rpm( + name = "libgcc-0__11.5.0-14.el9.s390x", + sha256 = "6ccddf8ec532ddc49d7b857ad46cb5404efc30a1ba2d4af575db77c402efdb8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcc-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6ccddf8ec532ddc49d7b857ad46cb5404efc30a1ba2d4af575db77c402efdb8e", + ], +) + +rpm( + name = "libgcc-0__11.5.0-14.el9.x86_64", + sha256 = "8e9b2f611466e02703348bfd7fbdc40035898c804dcc417b920d6ad77bf077e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e9b2f611466e02703348bfd7fbdc40035898c804dcc417b920d6ad77bf077e9", + ], +) + +rpm( + name = "libgcc-0__11.5.0-5.el9.x86_64", + sha256 = "442c065a815212ac21760ff9f0bd93e9f5d5972925d9e987a421cbf6ebba41d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcc-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/442c065a815212ac21760ff9f0bd93e9f5d5972925d9e987a421cbf6ebba41d2", + ], +) + +rpm( + name = "libgcc-0__14.3.1-4.4.el10.aarch64", + sha256 = "0f93f59846c59092b90d4170499f7b4c61de30c2b359cf853f4251dc09c7629e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libgcc-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libgcc-0__14.3.1-4.4.el10.s390x", + sha256 = "bbbc0d0e0ca942e402d9ab30b693566e596ce4b6a404f2e2c9f3d9e5fcb56924", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgcc-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libgcc-0__14.3.1-4.4.el10.x86_64", + sha256 = "ffbc36198762cf0ea31e129109744f85fbc9b708faf5a34201e9d4c54c9a1422", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgcc-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.aarch64", + sha256 = "932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgcrypt-1.10.0-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/932bfe51b207e2ad8a0bd2b89e2fb33df73f3993586aaa4cc60576f57795e4db", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.s390x", + sha256 = "cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgcrypt-1.10.0-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/cf30c86fc1a18f504d639d3cbcf9e431af1ea639e6a5e7db1f6d30b763dd51a8", + ], +) + +rpm( + name = "libgcrypt-0__1.10.0-11.el9.x86_64", + sha256 = "0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgcrypt-1.10.0-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0323a74a5ad27bc3dc4ac4e9565825f37dc58b2a4800adbf33f767fa7a267c35", + ], +) + +rpm( + name = "libgcrypt-0__1.11.0-6.el10.s390x", + sha256 = "b4383e8187d076c47b732487866eeebc0e40c1474e0dd6d927dfca6172cb274f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgcrypt-1.11.0-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/b4383e8187d076c47b732487866eeebc0e40c1474e0dd6d927dfca6172cb274f", + ], +) + +rpm( + name = "libgcrypt-0__1.11.0-6.el10.x86_64", + sha256 = "1be7cfbc9f69f9e2b3d3f0621e14ded96e27d1c334decb5c88d1e396edf825e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgcrypt-1.11.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1be7cfbc9f69f9e2b3d3f0621e14ded96e27d1c334decb5c88d1e396edf825e2", + ], +) + +rpm( + name = "libgomp-0__11.5.0-14.el9.aarch64", + sha256 = "24d684550fda70ed7eaf592393f78249fb8b0f4879793cdcd36e08c7b9af4ff5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgomp-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/24d684550fda70ed7eaf592393f78249fb8b0f4879793cdcd36e08c7b9af4ff5", + ], +) + +rpm( + name = "libgomp-0__11.5.0-14.el9.s390x", + sha256 = "39a911cdfa8dfbef686c9f2ba74f17b0abafe30ef99f93cae00e3cd1d8d0571a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgomp-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/39a911cdfa8dfbef686c9f2ba74f17b0abafe30ef99f93cae00e3cd1d8d0571a", + ], +) + +rpm( + name = "libgomp-0__11.5.0-14.el9.x86_64", + sha256 = "a2b750f8588cfb3d4caefea5f25a8585ed732775ab20dd243531ec136c21476d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2b750f8588cfb3d4caefea5f25a8585ed732775ab20dd243531ec136c21476d", + ], +) + +rpm( + name = "libgomp-0__11.5.0-5.el9.x86_64", + sha256 = "0158d5640d1f4b3841b681fa26a17361c56d7b1231e64eb163e3d75155913053", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgomp-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0158d5640d1f4b3841b681fa26a17361c56d7b1231e64eb163e3d75155913053", + ], +) + +rpm( + name = "libgomp-0__14.3.1-4.4.el10.aarch64", + sha256 = "63c5829dbcc69c44de060cee7ee1f8a68c93d81107808f7b6941642b52694e3c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libgomp-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libgomp-0__14.3.1-4.4.el10.s390x", + sha256 = "a9e15dd3591b45f9c71bac57a880f9e2edee06842ff475e67d27469dbb7b573c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgomp-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libgomp-0__14.3.1-4.4.el10.x86_64", + sha256 = "6f9e43fe4ff233974a5f9405c8ee5535b6999e2214cab947f57250133816c6a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgomp-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.aarch64", + sha256 = "ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libgpg-error-1.42-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ffeb04823b5317c7e016542c8ecc5180c7824f8b59a180f2434fd096a34a9105", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.s390x", + sha256 = "655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libgpg-error-1.42-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/655367cd72f1908dbc2e42fee35974447d33eae7ec07249d3df098a6512d4601", + ], +) + +rpm( + name = "libgpg-error-0__1.42-5.el9.x86_64", + sha256 = "a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgpg-error-1.42-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a1883804c376f737109f4dff06077d1912b90150a732d11be7bc5b3b67e512fe", + ], +) + +rpm( + name = "libgpg-error-0__1.50-2.el10.s390x", + sha256 = "d2ae277868010dcf3003a59234b70743f2ff0846e0f8aba6cf349de19d6c2173", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libgpg-error-1.50-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2ae277868010dcf3003a59234b70743f2ff0846e0f8aba6cf349de19d6c2173", + ], +) + +rpm( + name = "libgpg-error-0__1.50-2.el10.x86_64", + sha256 = "b7d74c79f82abf581fdb5b9fbd0b3792640c26780652036be284347b7b339fff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libgpg-error-1.50-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b7d74c79f82abf581fdb5b9fbd0b3792640c26780652036be284347b7b339fff", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-3.el9.x86_64", + sha256 = "1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86", + urls = ["https://storage.googleapis.com/builddeps/1a42f3efec4fba203e3dff85ef391d1ca3573d3d6896601afe9bd17fb15dbd86"], +) + +rpm( + name = "libguestfs-1__1.54.0-9.el9.s390x", + sha256 = "612deb549f07c32689421856afa195f003ec9fb2ac9161dfa8b4f631348cdaef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libguestfs-1.54.0-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/612deb549f07c32689421856afa195f003ec9fb2ac9161dfa8b4f631348cdaef", + ], +) + +rpm( + name = "libguestfs-1__1.54.0-9.el9.x86_64", + sha256 = "262f8449b469e08285e008ac903a02da4587560e3c3c11f695f0abc4870ee627", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libguestfs-1.54.0-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/262f8449b469e08285e008ac903a02da4587560e3c3c11f695f0abc4870ee627", + ], +) + +rpm( + name = "libguestfs-1__1.58.1-2.el10.s390x", + sha256 = "5546a48cbc10fe6dac94e219d9458be67cfb047a60482e4429987461a4f7ee71", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libguestfs-1.58.1-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5546a48cbc10fe6dac94e219d9458be67cfb047a60482e4429987461a4f7ee71", + ], +) + +rpm( + name = "libguestfs-1__1.58.1-2.el10.x86_64", + sha256 = "9e258c41aeb346fd4e37d13a3346f89c9a5d1354586da91567a948e520da78bd", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libguestfs-1.58.1-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9e258c41aeb346fd4e37d13a3346f89c9a5d1354586da91567a948e520da78bd", + ], +) + +rpm( + name = "libibverbs-0__54.0-1.el9.x86_64", + sha256 = "b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b57effbc14e02e546a6e94bf8247f2dbfe24b5da0b95691ba3979b3652002b77", + ], +) + +rpm( + name = "libibverbs-0__61.0-1.el10.aarch64", + sha256 = "b0dc731c64d219ff6c9a34e9342d1b20c5989329a8ccf4ec1ddce2e73e907aad", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libibverbs-61.0-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libibverbs-0__61.0-1.el10.s390x", + sha256 = "380ef8d3445d73c8024d54eced9c2128ed7e09be1ef27c6351de878ad2103b39", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libibverbs-61.0-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libibverbs-0__61.0-1.el10.x86_64", + sha256 = "88dca8a716e29a92ebc90427d331c3039e3f333d4977a008a3359f1ea07f61cc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libibverbs-61.0-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libibverbs-0__61.0-2.el9.aarch64", + sha256 = "ef89a4e7bb3dcaf8967b83b97b8f8f2820a7ab9d6e1a042c3babe316b10f91ee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libibverbs-61.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ef89a4e7bb3dcaf8967b83b97b8f8f2820a7ab9d6e1a042c3babe316b10f91ee", + ], +) + +rpm( + name = "libibverbs-0__61.0-2.el9.s390x", + sha256 = "a515a7d9cea9d8d82ef327460795cd7fe41299684ae1e514e7fb3015db0f8ac8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libibverbs-61.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a515a7d9cea9d8d82ef327460795cd7fe41299684ae1e514e7fb3015db0f8ac8", + ], +) + +rpm( + name = "libibverbs-0__61.0-2.el9.x86_64", + sha256 = "f28e91c9e94d8a9dc0e418be86422c261d1018d6bae88ae66b51f1cce57c23c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libibverbs-61.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f28e91c9e94d8a9dc0e418be86422c261d1018d6bae88ae66b51f1cce57c23c4", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.aarch64", + sha256 = "6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libidn2-2.3.0-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6ed96112059449aa37b99d4d4e3b5d089c34afefbd9b618691bed8c206c4d441", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.s390x", + sha256 = "716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libidn2-2.3.0-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/716716b688d4b702cee523a82d4ee035675f01ee404eb7dd7f2ef63d3389bb66", + ], +) + +rpm( + name = "libidn2-0__2.3.0-7.el9.x86_64", + sha256 = "f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libidn2-2.3.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f7fa1ad2fcd86beea5d4d965994c21dc98f47871faff14f73940190c754ab244", + ], +) + +rpm( + name = "libidn2-0__2.3.7-3.el10.aarch64", + sha256 = "947248aeedd08f88d9490f3020dee6416595cf8d25e15738c306d55e9cae8bfc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libidn2-2.3.7-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/947248aeedd08f88d9490f3020dee6416595cf8d25e15738c306d55e9cae8bfc", + ], +) + +rpm( + name = "libidn2-0__2.3.7-3.el10.s390x", + sha256 = "7d75542211c9b7b8e53aaf6aee0dc430f091414fb2ca755baadc35f844bded75", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libidn2-2.3.7-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7d75542211c9b7b8e53aaf6aee0dc430f091414fb2ca755baadc35f844bded75", + ], +) + +rpm( + name = "libidn2-0__2.3.7-3.el10.x86_64", + sha256 = "04ae61bbe2cc0db7581d6f96a562b9b87a8a4dba714a0cf2c73bba6306e94c27", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libidn2-2.3.7-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/04ae61bbe2cc0db7581d6f96a562b9b87a8a4dba714a0cf2c73bba6306e94c27", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.aarch64", + sha256 = "1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisoburn-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1a81eca953e8c268f4c7e9fe41b81589c056888649924d9717215fefefe2f4d6", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.s390x", + sha256 = "0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisoburn-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0e137123b209360ec496522cf6da2b6eed11eade27d1b61685e6d4387b984464", + ], +) + +rpm( + name = "libisoburn-0__1.5.4-5.el9.x86_64", + sha256 = "ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisoburn-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ef66466bb16b1955cf65715240f371d6bc1aa018a73f9c8c1b28ba0ce3bc5f41", + ], +) + +rpm( + name = "libisoburn-0__1.5.6-6.el10.aarch64", + sha256 = "038aa1a45c117b4c4abbeedc3f67faa01a66570bc554f0e53955ce83a26e7281", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libisoburn-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/038aa1a45c117b4c4abbeedc3f67faa01a66570bc554f0e53955ce83a26e7281", + ], +) + +rpm( + name = "libisoburn-0__1.5.6-6.el10.s390x", + sha256 = "52fa5b55814330bf00ce834de3fa86c0dff29691feb242800f04cc13c44f2f3a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libisoburn-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/52fa5b55814330bf00ce834de3fa86c0dff29691feb242800f04cc13c44f2f3a", + ], +) + +rpm( + name = "libisoburn-0__1.5.6-6.el10.x86_64", + sha256 = "6f41c5e8e0d9dedf3c0b07f2ddc0748870cb18ed15a23dc22038a022c1d38e74", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libisoburn-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6f41c5e8e0d9dedf3c0b07f2ddc0748870cb18ed15a23dc22038a022c1d38e74", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.aarch64", + sha256 = "0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libisofs-1.5.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0f4c8376add266f01328ea001c580ef9258c0ce39c26906226871c934a159e88", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.s390x", + sha256 = "d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libisofs-1.5.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d6b426b1fc4c4343c66bc6aac25e18d643caa35bd1a103f710eef1c528bef299", + ], +) + +rpm( + name = "libisofs-0__1.5.4-4.el9.x86_64", + sha256 = "78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libisofs-1.5.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/78abca0dc6134189106ff550986cc059dc0edea129e572a742d2cc0b934c2d13", + ], +) + +rpm( + name = "libisofs-0__1.5.6-6.el10.aarch64", + sha256 = "cacea726d7dd126a364ec2431f49417b884287c84664042d51d59011acac34d6", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libisofs-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cacea726d7dd126a364ec2431f49417b884287c84664042d51d59011acac34d6", + ], +) + +rpm( + name = "libisofs-0__1.5.6-6.el10.s390x", + sha256 = "655af71fa634d1bb1c86b6c4810c452c98c1772dc9d55da3e3e9f2413bafc293", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libisofs-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/655af71fa634d1bb1c86b6c4810c452c98c1772dc9d55da3e3e9f2413bafc293", + ], +) + +rpm( + name = "libisofs-0__1.5.6-6.el10.x86_64", + sha256 = "a61eda57352e86657ca99fc774d0d74c0fbd67dad5bcd02139ff6de466a038ac", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libisofs-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a61eda57352e86657ca99fc774d0d74c0fbd67dad5bcd02139ff6de466a038ac", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.s390x", + sha256 = "10e17f1f886f90259f915e855389f3e3852fddd52be35110ebe0d0f4b9b4f51a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libksba-1.5.1-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/10e17f1f886f90259f915e855389f3e3852fddd52be35110ebe0d0f4b9b4f51a", + ], +) + +rpm( + name = "libksba-0__1.5.1-7.el9.x86_64", + sha256 = "8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libksba-1.5.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8c2a4312f0a700286e1c3630f62dba6d06e7a4c07a17182ca97f2d40d0b4c6a0", + ], +) + +rpm( + name = "libksba-0__1.6.7-2.el10.s390x", + sha256 = "f4a0e294968ce54ad30e4de5baabcdebd7a9db7900266e4feb7cadecd7f18cba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libksba-1.6.7-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f4a0e294968ce54ad30e4de5baabcdebd7a9db7900266e4feb7cadecd7f18cba", + ], +) + +rpm( + name = "libksba-0__1.6.7-2.el10.x86_64", + sha256 = "2bfa8330ad9c63eaecd2bd1d0989625e812d853a85c505cb759a2d1c06750607", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libksba-1.6.7-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2bfa8330ad9c63eaecd2bd1d0989625e812d853a85c505cb759a2d1c06750607", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.aarch64", + sha256 = "c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmnl-1.0.4-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c4d87c6439aa762891b024c0213df47af50e5b0683ffd827013bd02882d7d9b3", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.s390x", + sha256 = "344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmnl-1.0.4-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/344f21dedaaad1ddc5279e31a4dafd9354662a61f010249d86a424c903c4415a", + ], +) + +rpm( + name = "libmnl-0__1.0.4-16.el9.x86_64", + sha256 = "e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmnl-1.0.4-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e60f3be453b44ea04bb596594963be1e1b3f4377f87b4ff923d612eae15740ce", + ], +) + +rpm( + name = "libmnl-0__1.0.5-7.el10.aarch64", + sha256 = "786a9caea9de8f4529e5ec07ac24c9cfccd50ee5f4b045c37dbd4eb074b34f34", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libmnl-1.0.5-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/786a9caea9de8f4529e5ec07ac24c9cfccd50ee5f4b045c37dbd4eb074b34f34", + ], +) + +rpm( + name = "libmnl-0__1.0.5-7.el10.s390x", + sha256 = "bb6229f5c62e69828f94cd16f0086115e17ea9c9ab831ad14781f9b9807cd3d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libmnl-1.0.5-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bb6229f5c62e69828f94cd16f0086115e17ea9c9ab831ad14781f9b9807cd3d8", + ], +) + +rpm( + name = "libmnl-0__1.0.5-7.el10.x86_64", + sha256 = "1e1d36725d958fc3f9016cc85b238bf5462a43ae7be144d0a4a72be0982d68ce", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libmnl-1.0.5-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1e1d36725d958fc3f9016cc85b238bf5462a43ae7be144d0a4a72be0982d68ce", + ], +) + +rpm( + name = "libmount-0__2.37.4-21.el9.x86_64", + sha256 = "d8bfc70d1a9a594569c8c95bda682804a20bb4ee602db3efa7b6e76d289ecc66", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmount-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8bfc70d1a9a594569c8c95bda682804a20bb4ee602db3efa7b6e76d289ecc66", + ], +) + +rpm( + name = "libmount-0__2.37.4-25.el9.aarch64", + sha256 = "903e1c5a61a57eafa8b68d5d23b1288cae061b65fdd4a942933cf8862ee4b1e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libmount-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/903e1c5a61a57eafa8b68d5d23b1288cae061b65fdd4a942933cf8862ee4b1e3", + ], +) + +rpm( + name = "libmount-0__2.37.4-25.el9.s390x", + sha256 = "e4f81986fd3609aeaf6099697a7aebcd72dc96f160ee79c3dc2e8c8c5f1df10b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libmount-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e4f81986fd3609aeaf6099697a7aebcd72dc96f160ee79c3dc2e8c8c5f1df10b", + ], +) + +rpm( + name = "libmount-0__2.37.4-25.el9.x86_64", + sha256 = "ffb1ab2134b59539b097ce4a3c5287c61d2d4a626f512dbb93036d90ce2d755a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libmount-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ffb1ab2134b59539b097ce4a3c5287c61d2d4a626f512dbb93036d90ce2d755a", + ], +) + +rpm( + name = "libmount-0__2.40.2-18.el10.aarch64", + sha256 = "d69eef12863a3d4151fb962d6b21e266b2d002f61361a4796068396ecb596c1e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libmount-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libmount-0__2.40.2-18.el10.s390x", + sha256 = "7f9ce4256596ae04bf08ecef2dd139e8955c1938889b49d332b93e225346bd1f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libmount-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libmount-0__2.40.2-18.el10.x86_64", + sha256 = "01c23ccc522521ddac819e2b8089320f1e8cfdfbdc36ea6b7688f0065bd4f427", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libmount-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.aarch64", + sha256 = "489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libmpc-1.2.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/489bd89037b1a77d696e391315c740f185e6447aacdb1d7fe84b411491c34b88", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.s390x", + sha256 = "3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libmpc-1.2.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d2a320348dd3d396005a0c2a75001fb1177fc35190ff009a1dd2cd370f6c629", + ], +) + +rpm( + name = "libmpc-0__1.2.1-4.el9.x86_64", + sha256 = "207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmpc-1.2.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/207e758fadd4779cb11b91a78446f098d0a95b782f30a24c0e998fe08e2561df", + ], +) + +rpm( + name = "libmpc-0__1.3.1-7.el10.aarch64", + sha256 = "bb46a7465559a26c085bf1c02f0764332430a6c1b8fb3f08c8cee184e3d1f02a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libmpc-1.3.1-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bb46a7465559a26c085bf1c02f0764332430a6c1b8fb3f08c8cee184e3d1f02a", + ], +) + +rpm( + name = "libmpc-0__1.3.1-7.el10.s390x", + sha256 = "ad956e3c217ba500101acb4219f4e07390ca5ac8a14f99ca9cca85220b525da1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libmpc-1.3.1-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ad956e3c217ba500101acb4219f4e07390ca5ac8a14f99ca9cca85220b525da1", + ], +) + +rpm( + name = "libmpc-0__1.3.1-7.el10.x86_64", + sha256 = "daaa73a35dfe21a8201581e333b79ccd296ae87a93f9796ba522e58edc23777c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libmpc-1.3.1-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/daaa73a35dfe21a8201581e333b79ccd296ae87a93f9796ba522e58edc23777c", + ], +) + +rpm( + name = "libnbd-0__1.20.3-1.el9.x86_64", + sha256 = "4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4d39fdb30ac2f05b0cb67e296f0fd553b7fe2092ba8b9f3940f2d90e0146a835", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.aarch64", + sha256 = "7c9bb6872b93d95b2a2bf729793b50848cde216089293010197471146d23d9a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libnbd-1.20.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7c9bb6872b93d95b2a2bf729793b50848cde216089293010197471146d23d9a4", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.s390x", + sha256 = "d73945914b3ea835369f64416cf111fcf527775d70e35109f2a270763328e6ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libnbd-1.20.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d73945914b3ea835369f64416cf111fcf527775d70e35109f2a270763328e6ce", + ], +) + +rpm( + name = "libnbd-0__1.20.3-4.el9.x86_64", + sha256 = "d74d51b389dcf44bd2e10e76085dc41db925debee2ce33b721c554a9dd1f40af", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libnbd-1.20.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d74d51b389dcf44bd2e10e76085dc41db925debee2ce33b721c554a9dd1f40af", + ], +) + +rpm( + name = "libnbd-0__1.24.1-1.el10.aarch64", + sha256 = "0c10ff0bfd22ba853ab4d21287afa51791a9ce1302176ff63d502d38d7334277", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libnbd-1.24.1-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnbd-0__1.24.1-1.el10.s390x", + sha256 = "223da7e9c0b17ca7b0a831d7222b38247d801aa282463e110ca25142fcc2b075", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libnbd-1.24.1-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libnbd-0__1.24.1-1.el10.x86_64", + sha256 = "9bd98e418aa33430c4c576c8ae13c5141e64960a21a7fcd4ea13ed0eee5ddda4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libnbd-1.24.1-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnbd-devel-0__1.20.3-4.el9.aarch64", + sha256 = "cb38d0fc674e15a84caa1606fdb7430ba3c0e61bfc2a7dd3a9719ff82dfa920f", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libnbd-devel-1.20.3-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cb38d0fc674e15a84caa1606fdb7430ba3c0e61bfc2a7dd3a9719ff82dfa920f", + ], +) + +rpm( + name = "libnbd-devel-0__1.20.3-4.el9.s390x", + sha256 = "3289f3e0c7d6f290c79faca35a80b3b3170941bdd478468d339c692c3e35c882", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libnbd-devel-1.20.3-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3289f3e0c7d6f290c79faca35a80b3b3170941bdd478468d339c692c3e35c882", + ], +) + +rpm( + name = "libnbd-devel-0__1.20.3-4.el9.x86_64", + sha256 = "88dbe3a521391c371075dc20f70de464004ea8d3bca120f5fa8fdd66ef244847", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libnbd-devel-1.20.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/88dbe3a521391c371075dc20f70de464004ea8d3bca120f5fa8fdd66ef244847", + ], +) + +rpm( + name = "libnbd-devel-0__1.24.1-1.el10.aarch64", + sha256 = "f4e05d53cf0e8c6d062aa0deda4704eff44160025ed8ad75a382fe1582a99f51", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/libnbd-devel-1.24.1-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnbd-devel-0__1.24.1-1.el10.s390x", + sha256 = "93b7164eda1d37d47cc19f75b942cb9054c02efd4c0d5813933a3a0fcbef00db", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/libnbd-devel-1.24.1-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libnbd-devel-0__1.24.1-1.el10.x86_64", + sha256 = "dd4d89a9a64d82e468bd9686cc420d4266294f358a6ac3d267d136fa341a4f77", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/libnbd-devel-1.24.1-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.aarch64", + sha256 = "6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6871a3371b5a9a8239606efd453b59b274040e9d8d8f0c18bdffa7264db64264", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.s390x", + sha256 = "803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/803ecb7d6e42554735836a113b61e8501e952a715c754b76cec90631926e4830", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-1.el9.x86_64", + sha256 = "f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.9-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f81a0188964268ae9e1d53d99dba3ef96a65fe2fb00bc8fe6c39cedfdd364f44", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-12.el10.aarch64", + sha256 = "53c1b45e66ef040f6486052395cfda198d9b8b3058834ae7e8b7864b04f9c766", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.9-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/53c1b45e66ef040f6486052395cfda198d9b8b3058834ae7e8b7864b04f9c766", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-12.el10.s390x", + sha256 = "f7f15dc88c380db9cbf6e62c1a04b872867d7f5a4f2cc0b2f9988db963d8401d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnetfilter_conntrack-1.0.9-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7f15dc88c380db9cbf6e62c1a04b872867d7f5a4f2cc0b2f9988db963d8401d", + ], +) + +rpm( + name = "libnetfilter_conntrack-0__1.0.9-12.el10.x86_64", + sha256 = "71af0b9fb8b790e3d471a74ef463dc3cbb0267c9bdbaf876160fa9821f63200f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.9-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/71af0b9fb8b790e3d471a74ef463dc3cbb0267c9bdbaf876160fa9821f63200f", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.aarch64", + sha256 = "8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.1-23.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8b261a1555fd3b299c8b16d7c1159c726ec17dbd78d5217dbc6e69099f01c6cb", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.s390x", + sha256 = "1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnfnetlink-1.0.1-23.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1d092de5c4fde5b75011185bda315959d01994c162009b63373e901e72e42769", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.1-23.el9.x86_64", + sha256 = "c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c920598cb4dab7c5b6b00af9f09c21f89b23c4e12729016fd892d6d7e1291615", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.2-3.el10.aarch64", + sha256 = "0ac9c6ebd2c5652bea632435fd73bfb36785d2f15eb840ca53049d6bb3abe639", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.2-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0ac9c6ebd2c5652bea632435fd73bfb36785d2f15eb840ca53049d6bb3abe639", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.2-3.el10.s390x", + sha256 = "433915ab5525daf404ae37d47f1f735d257a33ff8a2565741e3449d5b39b0cab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnfnetlink-1.0.2-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/433915ab5525daf404ae37d47f1f735d257a33ff8a2565741e3449d5b39b0cab", + ], +) + +rpm( + name = "libnfnetlink-0__1.0.2-3.el10.x86_64", + sha256 = "2988f90762058160e4071b79b96523901a2170bc6242488878ce51fbc0d871ca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.2-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2988f90762058160e4071b79b96523901a2170bc6242488878ce51fbc0d871ca", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.aarch64", + sha256 = "59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnftnl-1.2.6-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/59f6d922f5540479c088120d411d2ca3cdb4e5ddf6fe8fc05dbd796b9e36ecd3", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.s390x", + sha256 = "1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnftnl-1.2.6-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a717d2a04f257e452753ba29cc6c0848cd51a226bf5d000b89863fa7aad5250", + ], +) + +rpm( + name = "libnftnl-0__1.2.6-4.el9.x86_64", + sha256 = "45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnftnl-1.2.6-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/45d7325859bdfbddd9f24235695fc55138549fdccbe509484e9f905c5f1b466b", + ], +) + +rpm( + name = "libnftnl-0__1.3.0-3.el10.aarch64", + sha256 = "d5467150ed76b14237d86554566ef07c0025d59f0ebc34348b503cc823784c80", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnftnl-1.3.0-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnftnl-0__1.3.0-3.el10.s390x", + sha256 = "b7f11ace02687c972f83c414b2a7a9e9a58979fa4630f4aae50608c686145a54", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnftnl-1.3.0-3.el10.s390x.rpm", + ], +) + +rpm( + name = "libnftnl-0__1.3.0-3.el10.x86_64", + sha256 = "4721d71306d4330cac0868ea25e2f0dfd816fc3c3e618c91212eb9a854322e60", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnftnl-1.3.0-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.aarch64", + sha256 = "b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnghttp2-1.43.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b9c3685701dc2ad11adac83055811bb8c4909bd73469f31953ef7d534c747b83", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.s390x", + sha256 = "6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnghttp2-1.43.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6d9ea7820d952bb492ff575b87fd46c606acf12bd368a5b4c8df3efc6a054c57", + ], +) + +rpm( + name = "libnghttp2-0__1.43.0-6.el9.x86_64", + sha256 = "fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnghttp2-1.43.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fc1cadbc6cf37cbea60112b7ae6f92fabfd5a7f76fa526bb5a1ea82746455ec7", + ], +) + +rpm( + name = "libnghttp2-0__1.68.0-3.el10.aarch64", + sha256 = "149d789b9369351d2494ef2b6575f9bb872c3d7d70ce7bbf286be9a4e6eceeff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnghttp2-1.68.0-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "libnghttp2-0__1.68.0-3.el10.s390x", + sha256 = "52f87178a4126738bb4fe1437ceb45dc182d60221b18f48750b8f96cda847362", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnghttp2-1.68.0-3.el10.s390x.rpm", + ], +) + +rpm( + name = "libnghttp2-0__1.68.0-3.el10.x86_64", + sha256 = "fafe027fa1052db01ce62d95321d61f102d7dd53bb790e69fec4136f3052134b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnghttp2-1.68.0-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el10.aarch64", + sha256 = "b27497d441cd6ae6fbf6a077913eff334c64ace7b6030d6c11a221316a8c8d92", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libnl3-3.11.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b27497d441cd6ae6fbf6a077913eff334c64ace7b6030d6c11a221316a8c8d92", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el10.s390x", + sha256 = "4171ef398ec29504e828c461581fa44e6afe6b36ff84da66f902edd932271b34", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libnl3-3.11.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4171ef398ec29504e828c461581fa44e6afe6b36ff84da66f902edd932271b34", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el10.x86_64", + sha256 = "886324f9d4b8c95a46d5c77c0f5cd90051c83462e78ca752c70cc709f5a01d90", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libnl3-3.11.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/886324f9d4b8c95a46d5c77c0f5cd90051c83462e78ca752c70cc709f5a01d90", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.aarch64", + sha256 = "931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libnl3-3.11.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/931603d3bd38323504f5650a51eb18e8f0ff042a8e9d55deaa55d9ed8c1b0371", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.s390x", + sha256 = "af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libnl3-3.11.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/af754f7cc0670de1449a2a2a5ef353aa21187593f7f7e48389fb3a43724903cc", + ], +) + +rpm( + name = "libnl3-0__3.11.0-1.el9.x86_64", + sha256 = "8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libnl3-3.11.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8988a2e97b63bfe07568a1a85fa8ca9fe6a1b940320f6f72e63d908c54b78a2a", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.s390x", + sha256 = "f7704e01f4ab1315cf32f5e2f8d2bb33411e403fdbd4398ea1d76eb4f90550a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libosinfo-1.10.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7704e01f4ab1315cf32f5e2f8d2bb33411e403fdbd4398ea1d76eb4f90550a1", + ], +) + +rpm( + name = "libosinfo-0__1.10.0-1.el9.x86_64", + sha256 = "ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libosinfo-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ace3a92175ee1be1f5c3a1d31bd702c49076eea7f4d6e859fc301832424d3dc9", + ], +) + +rpm( + name = "libosinfo-0__1.11.0-8.el10.s390x", + sha256 = "3ae1d93313b6b63d6cf2887307a539e9a371d64134ad7a363d5b31c64ee2734d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libosinfo-1.11.0-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3ae1d93313b6b63d6cf2887307a539e9a371d64134ad7a363d5b31c64ee2734d", + ], +) + +rpm( + name = "libosinfo-0__1.11.0-8.el10.x86_64", + sha256 = "e632610473056869e88ddaa33511e043721d89f8c2216590a274e638f64e98fa", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libosinfo-1.11.0-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e632610473056869e88ddaa33511e043721d89f8c2216590a274e638f64e98fa", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.aarch64", + sha256 = "c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpcap-1.10.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c1827185bde78c34817a75c79522963c76cd07585eeeb6961e58c6ddadc69333", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.s390x", + sha256 = "ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpcap-1.10.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ca99e77dd39751b9e769fbec73af47704b30ebac2b3fd0a5f3b4e3b6dca7ebc2", + ], +) + +rpm( + name = "libpcap-14__1.10.0-4.el9.x86_64", + sha256 = "c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpcap-1.10.0-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c76c9887f6b9d218300b24f1adee1b0d9104d25152df3fcd005002d12e12399e", + ], +) + +rpm( + name = "libpcap-14__1.10.4-7.el10.aarch64", + sha256 = "f15a71822ba8269643911bdd5455e2c24c2489927217d3512c9453a6ff8af5bf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpcap-1.10.4-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f15a71822ba8269643911bdd5455e2c24c2489927217d3512c9453a6ff8af5bf", + ], +) + +rpm( + name = "libpcap-14__1.10.4-7.el10.s390x", + sha256 = "98f721f0b8b731a77d27bcb3178c7297e84372095a452ab52a98192c76953d3f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpcap-1.10.4-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/98f721f0b8b731a77d27bcb3178c7297e84372095a452ab52a98192c76953d3f", + ], +) + +rpm( + name = "libpcap-14__1.10.4-7.el10.x86_64", + sha256 = "a933eb7fba1535c9df52f7e44504535b25f8b6fb79c5cf68a0b6e80eb4b9dbf8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpcap-1.10.4-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a933eb7fba1535c9df52f7e44504535b25f8b6fb79c5cf68a0b6e80eb4b9dbf8", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ad86227404ab0df04f1b98f74921a77c4068251da74067d3633cc1c43fee4a9b", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.s390x", + sha256 = "56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/56221e0aeef5537804b6362a5336c5b1673b14c18b4dea09f42916fa9f976bc9", + ], +) + +rpm( + name = "libpkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2dc8b201f4e24ca65fe6389fec8901eb84d48519cc44a6b0e474d7859370f389", + ], +) + +rpm( + name = "libpkgconf-0__2.1.0-3.el10.aarch64", + sha256 = "fc2db71a801f4cd03425463d0aea745da36837f25d8cc2042eb747c8a336f989", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpkgconf-2.1.0-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fc2db71a801f4cd03425463d0aea745da36837f25d8cc2042eb747c8a336f989", + ], +) + +rpm( + name = "libpkgconf-0__2.1.0-3.el10.s390x", + sha256 = "7d503fcdd8154231531ec1e076ac2552b9d0a5fe096fb50d3a9ff0ebce07d92d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpkgconf-2.1.0-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7d503fcdd8154231531ec1e076ac2552b9d0a5fe096fb50d3a9ff0ebce07d92d", + ], +) + +rpm( + name = "libpkgconf-0__2.1.0-3.el10.x86_64", + sha256 = "813f59114413d5e14fc566262ee3d4b56b621beacbe40eda6f28d31f464de1a6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpkgconf-2.1.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/813f59114413d5e14fc566262ee3d4b56b621beacbe40eda6f28d31f464de1a6", + ], +) + +rpm( + name = "libpmem-0__1.12.1-1.el9.x86_64", + sha256 = "5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpmem-1.12.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5377dcb3b4ca48eb056a998d3a684eb68e8d059e2a26844cda8535d8f125fc83", + ], +) + +rpm( + name = "libpng-2__1.6.37-12.el9.x86_64", + sha256 = "b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpng-1.6.37-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b3f3a689918dc50a9bc41c33abf1a36bdb8e4a707daac77a91e0814407b07ae3", + ], +) + +rpm( + name = "libpng-2__1.6.37-14.el9.aarch64", + sha256 = "f9cf4691ea7d887c5d4a6b2a023a4694dab5d25af3f76039f2e6fb4c7e5957f9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpng-1.6.37-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f9cf4691ea7d887c5d4a6b2a023a4694dab5d25af3f76039f2e6fb4c7e5957f9", + ], +) + +rpm( + name = "libpng-2__1.6.37-14.el9.s390x", + sha256 = "5b6206be72368b174de554c7642ad01559abf0f7c48419dfd25eea67e8bd360f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libpng-1.6.37-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5b6206be72368b174de554c7642ad01559abf0f7c48419dfd25eea67e8bd360f", + ], +) + +rpm( + name = "libpng-2__1.6.37-14.el9.x86_64", + sha256 = "5511df7ac4a309e37955e0bf2b7d9a96c50101ceb9afd2c5a2ab6d441d1bd173", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpng-1.6.37-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5511df7ac4a309e37955e0bf2b7d9a96c50101ceb9afd2c5a2ab6d441d1bd173", + ], +) + +rpm( + name = "libpng-2__1.6.40-10.el10.aarch64", + sha256 = "ea33f09d919a0c0c9e315d3b593f9c8d1712b2e21472a32d0a27fbd2864ce053", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpng-1.6.40-10.el10.aarch64.rpm", + ], +) + +rpm( + name = "libpng-2__1.6.40-10.el10.s390x", + sha256 = "0707c714c3ab7ed02bfa9b3be03a148beeb80b0d687403ba96676b36f1d06d31", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libpng-1.6.40-10.el10.s390x.rpm", + ], +) + +rpm( + name = "libpng-2__1.6.40-10.el10.x86_64", + sha256 = "c11442c5ceb92c6965906e48a85da7a9bd365d1844dbf3067c559d0eb292ece6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpng-1.6.40-10.el10.x86_64.rpm", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.s390x", + sha256 = "1ce49253ec771fbeefb6fa26ae07707fe0039e7f393cf24845d88f2453b7c116", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libproxy-0.4.15-35.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1ce49253ec771fbeefb6fa26ae07707fe0039e7f393cf24845d88f2453b7c116", + ], +) + +rpm( + name = "libproxy-0__0.4.15-35.el9.x86_64", + sha256 = "0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libproxy-0.4.15-35.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0042c2dd5a88f7f1db096426bb1f6557e7d790eabca01a086afd832e47217ee1", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.s390x", + sha256 = "d54f8e3050d403352fe6afcf6aa34838017b2d56026625ea29f5307fc2ce173c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpsl-0.21.1-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d54f8e3050d403352fe6afcf6aa34838017b2d56026625ea29f5307fc2ce173c", + ], +) + +rpm( + name = "libpsl-0__0.21.1-5.el9.x86_64", + sha256 = "42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpsl-0.21.1-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/42bd5fb4b34c993c103ea2d47fc69a0fcc231fcfb88646ed55403519868caa94", + ], +) + +rpm( + name = "libpsl-0__0.21.5-6.el10.s390x", + sha256 = "ef89d923a60bc9658e5524a80960a865d805aa136b7dd3761a162d58b2aff46d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpsl-0.21.5-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ef89d923a60bc9658e5524a80960a865d805aa136b7dd3761a162d58b2aff46d", + ], +) + +rpm( + name = "libpsl-0__0.21.5-6.el10.x86_64", + sha256 = "1dca94a85aabd9730bc731fa8a6abb138fec28b75c6a39694d862135c2ade0f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpsl-0.21.5-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1dca94a85aabd9730bc731fa8a6abb138fec28b75c6a39694d862135c2ade0f3", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.aarch64", + sha256 = "3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libpwquality-1.4.4-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3c22a268ce022cb4722aa2d35a95c1174778f424fbf29e98990801651d468aeb", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.s390x", + sha256 = "b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libpwquality-1.4.4-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8b5178474a0a53bc6463e817e0bca8a3568e333bcae9eda3dabbe84a1e24941", + ], +) + +rpm( + name = "libpwquality-0__1.4.4-8.el9.x86_64", + sha256 = "93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/93f00e5efac1e3f1ecbc0d6a4c068772cb12912cd20c9ea58716d6c0cd004886", + ], +) + +rpm( + name = "libpwquality-0__1.4.5-12.el10.aarch64", + sha256 = "0d0d6a0e741f94889796b551935f72cf551587067f0c9b64531b5c34b03ab1d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libpwquality-1.4.5-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0d0d6a0e741f94889796b551935f72cf551587067f0c9b64531b5c34b03ab1d8", + ], +) + +rpm( + name = "libpwquality-0__1.4.5-12.el10.s390x", + sha256 = "bff94322487bd0bd36640c27e56d7b0167187772cab630758bc56aada0038aea", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libpwquality-1.4.5-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bff94322487bd0bd36640c27e56d7b0167187772cab630758bc56aada0038aea", + ], +) + +rpm( + name = "libpwquality-0__1.4.5-12.el10.x86_64", + sha256 = "eda9e6acc99c2c9fa058a9db428da1b0c7441f2be174b9aa7f1628359e36e6ab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libpwquality-1.4.5-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eda9e6acc99c2c9fa058a9db428da1b0c7441f2be174b9aa7f1628359e36e6ab", + ], +) + +rpm( + name = "librdmacm-0__54.0-1.el9.x86_64", + sha256 = "82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-54.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82d2d2eecace0a17f97e44e42d766a0ef5cf67f5c42e139c58e18406dfc38f4d", + ], +) + +rpm( + name = "librdmacm-0__61.0-2.el9.aarch64", + sha256 = "f02fbb25e313058137f32a3d20b7da2421c1cbc6cb35991158b0c400b970db3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/librdmacm-61.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f02fbb25e313058137f32a3d20b7da2421c1cbc6cb35991158b0c400b970db3a", + ], +) + +rpm( + name = "librdmacm-0__61.0-2.el9.x86_64", + sha256 = "b3ec91b7db56ab47cbdd3a8bd80a19e450a84f098aef29bedb082f198f4e17c1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/librdmacm-61.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b3ec91b7db56ab47cbdd3a8bd80a19e450a84f098aef29bedb082f198f4e17c1", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.aarch64", + sha256 = "ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libseccomp-2.5.2-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ee31abd3d1325b05c5ba336158ba3b235a718a99ad5cec5e6ab498ca99b688b5", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.s390x", + sha256 = "1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libseccomp-2.5.2-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1479993c13970d0a69826051948a080ea216fb74f0717d8718801065edf1a1de", + ], +) + +rpm( + name = "libseccomp-0__2.5.2-2.el9.x86_64", + sha256 = "d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libseccomp-2.5.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d5c1c4473ebf5fd9c605eb866118d7428cdec9b188db18e45545801cc2a689c3", + ], +) + +rpm( + name = "libseccomp-0__2.5.6-1.el10.aarch64", + sha256 = "322aa4ea140a63645c7f086b58a08346617eea2efee8044287b76373d633b65f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libseccomp-2.5.6-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/322aa4ea140a63645c7f086b58a08346617eea2efee8044287b76373d633b65f", + ], +) + +rpm( + name = "libseccomp-0__2.5.6-1.el10.s390x", + sha256 = "e652de14f8c0d52480c2bba779daf5da7b7fd66e65090e1781f41d3bee250840", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libseccomp-2.5.6-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/e652de14f8c0d52480c2bba779daf5da7b7fd66e65090e1781f41d3bee250840", + ], +) + +rpm( + name = "libseccomp-0__2.5.6-1.el10.x86_64", + sha256 = "654051862cc301ed43501ab36b687ed5adeb3ca57689f54a80bf760ad9686e54", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libseccomp-2.5.6-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/654051862cc301ed43501ab36b687ed5adeb3ca57689f54a80bf760ad9686e54", + ], +) + +rpm( + name = "libselinux-0__3.10-1.el10.aarch64", + sha256 = "225f1d0267da0839f21e8f845fb9bf872f829e599a315351fd47a977567ea363", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libselinux-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libselinux-0__3.10-1.el10.s390x", + sha256 = "f3e96be14d13e9cad47ee8e2e1e7c1ec6a2fb3e480e743c2c17ed2418e5634c3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libselinux-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libselinux-0__3.10-1.el10.x86_64", + sha256 = "8fa9d21f1d9bbe179e527d42954d13b25dd4942c0a2a684aad19e5d8cab35cbd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libselinux-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.aarch64", + sha256 = "42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/42b6190d9e4ea6019059991f50965ac6267012343241f0cc64fd24c6e20aaa2a", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.s390x", + sha256 = "16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/16b3c0c73dcfff8b54a5554a4bcbd639603508d8502857c05ff9aa2360690094", + ], +) + +rpm( + name = "libselinux-0__3.6-3.el9.x86_64", + sha256 = "79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/79abe72ea8dccb4134286fd1aae79827f10bde0cc1c35224886e93b293d282d1", + ], +) + +rpm( + name = "libselinux-utils-0__3.10-1.el10.aarch64", + sha256 = "13ae3185d4d7b48f7d64c0244df6a7a85b45a3995c23b289db8b441e12163366", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libselinux-utils-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libselinux-utils-0__3.10-1.el10.s390x", + sha256 = "b6843b431f0b9567cff7716d84c4216059341fe765e580e62c1f60e71242e5af", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libselinux-utils-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libselinux-utils-0__3.10-1.el10.x86_64", + sha256 = "6d2ea032523a605212d9b5e559e59d08e6da7510047ff8007555aa479d2ad440", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libselinux-utils-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.aarch64", + sha256 = "5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libselinux-utils-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5e028899301316df30d03631e7d317c3236fea0f5138c799b055560676f991eb", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.s390x", + sha256 = "05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libselinux-utils-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/05a8b056b7df62d0f6fde665fb98302fb9b1c0b18a40d68528270e275748891e", + ], +) + +rpm( + name = "libselinux-utils-0__3.6-3.el9.x86_64", + sha256 = "f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libselinux-utils-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f78d42cbd9cc6220b44631787ba17faf4ad44befa8ebddfdf504d4654eb2dfe0", + ], +) + +rpm( + name = "libsemanage-0__3.10-1.el10.aarch64", + sha256 = "1bcf6028098bf2fbb99b9aa822f1ba67f8701fbdab080ce47ff3b9964f6e20fd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsemanage-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libsemanage-0__3.10-1.el10.s390x", + sha256 = "f9796dbdb7ede125766680a5f32df1a325d8f5a749df6e9bf0e660c5aaa74778", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsemanage-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libsemanage-0__3.10-1.el10.x86_64", + sha256 = "3f5fabb9a3e0d90c3d94d4340eece1afe1311209ea8d25b94e1e75cc129b7020", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsemanage-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.aarch64", + sha256 = "f5402c7056dc92ea2e52ad436c6eece8c18040ac77141e5f0ffe01eea209dfe7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsemanage-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f5402c7056dc92ea2e52ad436c6eece8c18040ac77141e5f0ffe01eea209dfe7", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.s390x", + sha256 = "888a4ef687c43c03324bfe3c5815810d48322478cd966b4bcb1d237a16b3a0b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsemanage-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/888a4ef687c43c03324bfe3c5815810d48322478cd966b4bcb1d237a16b3a0b0", + ], +) + +rpm( + name = "libsemanage-0__3.6-5.el9.x86_64", + sha256 = "3dcf6e7f2779434d9dc7aef0065c3a2977792170264a60d4324f6625bb9cd69a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsemanage-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3dcf6e7f2779434d9dc7aef0065c3a2977792170264a60d4324f6625bb9cd69a", + ], +) + +rpm( + name = "libsepol-0__3.10-1.el10.aarch64", + sha256 = "f62ef4b2712f4e4f6372d531d08106738add4b97d0394df64184a425a233904f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsepol-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "libsepol-0__3.10-1.el10.s390x", + sha256 = "1af3b302cd2f14ba9020e3be0061dd3e0d6167460898a29bc8d68a4f320209f9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsepol-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "libsepol-0__3.10-1.el10.x86_64", + sha256 = "cf9df5a3fbd190dd5401233ef65d283a17a5b4194555ec1cf2dde3a7f029426d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsepol-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "libsepol-0__3.6-2.el9.x86_64", + sha256 = "7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7a1c10a4512624dfc1b76da45b7a0d15f8ecdddf20c9738b10ca12df7f488ae1", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.aarch64", + sha256 = "2cd63ed497af8a202c79790b04362ba224b50ec7c377abb21901160e4000e07d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsepol-3.6-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2cd63ed497af8a202c79790b04362ba224b50ec7c377abb21901160e4000e07d", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.s390x", + sha256 = "c1246f8553c2aec3ca86721f8bd77fab4f4fcd22527bb6a6e494b4046ee17461", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsepol-3.6-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c1246f8553c2aec3ca86721f8bd77fab4f4fcd22527bb6a6e494b4046ee17461", + ], +) + +rpm( + name = "libsepol-0__3.6-3.el9.x86_64", + sha256 = "6d3d16c3121ccf989f8a123812e524cb1fc098fb01ec9f1c6327544e85aaf84d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsepol-3.6-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6d3d16c3121ccf989f8a123812e524cb1fc098fb01ec9f1c6327544e85aaf84d", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.aarch64", + sha256 = "097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsigsegv-2.13-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/097399718ae50fb03fde85fa151c060c50445a1a5af185052cac6b92d6fdcdae", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.s390x", + sha256 = "730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsigsegv-2.13-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/730c827d66bd292fccdb6f8ac4c29176e7f06283489be41b67f4bf55deeb3ffb", + ], +) + +rpm( + name = "libsigsegv-0__2.13-4.el9.x86_64", + sha256 = "931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsigsegv-2.13-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/931bd0ec7050e8c3b37a9bfb489e30af32486a3c77203f1e9113eeceaa3b0a3a", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.aarch64", + sha256 = "52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libslirp-4.4.0-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52a73957cdbce4484adc9755e42393aeb31443e199fbcdcf3ae867dee82145bf", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.s390x", + sha256 = "d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libslirp-4.4.0-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d47be3b8520589ff857b0264075f98b0483863762a0d3b0ebb1fba7c870edba6", + ], +) + +rpm( + name = "libslirp-0__4.4.0-8.el9.x86_64", + sha256 = "aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libslirp-4.4.0-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa5c4568ef12b3324e28e2353a97e5d531892e9e0682a035a5669819c7fd6dc3", + ], +) + +rpm( + name = "libslirp-0__4.7.0-10.el10.aarch64", + sha256 = "077e56fc67d139c2569bdd6b920777df742773a155425b11401406aac39f4e7b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libslirp-4.7.0-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/077e56fc67d139c2569bdd6b920777df742773a155425b11401406aac39f4e7b", + ], +) + +rpm( + name = "libslirp-0__4.7.0-10.el10.s390x", + sha256 = "392067b3525f2d603a121d6a2b7e5683c7a903a7be677ffc94fe2f1b278d3a11", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libslirp-4.7.0-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/392067b3525f2d603a121d6a2b7e5683c7a903a7be677ffc94fe2f1b278d3a11", + ], +) + +rpm( + name = "libslirp-0__4.7.0-10.el10.x86_64", + sha256 = "bc98bf4c15d226b809474c1237700e4e3158d77c4b7488611599672ac0b570af", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libslirp-4.7.0-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc98bf4c15d226b809474c1237700e4e3158d77c4b7488611599672ac0b570af", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-21.el9.x86_64", + sha256 = "30e2a071ad6f1939f14fc89c827d61ccb28a6cbf6e443db39e8019a18c7e18d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30e2a071ad6f1939f14fc89c827d61ccb28a6cbf6e443db39e8019a18c7e18d4", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-25.el9.aarch64", + sha256 = "a6c8e44ec15936163ca5075ede209fe4f4ec96a2b8656b517962f4db3f082951", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsmartcols-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a6c8e44ec15936163ca5075ede209fe4f4ec96a2b8656b517962f4db3f082951", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-25.el9.s390x", + sha256 = "b9f7f3209532892849db09656f9c2ccffbdda7c60fe1a0cc0c32d9efaeaf065e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsmartcols-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b9f7f3209532892849db09656f9c2ccffbdda7c60fe1a0cc0c32d9efaeaf065e", + ], +) + +rpm( + name = "libsmartcols-0__2.37.4-25.el9.x86_64", + sha256 = "d3cc89b398cd94f8ead47a313ce1988b1b887b065842368b6a994559bca02b28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d3cc89b398cd94f8ead47a313ce1988b1b887b065842368b6a994559bca02b28", + ], +) + +rpm( + name = "libsmartcols-0__2.40.2-18.el10.aarch64", + sha256 = "0b19da51c225a5ce0278e21481412f550e134bb174931a7b342f0a3de78ab352", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsmartcols-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libsmartcols-0__2.40.2-18.el10.s390x", + sha256 = "fa932b57f128095c93ea36564e9cf1d2a25936cfb49accb8f370a215f8b58c44", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsmartcols-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libsmartcols-0__2.40.2-18.el10.x86_64", + sha256 = "d2114b2301e7adefb36bc8cf1afa4619778e66f293b7d34fb8c37c9621c5d4a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsmartcols-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.s390x", + sha256 = "5c157ebfd258aaa833701f0e48d2a8e54064d5e9fbcdae9f4e426ef84efa1a75", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libsoup-2.72.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5c157ebfd258aaa833701f0e48d2a8e54064d5e9fbcdae9f4e426ef84efa1a75", + ], +) + +rpm( + name = "libsoup-0__2.72.0-10.el9.x86_64", + sha256 = "e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsoup-2.72.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e7dc6b485f95e65f22d7a91575dd6cfaae6d9cfbeaacd612e7fa4bbccaa9211d", + ], +) + +rpm( + name = "libsoup3-0__3.6.5-5.el10.s390x", + sha256 = "eb1082bb8403619c3ce9352feab119dd27eaf3e10417d7968c0342c0269d6272", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libsoup3-3.6.5-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/eb1082bb8403619c3ce9352feab119dd27eaf3e10417d7968c0342c0269d6272", + ], +) + +rpm( + name = "libsoup3-0__3.6.5-5.el10.x86_64", + sha256 = "38b4b20b159ae75afc780d10b1f212a2337a750e42c9183b071f5164a6cdfeac", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libsoup3-3.6.5-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/38b4b20b159ae75afc780d10b1f212a2337a750e42c9183b071f5164a6cdfeac", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.aarch64", + sha256 = "52ba79e72eb6feef925cd94e1989b879750a33a5f926cc48f576368211799796", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libss-1.46.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/52ba79e72eb6feef925cd94e1989b879750a33a5f926cc48f576368211799796", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.s390x", + sha256 = "95a10e09d72daebb2cdae054cadd8e9ef3c3689dade4236723e8e69fdd674d3a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libss-1.46.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/95a10e09d72daebb2cdae054cadd8e9ef3c3689dade4236723e8e69fdd674d3a", + ], +) + +rpm( + name = "libss-0__1.46.5-8.el9.x86_64", + sha256 = "095ae726757b2e9a0c17f4391b9667210c84f4fa72dbd65f006db78e47f3915d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libss-1.46.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/095ae726757b2e9a0c17f4391b9667210c84f4fa72dbd65f006db78e47f3915d", + ], +) + +rpm( + name = "libss-0__1.47.1-5.el10.aarch64", + sha256 = "edb0a7af06913af8ce5a72ab62de780b8b08ad7a7db6cabc4bae9b95d4253607", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libss-1.47.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/edb0a7af06913af8ce5a72ab62de780b8b08ad7a7db6cabc4bae9b95d4253607", + ], +) + +rpm( + name = "libss-0__1.47.1-5.el10.s390x", + sha256 = "1a38ebb62511e39bae10e1cbde35152562e90d8014f243696bed5c3deef6bf9f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libss-1.47.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1a38ebb62511e39bae10e1cbde35152562e90d8014f243696bed5c3deef6bf9f", + ], +) + +rpm( + name = "libss-0__1.47.1-5.el10.x86_64", + sha256 = "2dea843b06f0bd161807d8cfd7e3ef05f5944f5ea57332e5b58700bd93262765", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libss-1.47.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2dea843b06f0bd161807d8cfd7e3ef05f5944f5ea57332e5b58700bd93262765", + ], +) + +rpm( + name = "libssh-0__0.10.4-13.el9.x86_64", + sha256 = "08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-0.10.4-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/08f4dd4a9a61fb4dc05b30523cbd6a6bb698e634c8c87e884f78db2cfc658499", + ], +) + +rpm( + name = "libssh-0__0.10.4-17.el9.aarch64", + sha256 = "420be5bba5c7c331c5c93d0c9b5a5bc26f7fcee99156e0e2ad0fbd21556c325f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-0.10.4-17.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/420be5bba5c7c331c5c93d0c9b5a5bc26f7fcee99156e0e2ad0fbd21556c325f", + ], +) + +rpm( + name = "libssh-0__0.10.4-17.el9.s390x", + sha256 = "6e1fb62c5a61b432f7e18255677155a9de94241c18bff17786a001c8776aec1c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-0.10.4-17.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6e1fb62c5a61b432f7e18255677155a9de94241c18bff17786a001c8776aec1c", + ], +) + +rpm( + name = "libssh-0__0.10.4-17.el9.x86_64", + sha256 = "5bcf6ec9ec3cd108791fcb93d95c71209e1080598b5e6f45b9371a43e0b4519f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-0.10.4-17.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5bcf6ec9ec3cd108791fcb93d95c71209e1080598b5e6f45b9371a43e0b4519f", + ], +) + +rpm( + name = "libssh-0__0.12.0-2.el10.aarch64", + sha256 = "3c3d290af7c115d4021a7181e762dcfe9b877f86283cdf0ae84a6a89870ba391", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libssh-0.12.0-2.el10.aarch64.rpm", + ], +) + +rpm( + name = "libssh-0__0.12.0-2.el10.s390x", + sha256 = "94a3568a4e8767a31ca1e199c6c7ec8a8557a2e7373994247963753f1acc6b51", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libssh-0.12.0-2.el10.s390x.rpm", + ], +) + +rpm( + name = "libssh-0__0.12.0-2.el10.x86_64", + sha256 = "4fff653207041b86cb0aaf4d8617e1768a71674bc4aedf848617cb509a5fe867", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libssh-0.12.0-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-13.el9.x86_64", + sha256 = "bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-config-0.10.4-13.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd86ac0962a7f517dd0ab4b963e08b6b7a2af1821df374746223ab9781ee9a20", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-17.el9.aarch64", + sha256 = "ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libssh-config-0.10.4-17.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-17.el9.s390x", + sha256 = "ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libssh-config-0.10.4-17.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + ], +) + +rpm( + name = "libssh-config-0__0.10.4-17.el9.x86_64", + sha256 = "ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libssh-config-0.10.4-17.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ab4182e8ef3ffaf47951fe96b620d1d616d11d7f9c99fab4d8b6ba3dbf5d5bde", + ], +) + +rpm( + name = "libssh-config-0__0.12.0-2.el10.aarch64", + sha256 = "0f026e18f36d57bb55567368920420a28f5f7384612fa0348d154241f4171b42", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libssh-config-0.12.0-2.el10.noarch.rpm", + ], +) + +rpm( + name = "libssh-config-0__0.12.0-2.el10.s390x", + sha256 = "0f026e18f36d57bb55567368920420a28f5f7384612fa0348d154241f4171b42", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libssh-config-0.12.0-2.el10.noarch.rpm", + ], +) + +rpm( + name = "libssh-config-0__0.12.0-2.el10.x86_64", + sha256 = "0f026e18f36d57bb55567368920420a28f5f7384612fa0348d154241f4171b42", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libssh-config-0.12.0-2.el10.noarch.rpm", + ], +) + +rpm( + name = "libsss_idmap-0__2.12.0-1.el10.aarch64", + sha256 = "5d56064a3fe65a8eb6b9e02b239587bc9a3e132a947d836c5edf4f02d538fd03", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsss_idmap-2.12.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5d56064a3fe65a8eb6b9e02b239587bc9a3e132a947d836c5edf4f02d538fd03", + ], +) + +rpm( + name = "libsss_idmap-0__2.12.0-1.el10.s390x", + sha256 = "573803676a86b4f7d8ed234ce70c8a40412249a4bdbd8256c4fac09fb52eb2c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsss_idmap-2.12.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/573803676a86b4f7d8ed234ce70c8a40412249a4bdbd8256c4fac09fb52eb2c9", + ], +) + +rpm( + name = "libsss_idmap-0__2.12.0-1.el10.x86_64", + sha256 = "fbfda0b5f6b73eb4b75196370ea91361afb736e08212f291f6c5328ecab401de", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsss_idmap-2.12.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fbfda0b5f6b73eb4b75196370ea91361afb736e08212f291f6c5328ecab401de", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.8-1.el9.aarch64", + sha256 = "638b417e5c726de5fc158c03e0d67c9573a862d307660ec2954fb96285b86075", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_idmap-2.9.8-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/638b417e5c726de5fc158c03e0d67c9573a862d307660ec2954fb96285b86075", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.8-1.el9.s390x", + sha256 = "8999405bd3fb1901922bcec02c450852c2e2b1ebe305e57c5afba15015408232", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_idmap-2.9.8-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8999405bd3fb1901922bcec02c450852c2e2b1ebe305e57c5afba15015408232", + ], +) + +rpm( + name = "libsss_idmap-0__2.9.8-1.el9.x86_64", + sha256 = "9a29f5bfe5f444071eda063ad9de94b00b6e5a9e3227505ef1b8ea7d11970d6a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_idmap-2.9.8-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9a29f5bfe5f444071eda063ad9de94b00b6e5a9e3227505ef1b8ea7d11970d6a", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.12.0-1.el10.aarch64", + sha256 = "fff9355f09c72d9e9f6eddf6a9b5ae5d91d03d34c9e09acd4790af60ef7e2fb5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.12.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fff9355f09c72d9e9f6eddf6a9b5ae5d91d03d34c9e09acd4790af60ef7e2fb5", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.12.0-1.el10.s390x", + sha256 = "cd8c9d8edca4e2658839230d7afd66c8e5c52c782169eb1cd1354b8683f9d606", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libsss_nss_idmap-2.12.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/cd8c9d8edca4e2658839230d7afd66c8e5c52c782169eb1cd1354b8683f9d606", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.12.0-1.el10.x86_64", + sha256 = "690e064654f7f3ede0eed89565408970258329a37580c61ee04872a64c489b32", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.12.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/690e064654f7f3ede0eed89565408970258329a37580c61ee04872a64c489b32", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.8-1.el9.aarch64", + sha256 = "53a48e97f56f0ffc1e2536494d5e4d18b4b904e6fda3e2969ac377549f5ec202", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.9.8-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/53a48e97f56f0ffc1e2536494d5e4d18b4b904e6fda3e2969ac377549f5ec202", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.8-1.el9.s390x", + sha256 = "29baa933285a2b20e7571e346ab7dc1e2a0cbf74045646ad984e8569a9a53e31", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libsss_nss_idmap-2.9.8-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/29baa933285a2b20e7571e346ab7dc1e2a0cbf74045646ad984e8569a9a53e31", + ], +) + +rpm( + name = "libsss_nss_idmap-0__2.9.8-1.el9.x86_64", + sha256 = "d80957b223b2e6489d9da5148aada13a5e745765633fe07c3e3ce9e0ba7c7801", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.9.8-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d80957b223b2e6489d9da5148aada13a5e745765633fe07c3e3ce9e0ba7c7801", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-14.el9.aarch64", + sha256 = "ec5482f096781a16d55762e96be3f6b21ee2f714bc8e45327ea978ae87951cc0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libstdc++-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ec5482f096781a16d55762e96be3f6b21ee2f714bc8e45327ea978ae87951cc0", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-14.el9.s390x", + sha256 = "e31be1174ae46e9e9cc6bce09d4cfd47eb280f96ef68488d4f0acefb2661a7df", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libstdc++-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e31be1174ae46e9e9cc6bce09d4cfd47eb280f96ef68488d4f0acefb2661a7df", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-14.el9.x86_64", + sha256 = "5b9119d93375d19b8ab140c359f9623de0fde1487fc1e930bfa29f54962ec448", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5b9119d93375d19b8ab140c359f9623de0fde1487fc1e930bfa29f54962ec448", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__11.5.0-5.el9.x86_64", + sha256 = "6628a0027a113c8687d0cd52ed5725ee6cb1ee2a02897349289d683fc6453223", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libstdc++-11.5.0-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6628a0027a113c8687d0cd52ed5725ee6cb1ee2a02897349289d683fc6453223", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__14.3.1-4.4.el10.aarch64", + sha256 = "315a351328eee84276c8a8d955b815ec952a8644af3bd16e51fa38d3b48fa6a5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libstdc++-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x", + sha256 = "8fc9f5265996b38b2f60128c3c77372db20a9d86aeab260e6c6d391d4d5c478b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libstdc++-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64", + sha256 = "b218d06d603585ed9e29b5aae21ecaafa2619620fa56f5a8afb3a010252a32ba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libstdc++-14.3.1-4.4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.aarch64", + sha256 = "7b99e8f1081ba2c511021b666b9f8176abb31168920e86c392cd45299f400b59", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtasn1-4.16.0-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b99e8f1081ba2c511021b666b9f8176abb31168920e86c392cd45299f400b59", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.s390x", + sha256 = "0ebbc12c3ae3f270efef2965bb77d6e806733eb07505ec7a33468f0fd72360bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtasn1-4.16.0-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0ebbc12c3ae3f270efef2965bb77d6e806733eb07505ec7a33468f0fd72360bd", + ], +) + +rpm( + name = "libtasn1-0__4.16.0-9.el9.x86_64", + sha256 = "addd155d4abc41529d7e8588f442e50a87db3a1314bd2162fbb4950d898a2e28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtasn1-4.16.0-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/addd155d4abc41529d7e8588f442e50a87db3a1314bd2162fbb4950d898a2e28", + ], +) + +rpm( + name = "libtasn1-0__4.20.0-1.el10.aarch64", + sha256 = "f46e93f5bff81ef89c872c2ad91ddde57c9ee0025d162647618ba5e764520854", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libtasn1-4.20.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f46e93f5bff81ef89c872c2ad91ddde57c9ee0025d162647618ba5e764520854", + ], +) + +rpm( + name = "libtasn1-0__4.20.0-1.el10.s390x", + sha256 = "1c866239a4d6d0198fb9916c5ae132f19ccc576cb389101270291e7c1b5e3f1d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libtasn1-4.20.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1c866239a4d6d0198fb9916c5ae132f19ccc576cb389101270291e7c1b5e3f1d", + ], +) + +rpm( + name = "libtasn1-0__4.20.0-1.el10.x86_64", + sha256 = "6f88995a1e9181e8d99b77b8cc60681f79ba424382a17e590c3d813f300adf65", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libtasn1-4.20.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6f88995a1e9181e8d99b77b8cc60681f79ba424382a17e590c3d813f300adf65", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.aarch64", + sha256 = "a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libtirpc-1.3.3-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a5e098dea257c3a423f46377624d5317c9484709ad293292b415574312988780", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.s390x", + sha256 = "59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtirpc-1.3.3-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/59c54c89a7f6ffff9dd2e064b607992b2f0339a0fb6512596145b7e0ac931837", + ], +) + +rpm( + name = "libtirpc-0__1.3.3-9.el9.x86_64", + sha256 = "b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtirpc-1.3.3-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b0c69260f1a74faec97109c6b13de120f38903573e863892abc79b96b0a46f7f", + ], +) + +rpm( + name = "libtirpc-0__1.3.5-1.el10.aarch64", + sha256 = "6e0345c38ef8c15d2f1743892063241f0273a6b14c1844ab127ad0c085b510e1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libtirpc-1.3.5-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6e0345c38ef8c15d2f1743892063241f0273a6b14c1844ab127ad0c085b510e1", + ], +) + +rpm( + name = "libtirpc-0__1.3.5-1.el10.s390x", + sha256 = "5f6160af1ea75ef4df15281225e50e13d7de69aad58a7bc08d558ffb88c86086", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libtirpc-1.3.5-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5f6160af1ea75ef4df15281225e50e13d7de69aad58a7bc08d558ffb88c86086", + ], +) + +rpm( + name = "libtirpc-0__1.3.5-1.el10.x86_64", + sha256 = "8692d388ed8b7fa6ffe56c9403576ea7b49d55c305e9a64dd44a59fb592fe295", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libtirpc-1.3.5-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8692d388ed8b7fa6ffe56c9403576ea7b49d55c305e9a64dd44a59fb592fe295", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.s390x", + sha256 = "548a2de100fb988854c4e3e814314eb03c8645f7a6e9f658b61adbed81c8251e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libtool-ltdl-2.4.6-46.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/548a2de100fb988854c4e3e814314eb03c8645f7a6e9f658b61adbed81c8251e", + ], +) + +rpm( + name = "libtool-ltdl-0__2.4.6-46.el9.x86_64", + sha256 = "a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libtool-ltdl-2.4.6-46.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a04d5a4ccd83b8903e2d7fe76208f57636a6ed07f20e0d350a2b1075c15a2147", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el10.aarch64", + sha256 = "3c666376aabf7fa14a76232e8709a390587bcebfebb24897de6c7c693703fed0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libtpms-0.9.6-11.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3c666376aabf7fa14a76232e8709a390587bcebfebb24897de6c7c693703fed0", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el10.s390x", + sha256 = "55e810e2e6a3c8b166c1fa48a38e2430a2f3b1587014009f48b88fc17ba2f5c4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libtpms-0.9.6-11.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/55e810e2e6a3c8b166c1fa48a38e2430a2f3b1587014009f48b88fc17ba2f5c4", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el10.x86_64", + sha256 = "595a554e74b9e9515d2d615b05ed13118f4a9e0c21f1afc74bf5b4e677b56c9a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libtpms-0.9.6-11.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/595a554e74b9e9515d2d615b05ed13118f4a9e0c21f1afc74bf5b4e677b56c9a", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.aarch64", + sha256 = "299e63f64347c8738e7d86d0c3410362d98866d68617b0f6f9247295347d89f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libtpms-0.9.6-11.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/299e63f64347c8738e7d86d0c3410362d98866d68617b0f6f9247295347d89f2", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.s390x", + sha256 = "0ec765f3f074c28652b8aabb010d4e64b4d2b1cb254c25e893be2af828c98687", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libtpms-0.9.6-11.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0ec765f3f074c28652b8aabb010d4e64b4d2b1cb254c25e893be2af828c98687", + ], +) + +rpm( + name = "libtpms-0__0.9.6-11.el9.x86_64", + sha256 = "e5863ebf4aad8570d7cd58a65b854de53df4ca366244bb65521c9fb96099f1da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtpms-0.9.6-11.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5863ebf4aad8570d7cd58a65b854de53df4ca366244bb65521c9fb96099f1da", + ], +) + +rpm( + name = "libubsan-0__11.5.0-14.el9.aarch64", + sha256 = "a4f09558c0e26c82b5ae7c51d5d97d1b5ef9f0f50159c43a946a9958842af31e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libubsan-11.5.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a4f09558c0e26c82b5ae7c51d5d97d1b5ef9f0f50159c43a946a9958842af31e", + ], +) + +rpm( + name = "libubsan-0__11.5.0-14.el9.s390x", + sha256 = "248f8ad998b8bd25e583f6e6437d7f6a9ca9b9d0c8be2e212ce98fa9d3e85f12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libubsan-11.5.0-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/248f8ad998b8bd25e583f6e6437d7f6a9ca9b9d0c8be2e212ce98fa9d3e85f12", + ], +) + +rpm( + name = "libubsan-0__14.3.1-4.4.el10.aarch64", + sha256 = "db7102b99ef2e935f97f0fbf9dff45076c0fd3fb44cce77ef33d17b07302083d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libubsan-14.3.1-4.4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libubsan-0__14.3.1-4.4.el10.s390x", + sha256 = "79db4832af64077ba6546b8aa25dac7821f6292f65e8090df960eaa0648f5a80", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libubsan-14.3.1-4.4.el10.s390x.rpm", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.aarch64", + sha256 = "09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libunistring-0.9.10-15.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/09381b23c9d2343592b8b565dcbb23d055999ab1e521aa802b6d40a682b80e42", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.s390x", + sha256 = "029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libunistring-0.9.10-15.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/029cedc9f79dcc145f59e2bbf2121d406b3853765d56345a75bc987760d5d2d2", + ], +) + +rpm( + name = "libunistring-0__0.9.10-15.el9.x86_64", + sha256 = "11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libunistring-0.9.10-15.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11e736e44265d2d0ca0afa4c11cfe0856553c4124e534fb616e6ab61c9b59e46", + ], +) + +rpm( + name = "libunistring-0__1.1-10.el10.aarch64", + sha256 = "aa793b61f51cb8727c37520bc4b261845831b9a5789649a798c4e8a2cc207f4f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libunistring-1.1-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/aa793b61f51cb8727c37520bc4b261845831b9a5789649a798c4e8a2cc207f4f", + ], +) + +rpm( + name = "libunistring-0__1.1-10.el10.s390x", + sha256 = "9c45ddec6ffa51201a570b9881e9277b8f22c8eb40ee62b45d3c2b86bdc8eeac", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libunistring-1.1-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/9c45ddec6ffa51201a570b9881e9277b8f22c8eb40ee62b45d3c2b86bdc8eeac", + ], +) + +rpm( + name = "libunistring-0__1.1-10.el10.x86_64", + sha256 = "603c06593a43f5766a53588d9ba18855ddb7b238963b8e09d8a328a17959b774", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libunistring-1.1-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/603c06593a43f5766a53588d9ba18855ddb7b238963b8e09d8a328a17959b774", + ], +) + +rpm( + name = "liburing-0__2.12-1.el10.aarch64", + sha256 = "29f16a2950ef7ddaae31d7806d98961bf1f7d1772623782ae45cc687a3980c62", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/liburing-2.12-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/29f16a2950ef7ddaae31d7806d98961bf1f7d1772623782ae45cc687a3980c62", + ], +) + +rpm( + name = "liburing-0__2.12-1.el10.s390x", + sha256 = "53f3015878c4044a13caf8060a4afa6c10aff93452aa4b8de84cd2374d456a51", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/liburing-2.12-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/53f3015878c4044a13caf8060a4afa6c10aff93452aa4b8de84cd2374d456a51", + ], +) + +rpm( + name = "liburing-0__2.12-1.el10.x86_64", + sha256 = "133309fc854ab7859713d7944e5a14e8cbc3f3916bbcd9f9e6af4d4850424c15", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/liburing-2.12-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/133309fc854ab7859713d7944e5a14e8cbc3f3916bbcd9f9e6af4d4850424c15", + ], +) + +rpm( + name = "liburing-0__2.12-1.el9.aarch64", + sha256 = "7b99b8c28e8cf9a7d355231207e6151cc3b98cd722682359fff41737744d35d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/liburing-2.12-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b99b8c28e8cf9a7d355231207e6151cc3b98cd722682359fff41737744d35d0", + ], +) + +rpm( + name = "liburing-0__2.12-1.el9.s390x", + sha256 = "b259bcadc7623840495a33d9dabec62511a0f2133b731d070b59c5df60e8f7c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/liburing-2.12-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b259bcadc7623840495a33d9dabec62511a0f2133b731d070b59c5df60e8f7c6", + ], +) + +rpm( + name = "liburing-0__2.12-1.el9.x86_64", + sha256 = "49b44a2192b8a3f3184d0ca80c318aa9852dddda391b66e7c38c53f900a08ce4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/liburing-2.12-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/49b44a2192b8a3f3184d0ca80c318aa9852dddda391b66e7c38c53f900a08ce4", + ], +) + +rpm( + name = "liburing-0__2.5-1.el9.x86_64", + sha256 = "12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/liburing-2.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/12558038d4226495da372e5f4369d02c144c759a621d27116299ce0a794e849f", + ], +) + +rpm( + name = "libusb1-0__1.0.29-3.el10.aarch64", + sha256 = "e0d9019535c50ac90e39e158bcf1b4ef7796d30aff42be9183e7177165b40f90", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libusb1-1.0.29-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e0d9019535c50ac90e39e158bcf1b4ef7796d30aff42be9183e7177165b40f90", + ], +) + +rpm( + name = "libusb1-0__1.0.29-3.el10.s390x", + sha256 = "9071987b92f299616adeffc5e6b6e0fe4ec0cd1d7cd293cedeb5e06f17ee6a9a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libusb1-1.0.29-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/9071987b92f299616adeffc5e6b6e0fe4ec0cd1d7cd293cedeb5e06f17ee6a9a", + ], +) + +rpm( + name = "libusb1-0__1.0.29-3.el10.x86_64", + sha256 = "60b40b436504fe0b046ea990512936c916c7500f08aaf82e8ea886cb06ca5f53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libusb1-1.0.29-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/60b40b436504fe0b046ea990512936c916c7500f08aaf82e8ea886cb06ca5f53", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.aarch64", + sha256 = "f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libusbx-1.0.26-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f008b954b622f27dbc5b0c8f3633589c844b5428a1dfe84ca96d42a72dae707c", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.s390x", + sha256 = "d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libusbx-1.0.26-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d590301604a0636520462079997fa6fab7839084c77985a8a7fe16f1126d1b9b", + ], +) + +rpm( + name = "libusbx-0__1.0.26-1.el9.x86_64", + sha256 = "bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libusbx-1.0.26-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bfc8e2bfbcc0e6aaa4e4e665e52ebdc93fb84f7bf00be4640df0fa6df9cbf042", + ], +) + +rpm( + name = "libutempter-0__1.2.1-15.el10.aarch64", + sha256 = "6444bf715fdd137bd1bd096d9903e29516c609d41113139756df2e9316825d6a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libutempter-1.2.1-15.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6444bf715fdd137bd1bd096d9903e29516c609d41113139756df2e9316825d6a", + ], +) + +rpm( + name = "libutempter-0__1.2.1-15.el10.s390x", + sha256 = "1314f6b74597ad5a5a85b51f5243f3802d2f722a5ed5a41a3ebca827eb7d6a6f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libutempter-1.2.1-15.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1314f6b74597ad5a5a85b51f5243f3802d2f722a5ed5a41a3ebca827eb7d6a6f", + ], +) + +rpm( + name = "libutempter-0__1.2.1-15.el10.x86_64", + sha256 = "db498c4b6ce6f223597f8ea955fe4e286f4fc5838e81579de877ca0e80c2d6eb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libutempter-1.2.1-15.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/db498c4b6ce6f223597f8ea955fe4e286f4fc5838e81579de877ca0e80c2d6eb", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.aarch64", + sha256 = "65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libutempter-1.2.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65cd8c3813afc69dd2ea9eeb6e2fc7db4a7d626b51efe376b8000dfdaa10402a", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.s390x", + sha256 = "6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libutempter-1.2.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6c000dac4305215beb37c8931a85ee137806f06547ecfb9a23e1915f01a3baa2", + ], +) + +rpm( + name = "libutempter-0__1.2.1-6.el9.x86_64", + sha256 = "fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libutempter-1.2.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fab361a9cba04490fd8b5664049983d1e57ebf7c1080804726ba600708524125", + ], +) + +rpm( + name = "libuuid-0__2.37.4-21.el9.x86_64", + sha256 = "be4793be5af11772206abe023746ec4021a8b7bc124fdc7e7cdb92b57c46d125", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libuuid-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/be4793be5af11772206abe023746ec4021a8b7bc124fdc7e7cdb92b57c46d125", + ], +) + +rpm( + name = "libuuid-0__2.37.4-25.el9.aarch64", + sha256 = "5e740b232a2ab7deb56916d28ef026f16e3d5d11bedc7ceaa7381717193b3836", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libuuid-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5e740b232a2ab7deb56916d28ef026f16e3d5d11bedc7ceaa7381717193b3836", + ], +) + +rpm( + name = "libuuid-0__2.37.4-25.el9.s390x", + sha256 = "608adf99d9ad76624ef9d526748b8f0e95cc682edbe16e11ac22561b690dc0cd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libuuid-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/608adf99d9ad76624ef9d526748b8f0e95cc682edbe16e11ac22561b690dc0cd", + ], +) + +rpm( + name = "libuuid-0__2.37.4-25.el9.x86_64", + sha256 = "2305b6ddfd73d94cee66c8071d6ec30f7bd7e91792d76628b008c0d919e0c75e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libuuid-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2305b6ddfd73d94cee66c8071d6ec30f7bd7e91792d76628b008c0d919e0c75e", + ], +) + +rpm( + name = "libuuid-0__2.40.2-18.el10.aarch64", + sha256 = "eec5b782deaecda8d60ce24809e67b0b5d89f60a8d5c2de4fdb5fff2d7ba35b7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libuuid-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "libuuid-0__2.40.2-18.el10.s390x", + sha256 = "d748a28468e628ed81b727ca96ac230378b6c70c100349451ebe888e6d88d5fc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libuuid-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "libuuid-0__2.40.2-18.el10.x86_64", + sha256 = "82148fa02d6d8fae7809b8a5e03acddf2a23d8e0f6363fbe8a5e1b434b843cff", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libuuid-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "libverto-0__0.3.2-10.el10.aarch64", + sha256 = "0583db7823a8f33a1e09db1e4aa389c10bc98b58de3bd985b6f67be5351d814a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libverto-0.3.2-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0583db7823a8f33a1e09db1e4aa389c10bc98b58de3bd985b6f67be5351d814a", + ], +) + +rpm( + name = "libverto-0__0.3.2-10.el10.s390x", + sha256 = "80757eae2999d4dbc8975747eb4d8fdfb64b144826ba58215672a0f34d313228", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libverto-0.3.2-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/80757eae2999d4dbc8975747eb4d8fdfb64b144826ba58215672a0f34d313228", + ], +) + +rpm( + name = "libverto-0__0.3.2-10.el10.x86_64", + sha256 = "52777e532dc2351c83b72b5033c40df20494afb6504100f7413a65f74368c284", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libverto-0.3.2-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/52777e532dc2351c83b72b5033c40df20494afb6504100f7413a65f74368c284", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.aarch64", + sha256 = "1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libverto-0.3.2-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1190ea8310b0dab3ebbade3180b4c2cf7064e90c894e5415711d7751e709be8a", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.s390x", + sha256 = "3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libverto-0.3.2-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3d794c924cc3611f1b37033d6835c4af71a555fcba053618bd6d48ad79547ab0", + ], +) + +rpm( + name = "libverto-0__0.3.2-3.el9.x86_64", + sha256 = "c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libverto-0.3.2-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c55578b84f169c4ed79b2d50ea03fd1817007e35062c9fe7a58e6cad025f3b24", + ], +) + +rpm( + name = "libvirt-client-0__11.10.0-4.el10.aarch64", + sha256 = "4c05f497b2faf1527211b60d3772b9fea720f03ac26bffe2ee9d38aa1c715ce4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-client-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-client-0__11.10.0-4.el10.s390x", + sha256 = "4d2baf90ed93b4708f72ebff5df384be9490044d206990c4f4dbe12dd01c4b4b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-client-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-client-0__11.10.0-4.el10.x86_64", + sha256 = "48c49b704b24a882f034b1dcf9faf74298e51401991dfec269823475a3f1bf07", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-client-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-client-0__11.9.0-1.el9.aarch64", + sha256 = "cbdd67bf9c4cc0c3d962c56b352d228901e8a833934f82eae835d9f2a8a49398", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-client-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cbdd67bf9c4cc0c3d962c56b352d228901e8a833934f82eae835d9f2a8a49398", + ], +) + +rpm( + name = "libvirt-client-0__11.9.0-1.el9.s390x", + sha256 = "99b00a3251310318b35e01ee502a1ddb24d1a3e8fc777b51d5b45fa0f7130a75", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-client-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/99b00a3251310318b35e01ee502a1ddb24d1a3e8fc777b51d5b45fa0f7130a75", + ], +) + +rpm( + name = "libvirt-client-0__11.9.0-1.el9.x86_64", + sha256 = "86a5c27f9b4f446760465836ed354761de714a6b08a75d2ea7a7c706a331ab86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-client-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/86a5c27f9b4f446760465836ed354761de714a6b08a75d2ea7a7c706a331ab86", + ], +) + +rpm( + name = "libvirt-daemon-common-0__10.10.0-7.el9.x86_64", + sha256 = "ce303675dd62e81a3d946c15e2938373be0988d9d64e62e620ef846a98be87af", + urls = ["https://storage.googleapis.com/builddeps/ce303675dd62e81a3d946c15e2938373be0988d9d64e62e620ef846a98be87af"], +) + +rpm( + name = "libvirt-daemon-common-0__11.10.0-4.el10.aarch64", + sha256 = "677f36668c0e5cac8a8425054c5d136194b5cc61781a5a9c08e5f4d401f89bc1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-daemon-common-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.10.0-4.el10.s390x", + sha256 = "5c44b4d1185db40077551f0cfe30827b7fa4a40225c27e8b007a8cbe849ddd8b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-common-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.10.0-4.el10.x86_64", + sha256 = "3f686ca53e62e80bca34d189e3a7589dacacba65e116faaa758c51047bb33f4f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-common-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.9.0-1.el9.aarch64", + sha256 = "e55036abe63905c336e4ab2a81ecb49c98ce83397dab4ed3a177487ba13e7fb4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-common-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e55036abe63905c336e4ab2a81ecb49c98ce83397dab4ed3a177487ba13e7fb4", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.9.0-1.el9.s390x", + sha256 = "957cdeb3a3e0708cc01912ce5c2eaadb01970b43f4fb29bed70768d79eb159a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-common-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/957cdeb3a3e0708cc01912ce5c2eaadb01970b43f4fb29bed70768d79eb159a4", + ], +) + +rpm( + name = "libvirt-daemon-common-0__11.9.0-1.el9.x86_64", + sha256 = "bc470fd7f29bb48410c65f12500681d27ee3adbc73e59cc7dd9fbb45a3ead2de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-common-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc470fd7f29bb48410c65f12500681d27ee3adbc73e59cc7dd9fbb45a3ead2de", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__10.10.0-7.el9.x86_64", + sha256 = "13031a6b2bae44c50808b89b820e47879ef6b7884e21e2a0c0e8aba52accd0b1", + urls = ["https://storage.googleapis.com/builddeps/13031a6b2bae44c50808b89b820e47879ef6b7884e21e2a0c0e8aba52accd0b1"], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.10.0-4.el10.aarch64", + sha256 = "3a5c8ef45f7896d7053c92e797fc66942468e7c1d6250bbfea2cb60809400add", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-daemon-driver-qemu-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.10.0-4.el10.s390x", + sha256 = "cd0845cace051f6a4a87fa57120a96de535c7725c673dce9c7f858c1cc15aaa8", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-qemu-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.10.0-4.el10.x86_64", + sha256 = "cc0c643b2070610bdbec7f23c7451e19a2baa18d5d589e53389c4ef8d2e97d92", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-qemu-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.9.0-1.el9.aarch64", + sha256 = "19fa15b5fd2bec4cfd6470e9595320be9c2c01ea5320a4dc4f2b3df1be87c5b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-driver-qemu-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19fa15b5fd2bec4cfd6470e9595320be9c2c01ea5320a4dc4f2b3df1be87c5b0", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.9.0-1.el9.s390x", + sha256 = "431c2264ae9b0cb79110f04586f7004222235050cf22989330a619dbefa7d71b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-qemu-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/431c2264ae9b0cb79110f04586f7004222235050cf22989330a619dbefa7d71b", + ], +) + +rpm( + name = "libvirt-daemon-driver-qemu-0__11.9.0-1.el9.x86_64", + sha256 = "fc357ad81e321752e136a0252bf93fcc4c51705fdad5fe152e8b458c1bd7c804", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-qemu-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fc357ad81e321752e136a0252bf93fcc4c51705fdad5fe152e8b458c1bd7c804", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__10.10.0-7.el9.x86_64", + sha256 = "8d6d2229cde16e57787fd0125ca75dca31d89008446ff344d577ef3eaefcd0f3", + urls = ["https://storage.googleapis.com/builddeps/8d6d2229cde16e57787fd0125ca75dca31d89008446ff344d577ef3eaefcd0f3"], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.10.0-4.el10.s390x", + sha256 = "d257e7f382fd2bcf1007116183caa2e1ddb680ad2867c778112d53caeda1c324", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-secret-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.10.0-4.el10.x86_64", + sha256 = "008ec042342fb4d63fe3c27ab89e4a533285ac00ec11dcffa7d1c2f4e50bb356", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-secret-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.9.0-1.el9.s390x", + sha256 = "63920895b3ff60a8203e684f1bb1c0eab39f18c97ccd88b12e1de800f5894ca6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-secret-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/63920895b3ff60a8203e684f1bb1c0eab39f18c97ccd88b12e1de800f5894ca6", + ], +) + +rpm( + name = "libvirt-daemon-driver-secret-0__11.9.0-1.el9.x86_64", + sha256 = "9f7ad76f1918935dd25157f6f37930706b81449392e6bb720db1b4e7f9df9619", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-secret-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9f7ad76f1918935dd25157f6f37930706b81449392e6bb720db1b4e7f9df9619", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__10.10.0-7.el9.x86_64", + sha256 = "a95615f05b0ca4349c571b5a25c2e7151ae7a2d6e7205b5e5c3be26c89a98067", + urls = ["https://storage.googleapis.com/builddeps/a95615f05b0ca4349c571b5a25c2e7151ae7a2d6e7205b5e5c3be26c89a98067"], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.s390x", + sha256 = "e237f8b650e604ea58b35695ef7250f9c32d27081eb9081f446b938e8632c42b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-storage-core-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.x86_64", + sha256 = "3fe4d761cbe82fc8c7db6043b282529533473a113b45f88c4aa13355bc9f4b9f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-storage-core-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.s390x", + sha256 = "30e35bd1454accdcd90c255d660ce1e7e724329e70a424dee078de3d66547ebe", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-driver-storage-core-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/30e35bd1454accdcd90c255d660ce1e7e724329e70a424dee078de3d66547ebe", + ], +) + +rpm( + name = "libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.x86_64", + sha256 = "9066ad1b758b950809a2761abc99ee8d96aab03d9150f24c3038f61e76180e32", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-driver-storage-core-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9066ad1b758b950809a2761abc99ee8d96aab03d9150f24c3038f61e76180e32", + ], +) + +rpm( + name = "libvirt-daemon-log-0__10.10.0-7.el9.x86_64", + sha256 = "7fa94e83fcae83614c5c4c95a92f4cb3f0065d8971f4a4025c9fd262e68cddff", + urls = ["https://storage.googleapis.com/builddeps/7fa94e83fcae83614c5c4c95a92f4cb3f0065d8971f4a4025c9fd262e68cddff"], +) + +rpm( + name = "libvirt-daemon-log-0__11.10.0-4.el10.aarch64", + sha256 = "37bcf091904af712adc8cbd158b99029264d4e72013c1cdc30429b2aed95d278", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-daemon-log-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.10.0-4.el10.s390x", + sha256 = "e4373dea00854c968dd23c25a834787579aacd8541bac140a64ba86ffdc6117b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-daemon-log-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.10.0-4.el10.x86_64", + sha256 = "5ab4233af33887cac2cfb40a3190a8874ffaf6e32b05f1cd750bbf374ff14023", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-daemon-log-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.9.0-1.el9.aarch64", + sha256 = "a4fd6a282bf09969d6e11f2a7a68577d9c87fc529e5af76c64a94c0683f88bb7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-daemon-log-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a4fd6a282bf09969d6e11f2a7a68577d9c87fc529e5af76c64a94c0683f88bb7", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.9.0-1.el9.s390x", + sha256 = "49f189f5704b1e2b02333bb72954854659b00753eb1941931f672d3d647b9b35", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-daemon-log-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/49f189f5704b1e2b02333bb72954854659b00753eb1941931f672d3d647b9b35", + ], +) + +rpm( + name = "libvirt-daemon-log-0__11.9.0-1.el9.x86_64", + sha256 = "4e499cd2d4331c986b80249cabbbfa5c991b2a98ae301ff539a5ca201301400b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-daemon-log-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4e499cd2d4331c986b80249cabbbfa5c991b2a98ae301ff539a5ca201301400b", + ], +) + +rpm( + name = "libvirt-devel-0__11.10.0-4.el10.aarch64", + sha256 = "d1453ff4ae60dc4b1347590ea9d430e1b6309134c0a2a04144eac4abde1792a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/libvirt-devel-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-devel-0__11.10.0-4.el10.s390x", + sha256 = "7d0f7f4f0a5f46796f24ca556665c76c3210487a7940181618f4499af1936d46", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/libvirt-devel-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-devel-0__11.10.0-4.el10.x86_64", + sha256 = "651811e137f348e4c0dc18012fe119a2410e8cfa6e88a3758486ef378246a605", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/libvirt-devel-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-devel-0__11.9.0-1.el9.aarch64", + sha256 = "b4e5f496902c96280d2717b215e2365759c5e535210af6a8c0b7847e1c912be7", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libvirt-devel-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b4e5f496902c96280d2717b215e2365759c5e535210af6a8c0b7847e1c912be7", + ], +) + +rpm( + name = "libvirt-devel-0__11.9.0-1.el9.s390x", + sha256 = "3043bd36232c9625aba61c805307d557f7c05c19bb25169b1798aa09ef97f351", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libvirt-devel-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3043bd36232c9625aba61c805307d557f7c05c19bb25169b1798aa09ef97f351", + ], +) + +rpm( + name = "libvirt-devel-0__11.9.0-1.el9.x86_64", + sha256 = "37a170292e19a69bbbfcae3197a226dce84be287f4b5a53037880835b03c0d85", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libvirt-devel-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/37a170292e19a69bbbfcae3197a226dce84be287f4b5a53037880835b03c0d85", + ], +) + +rpm( + name = "libvirt-libs-0__10.10.0-7.el9.x86_64", + sha256 = "72e64da467f4afbff2c96b6e46c779fa3abfaba2ddaf85ad0de6087c3d5ccc39", + urls = ["https://storage.googleapis.com/builddeps/72e64da467f4afbff2c96b6e46c779fa3abfaba2ddaf85ad0de6087c3d5ccc39"], +) + +rpm( + name = "libvirt-libs-0__11.10.0-4.el10.aarch64", + sha256 = "b3409350a0917743e019fb4bad9c9a1268829404772ebffe0f3b0d7eddfc1326", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libvirt-libs-11.10.0-4.el10.aarch64.rpm", + ], +) + +rpm( + name = "libvirt-libs-0__11.10.0-4.el10.s390x", + sha256 = "5e0f33b641cad02eb7a4a5bb1b934d39d0d13f918fdecaad0199ae03364f2079", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libvirt-libs-11.10.0-4.el10.s390x.rpm", + ], +) + +rpm( + name = "libvirt-libs-0__11.10.0-4.el10.x86_64", + sha256 = "9eee6b008dc0fb35237bdd4e2f4e0bb4555369d11a3adfc3d9e684590b4f0d7d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libvirt-libs-11.10.0-4.el10.x86_64.rpm", + ], +) + +rpm( + name = "libvirt-libs-0__11.9.0-1.el9.aarch64", + sha256 = "5c189b32115edc2a71f73ab70e1964272ec6ee08d3c259c5104486683bc6d301", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libvirt-libs-11.9.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5c189b32115edc2a71f73ab70e1964272ec6ee08d3c259c5104486683bc6d301", + ], +) + +rpm( + name = "libvirt-libs-0__11.9.0-1.el9.s390x", + sha256 = "f87768c7ac75945faddeefdbcd3c560eb4f72cc26ed09720df2b0438d20e3770", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libvirt-libs-11.9.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f87768c7ac75945faddeefdbcd3c560eb4f72cc26ed09720df2b0438d20e3770", + ], +) + +rpm( + name = "libvirt-libs-0__11.9.0-1.el9.x86_64", + sha256 = "00e7d11d7515ad4343e73bfe2b01c3917bda350ba072fda3b0ee8ee5cddddb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvirt-libs-11.9.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/00e7d11d7515ad4343e73bfe2b01c3917bda350ba072fda3b0ee8ee5cddddb43", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.aarch64", + sha256 = "f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxcrypt-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f697d91abb19e9be9b69b8836a802711d2cf7989af27a4e1ba261f35ce53b8b5", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.s390x", + sha256 = "dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxcrypt-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/dd9d51f68ae799b41cbe4cc00945280c65ed0c098b72f79d8d39a5c462b37074", + ], +) + +rpm( + name = "libxcrypt-0__4.4.18-3.el9.x86_64", + sha256 = "97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxcrypt-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/97e88678b420f619a44608fff30062086aa1dd6931ecbd54f21bba005ff1de1a", + ], +) + +rpm( + name = "libxcrypt-0__4.4.36-10.el10.aarch64", + sha256 = "465ade16c8f369b5abc1a39671f882bc645ac90b1aeaa29cdfc3958e57640144", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libxcrypt-4.4.36-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/465ade16c8f369b5abc1a39671f882bc645ac90b1aeaa29cdfc3958e57640144", + ], +) + +rpm( + name = "libxcrypt-0__4.4.36-10.el10.s390x", + sha256 = "d14c5523dd6c7f233277acbbb11fb2644f26e91da18e6184ae6ad445e3835a36", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libxcrypt-4.4.36-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d14c5523dd6c7f233277acbbb11fb2644f26e91da18e6184ae6ad445e3835a36", + ], +) + +rpm( + name = "libxcrypt-0__4.4.36-10.el10.x86_64", + sha256 = "503a29c4c767637d810c7e89ed4355fe0b588381cb360517585fb56a2cf5ee46", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libxcrypt-4.4.36-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/503a29c4c767637d810c7e89ed4355fe0b588381cb360517585fb56a2cf5ee46", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.aarch64", + sha256 = "4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/libxcrypt-devel-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4d6085cd4068264576d023784ceddf0d9e19eb7633d87c31efd9444dab0c3420", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.s390x", + sha256 = "bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxcrypt-devel-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bc088a5a60f086756b5be929fd420d5bfe56a77740a2b68be3c14601537244ac", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.18-3.el9.x86_64", + sha256 = "162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcrypt-devel-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/162461e5f31f94907c91815370b545844cc9d33b1311e0063e23ae427241d1e0", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.36-10.el10.aarch64", + sha256 = "2f86c95726f3c3efdcb2d97f5d0020e86d254defebb084df7c13a5fa51442b5a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/libxcrypt-devel-4.4.36-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2f86c95726f3c3efdcb2d97f5d0020e86d254defebb084df7c13a5fa51442b5a", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.36-10.el10.s390x", + sha256 = "a3f57faa74cefedf8baddec91311a5e0cafe73878e83c3447335495c7ed7934b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libxcrypt-devel-4.4.36-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a3f57faa74cefedf8baddec91311a5e0cafe73878e83c3447335495c7ed7934b", + ], +) + +rpm( + name = "libxcrypt-devel-0__4.4.36-10.el10.x86_64", + sha256 = "ccee1b09985e24bfed47cf7b5c965d7e0e869862ac55f3b7f783cdcec93716f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libxcrypt-devel-4.4.36-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ccee1b09985e24bfed47cf7b5c965d7e0e869862ac55f3b7f783cdcec93716f3", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.aarch64", + sha256 = "34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/aarch64/os/Packages/libxcrypt-static-4.4.18-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/34033b8a089eac80956a9542a77b4c5e8c32a27ab0e8cf61728a9fbac970d5ad", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.s390x", + sha256 = "32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/s390x/os/Packages/libxcrypt-static-4.4.18-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/32de43720371755ee2fffd5c5421cdd3c66a6470ce8ce1a5b8d2d975c4c19c99", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.18-3.el9.x86_64", + sha256 = "251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxcrypt-static-4.4.18-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/251a45a42a342459303bb1b928359eed1ea88bcd12605a9fe084f24fac020869", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.36-10.el10.aarch64", + sha256 = "a2d13d4bb5d7ca66384346f0b90801862e9e58e016870565929a699bb1c15feb", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/aarch64/os/Packages/libxcrypt-static-4.4.36-10.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a2d13d4bb5d7ca66384346f0b90801862e9e58e016870565929a699bb1c15feb", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.36-10.el10.s390x", + sha256 = "42d6494724ad9eb96949ac0632b9658b488c5db84d7aa2f9db3d20198a29f9fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/s390x/os/Packages/libxcrypt-static-4.4.36-10.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/42d6494724ad9eb96949ac0632b9658b488c5db84d7aa2f9db3d20198a29f9fe", + ], +) + +rpm( + name = "libxcrypt-static-0__4.4.36-10.el10.x86_64", + sha256 = "a4b6f28908fa252bac1c366f91bb37117c0b56ebce1743933dcf2029f10f86c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/CRB/x86_64/os/Packages/libxcrypt-static-4.4.36-10.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a4b6f28908fa252bac1c366f91bb37117c0b56ebce1743933dcf2029f10f86c0", + ], +) + +rpm( + name = "libxml2-0__2.12.5-10.el10.aarch64", + sha256 = "25832e149d6f0252eaf3f885466c9d470205c5d1e80d0be4fa43559715d4b92a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libxml2-2.12.5-10.el10.aarch64.rpm", + ], +) + +rpm( + name = "libxml2-0__2.12.5-10.el10.s390x", + sha256 = "873d65d7d52716dfd36c38820b883e92edc5b315bc5cdefd546d615580645cfa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libxml2-2.12.5-10.el10.s390x.rpm", + ], +) + +rpm( + name = "libxml2-0__2.12.5-10.el10.x86_64", + sha256 = "671967be1ee8285e84ed241404ed05721b14a8530ccf640401f998f3c8931df5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libxml2-2.12.5-10.el10.x86_64.rpm", + ], +) + +rpm( + name = "libxml2-0__2.9.13-14.el9.aarch64", + sha256 = "f62d552977c2b1d53cc4f6d4e9ea91fa7c0351dcd3a5bec8ceb7f91bc1157aaf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libxml2-2.9.13-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f62d552977c2b1d53cc4f6d4e9ea91fa7c0351dcd3a5bec8ceb7f91bc1157aaf", + ], +) + +rpm( + name = "libxml2-0__2.9.13-14.el9.s390x", + sha256 = "78256fb046360c848f4f4d2a0419705ce747e87de18bc0d3994c6d5865656992", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libxml2-2.9.13-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/78256fb046360c848f4f4d2a0419705ce747e87de18bc0d3994c6d5865656992", + ], +) + +rpm( + name = "libxml2-0__2.9.13-14.el9.x86_64", + sha256 = "6e3e385bd23d1f0ecf30859d65eaaaa9583c814a9afb8e04379b1eeca21a54c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e3e385bd23d1f0ecf30859d65eaaaa9583c814a9afb8e04379b1eeca21a54c3", + ], +) + +rpm( + name = "libxml2-0__2.9.13-9.el9.x86_64", + sha256 = "70b74fdfab02d40caad350cf83bc676a782de69b25beb3d37dc193aaf381d9e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libxml2-2.9.13-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/70b74fdfab02d40caad350cf83bc676a782de69b25beb3d37dc193aaf381d9e0", + ], +) + +rpm( + name = "libxslt-0__1.1.34-12.el9.s390x", + sha256 = "d2a72b102141ce337c5dab51985071e29bc2e1a00008f866c1cfd265c49c5d65", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/libxslt-1.1.34-12.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2a72b102141ce337c5dab51985071e29bc2e1a00008f866c1cfd265c49c5d65", + ], +) + +rpm( + name = "libxslt-0__1.1.34-12.el9.x86_64", + sha256 = "d14a14cb0ab0be6864c26d26d2e0c580fdf50b534cf79f23cc7677d51ddb2adc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d14a14cb0ab0be6864c26d26d2e0c580fdf50b534cf79f23cc7677d51ddb2adc", + ], +) + +rpm( + name = "libxslt-0__1.1.34-9.el9.x86_64", + sha256 = "576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxslt-1.1.34-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/576a1d36454a155d109ba1d0bb89b3a90b932d0b539fcd6392a67054bebc0015", + ], +) + +rpm( + name = "libxslt-0__1.1.39-8.el10.s390x", + sha256 = "1e6ec8eb0dac9858a45d3b42ac6755ce77182581ca77af4eec34af9256aa874e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/libxslt-1.1.39-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/1e6ec8eb0dac9858a45d3b42ac6755ce77182581ca77af4eec34af9256aa874e", + ], +) + +rpm( + name = "libxslt-0__1.1.39-8.el10.x86_64", + sha256 = "394d4f76d3a0ed6283ecc2e840520958361f9764402d616014687f92ad750d81", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/libxslt-1.1.39-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/394d4f76d3a0ed6283ecc2e840520958361f9764402d616014687f92ad750d81", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.aarch64", + sha256 = "49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/libzstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/49fb3a1052d9f50abb9ad3f0ab4ed186b2c0bb51fcb04883702fbc362d116108", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.s390x", + sha256 = "720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/libzstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/720ce927a447b6c9fd2479ecb924112d450ec9b4f927090b36ef34b10ad4b163", + ], +) + +rpm( + name = "libzstd-0__1.5.5-1.el9.x86_64", + sha256 = "3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libzstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3439a7437a4b47ef4b6efbcd8c5862180fb281dd956d70a4ffe3764fd8d997dd", + ], +) + +rpm( + name = "libzstd-0__1.5.5-9.el10.aarch64", + sha256 = "474a4497b7901176be4a59895cd02bba744300fd673668ef068bd1dfc5e129c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/libzstd-1.5.5-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/474a4497b7901176be4a59895cd02bba744300fd673668ef068bd1dfc5e129c7", + ], +) + +rpm( + name = "libzstd-0__1.5.5-9.el10.s390x", + sha256 = "59d29a77a5792bbc4ce42b3ac700a1df776ace058e040f391374f011d39f0eef", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/libzstd-1.5.5-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/59d29a77a5792bbc4ce42b3ac700a1df776ace058e040f391374f011d39f0eef", + ], +) + +rpm( + name = "libzstd-0__1.5.5-9.el10.x86_64", + sha256 = "86f3cb406d56283119c45ec8c1f4689aa37ff6c04cf44f6608c10cfdcccdb2c1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/libzstd-1.5.5-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/86f3cb406d56283119c45ec8c1f4689aa37ff6c04cf44f6608c10cfdcccdb2c1", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.aarch64", + sha256 = "bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lua-libs-5.4.4-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bd72283eb56206de91a71b1b7dbdcca1201fdaea4a08faf7b92d8ef9a600a88a", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.s390x", + sha256 = "616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lua-libs-5.4.4-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/616111e91869993d6db2fec066d5b5b29b2c17bfbce87748a51ed772dbc4d4ca", + ], +) + +rpm( + name = "lua-libs-0__5.4.4-4.el9.x86_64", + sha256 = "a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lua-libs-5.4.4-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a24f7e08163b012cdbbdaba70788331050c2b7bdb9bc2fdc261c5c1f3cd3960d", + ], +) + +rpm( + name = "lua-libs-0__5.4.6-7.el10.s390x", + sha256 = "e0676e298166577f2766305025f4c99fe774473f084fe13fcdf8937b4b0e5eab", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lua-libs-5.4.6-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/e0676e298166577f2766305025f4c99fe774473f084fe13fcdf8937b4b0e5eab", + ], +) + +rpm( + name = "lua-libs-0__5.4.6-7.el10.x86_64", + sha256 = "cb9268a17c06928ffb0805ff43d733b0c67171ff3a969cc16b40c7f3e59d64f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lua-libs-5.4.6-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cb9268a17c06928ffb0805ff43d733b0c67171ff3a969cc16b40c7f3e59d64f3", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.aarch64", + sha256 = "9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lz4-libs-1.9.3-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9aa14d26393dd46c0a390cf04f939f7f759a33165bdb506f8bee0653f3b70f45", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.s390x", + sha256 = "358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lz4-libs-1.9.3-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/358c7c19e9ec8778874066342c591b71877c3324f0727357342dffb4e1ec3498", + ], +) + +rpm( + name = "lz4-libs-0__1.9.3-5.el9.x86_64", + sha256 = "cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lz4-libs-1.9.3-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cba6a63054d070956a182e33269ee245bcfbe87e3e605c27816519db762a66ad", + ], +) + +rpm( + name = "lz4-libs-0__1.9.4-8.el10.aarch64", + sha256 = "7db176282f02ed0243d66b9136e1269e4db85da61157392ecc0febeac418ec85", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/lz4-libs-1.9.4-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7db176282f02ed0243d66b9136e1269e4db85da61157392ecc0febeac418ec85", + ], +) + +rpm( + name = "lz4-libs-0__1.9.4-8.el10.s390x", + sha256 = "bd0ba485141caa931c930540a150a55a89ab3dfc6bba448aa592e5b9551dee2e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lz4-libs-1.9.4-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bd0ba485141caa931c930540a150a55a89ab3dfc6bba448aa592e5b9551dee2e", + ], +) + +rpm( + name = "lz4-libs-0__1.9.4-8.el10.x86_64", + sha256 = "de360e857e8465c4b38990375e9435efc78e20d022afe42dbf2986d11fc2c759", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lz4-libs-1.9.4-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/de360e857e8465c4b38990375e9435efc78e20d022afe42dbf2986d11fc2c759", + ], +) + +rpm( + name = "lzo-0__2.10-14.el10.aarch64", + sha256 = "677b7730dfa8e554a8ddd22940c5c6288b0d51cb09e9547c150905e856fb0575", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/lzo-2.10-14.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/677b7730dfa8e554a8ddd22940c5c6288b0d51cb09e9547c150905e856fb0575", + ], +) + +rpm( + name = "lzo-0__2.10-14.el10.s390x", + sha256 = "32bde43a3a00f4b5d078b2c831270f8cc195664e0e3ab5b1c5bcc6dc802e33d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lzo-2.10-14.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/32bde43a3a00f4b5d078b2c831270f8cc195664e0e3ab5b1c5bcc6dc802e33d5", + ], +) + +rpm( + name = "lzo-0__2.10-14.el10.x86_64", + sha256 = "9e4f4e6dc19d15eb865805a43f5834b0ce3a405dcc6df0fba72f0b73f59685a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lzo-2.10-14.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9e4f4e6dc19d15eb865805a43f5834b0ce3a405dcc6df0fba72f0b73f59685a2", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.aarch64", + sha256 = "eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzo-2.10-7.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/eb10493cb600631bc42b0c0bad707f9b79da912750fa9b9e5d8a9978a98babdf", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.s390x", + sha256 = "d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzo-2.10-7.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d35dc772b6fe7070ddc15aef9d37550ae638f304bf9b9a5c15bff0f5730cd43a", + ], +) + +rpm( + name = "lzo-0__2.10-7.el9.x86_64", + sha256 = "7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzo-2.10-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7bee77c82bd6c183bba7a4b4fdd3ecb99d0a089a25c735ebbabc44e0c51e4b2e", + ], +) + +rpm( + name = "lzop-0__1.04-16.el10.aarch64", + sha256 = "e463088918132202d22ada263686b6b723af02b6a49066fd6f9d48cf191cb25e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/lzop-1.04-16.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e463088918132202d22ada263686b6b723af02b6a49066fd6f9d48cf191cb25e", + ], +) + +rpm( + name = "lzop-0__1.04-16.el10.s390x", + sha256 = "5eeeda50a19223224ac6de6428853904e6210b0c11223e71aa39848e613bcb0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/lzop-1.04-16.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/5eeeda50a19223224ac6de6428853904e6210b0c11223e71aa39848e613bcb0b", + ], +) + +rpm( + name = "lzop-0__1.04-16.el10.x86_64", + sha256 = "925d4dfbf179f00032be3a3a1ec7cf8ed8f9b9b2cd8ea87c2a4da1e97fcfd180", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/lzop-1.04-16.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/925d4dfbf179f00032be3a3a1ec7cf8ed8f9b9b2cd8ea87c2a4da1e97fcfd180", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.aarch64", + sha256 = "ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/lzop-1.04-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ae5bdeee08c76f6ce902c70e16b373160e1c595dd1718f2f1db3a37ec5d63703", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.s390x", + sha256 = "f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/lzop-1.04-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f1b48c30e04aa4734302a24f965647b20b784f5ed73debed74920d2e68eb6bda", + ], +) + +rpm( + name = "lzop-0__1.04-8.el9.x86_64", + sha256 = "ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/lzop-1.04-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad84787d14a62195822ea89cec0fcf475f09b425f0822ce34d858d2d8bbd9466", + ], +) + +rpm( + name = "make-1__4.3-8.el9.aarch64", + sha256 = "65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/make-4.3-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/65fbb428870eea959bb831c11a7e0eaa249071b7185b5d8d16ad84b124280ae8", + ], +) + +rpm( + name = "make-1__4.3-8.el9.s390x", + sha256 = "b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/make-4.3-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b3ad9b83ee1419b3f614c5bae44f5f3502bc4cf67ca8f1d9664186eb169dc262", + ], +) + +rpm( + name = "make-1__4.3-8.el9.x86_64", + sha256 = "3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/make-4.3-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3f6a7886f17d9bf4266d507e8f93a3e6164cb3444429517da6cfcacf041a08a4", + ], +) + +rpm( + name = "make-1__4.4.1-9.el10.aarch64", + sha256 = "4cd069f5132c87ad16d02ff648b6389e3e303b41661362252134519993afc45c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/make-4.4.1-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4cd069f5132c87ad16d02ff648b6389e3e303b41661362252134519993afc45c", + ], +) + +rpm( + name = "make-1__4.4.1-9.el10.s390x", + sha256 = "aa138cd7a41f8b054dbecd74462e796b47d58cd9058ad8b56734c0cf242dcd80", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/make-4.4.1-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/aa138cd7a41f8b054dbecd74462e796b47d58cd9058ad8b56734c0cf242dcd80", + ], +) + +rpm( + name = "make-1__4.4.1-9.el10.x86_64", + sha256 = "7d0b52fe16c826f8b08656abd70509987e69e2b8a9f0c42fda803d41a9e7c74e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/make-4.4.1-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d0b52fe16c826f8b08656abd70509987e69e2b8a9f0c42fda803d41a9e7c74e", + ], +) + +rpm( + name = "mpdecimal-0__2.5.1-12.el10.aarch64", + sha256 = "f7755f98208b3f400c950ba46acf568f113029893fede5770d19eedadfa0b3ea", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/mpdecimal-2.5.1-12.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f7755f98208b3f400c950ba46acf568f113029893fede5770d19eedadfa0b3ea", + ], +) + +rpm( + name = "mpdecimal-0__2.5.1-12.el10.s390x", + sha256 = "2dd0dbab48a3481fab6bcb4554b0854cb66c8d142ef28b8e97b7dfc96d4c2c93", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/mpdecimal-2.5.1-12.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2dd0dbab48a3481fab6bcb4554b0854cb66c8d142ef28b8e97b7dfc96d4c2c93", + ], +) + +rpm( + name = "mpdecimal-0__2.5.1-12.el10.x86_64", + sha256 = "7d1762e4770170efa93ff4f7e07cf523f62d3e3378f50d87d7b307cd8a73ee77", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/mpdecimal-2.5.1-12.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d1762e4770170efa93ff4f7e07cf523f62d3e3378f50d87d7b307cd8a73ee77", + ], +) + +rpm( + name = "mpfr-0__4.1.0-10.el9.aarch64", + sha256 = "bea56ccc46a2a14f3f2c8d9624675abc135e4f002e87c76541784b047d51764d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/mpfr-4.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bea56ccc46a2a14f3f2c8d9624675abc135e4f002e87c76541784b047d51764d", + ], +) + +rpm( + name = "mpfr-0__4.1.0-10.el9.s390x", + sha256 = "b166f1d2ae951d053a5761c826cd5bd8735412e465ce7cbfe78b1292c27aa10e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/mpfr-4.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b166f1d2ae951d053a5761c826cd5bd8735412e465ce7cbfe78b1292c27aa10e", + ], +) + +rpm( + name = "mpfr-0__4.1.0-10.el9.x86_64", + sha256 = "11c1d6b33b7e64ddc40faf45b949618c829bd2e3d3661132417e4c8aee6ab0fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/mpfr-4.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11c1d6b33b7e64ddc40faf45b949618c829bd2e3d3661132417e4c8aee6ab0fd", + ], +) + +rpm( + name = "mpfr-0__4.1.0-7.el9.x86_64", + sha256 = "179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/mpfr-4.1.0-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/179760104aa5a31ca463c586d0f21f380ba4d0eed212eee91bd1ca513e5d7a8d", + ], +) + +rpm( + name = "mpfr-0__4.2.1-8.el10.aarch64", + sha256 = "df1662c3221a03d86963ca2f2b4db1b745493ce805e95fa07ebde2a8df7b3628", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/mpfr-4.2.1-8.el10.aarch64.rpm", + ], +) + +rpm( + name = "mpfr-0__4.2.1-8.el10.s390x", + sha256 = "3b4858c266478b5173b90c650c9d0bbe7a9f84c31bde1fb85ac709051531f98f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/mpfr-4.2.1-8.el10.s390x.rpm", + ], +) + +rpm( + name = "mpfr-0__4.2.1-8.el10.x86_64", + sha256 = "351ac05205dd7c29daecbeeb7e53bab4a130060d1d1d1f610097d8b5fc30289f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/mpfr-4.2.1-8.el10.x86_64.rpm", + ], +) + +rpm( + name = "ncurses-base-0__6.2-10.20210508.el9.x86_64", + sha256 = "00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-10.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/00ba56b28a3a85c3c03387bb7abeca92597c8a5fac7f53d48410ca2a20fd8065", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.aarch64", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.s390x", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.2-12.20210508.el9.x86_64", + sha256 = "49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.2-12.20210508.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/49f6470fa7dd1b3ba81ccdd0547b29953af2835e067de915eeca3c45d5faa339", + ], +) + +rpm( + name = "ncurses-base-0__6.4-14.20240127.el10.aarch64", + sha256 = "6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/ncurses-base-6.4-14.20240127.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + ], +) + +rpm( + name = "ncurses-base-0__6.4-14.20240127.el10.s390x", + sha256 = "6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/ncurses-base-6.4-14.20240127.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + ], +) + +rpm( + name = "ncurses-base-0__6.4-14.20240127.el10.x86_64", + sha256 = "6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/ncurses-base-6.4-14.20240127.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/6e439dd9afd65b489675c37f03bdcd950353ed6b822c31ee620fe370642db042", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-10.20210508.el9.x86_64", + sha256 = "f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-10.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f4ead70a508051ed338499b35605b5b2b5bccde19c9e83f7e4b948f171b542ff", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.aarch64", + sha256 = "7b61d1dab8d4113a6ad015c083ac3053ec9db1f2503527d547ba7c741d54e57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/ncurses-libs-6.2-12.20210508.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b61d1dab8d4113a6ad015c083ac3053ec9db1f2503527d547ba7c741d54e57a", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.s390x", + sha256 = "d2a6307a398b9cde8f0a83fff92c3b31f5f6c4c15f911f64ff84168a7cd060a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/ncurses-libs-6.2-12.20210508.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2a6307a398b9cde8f0a83fff92c3b31f5f6c4c15f911f64ff84168a7cd060a4", + ], +) + +rpm( + name = "ncurses-libs-0__6.2-12.20210508.el9.x86_64", + sha256 = "7b396883232158d4f9a6977bcd72b5e6f7fa6bc34a51030379833d4c0d24ab6f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.2-12.20210508.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b396883232158d4f9a6977bcd72b5e6f7fa6bc34a51030379833d4c0d24ab6f", + ], +) + +rpm( + name = "ncurses-libs-0__6.4-14.20240127.el10.aarch64", + sha256 = "d781030401acc90746bf50c039bac36bcb812b33bb76965d6e6cfed43787a45b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/ncurses-libs-6.4-14.20240127.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d781030401acc90746bf50c039bac36bcb812b33bb76965d6e6cfed43787a45b", + ], +) + +rpm( + name = "ncurses-libs-0__6.4-14.20240127.el10.s390x", + sha256 = "9dccdd3dc565eb6a75ff4e9d359a7de762e11bf834ebfedf03a815188da8d429", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/ncurses-libs-6.4-14.20240127.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/9dccdd3dc565eb6a75ff4e9d359a7de762e11bf834ebfedf03a815188da8d429", + ], +) + +rpm( + name = "ncurses-libs-0__6.4-14.20240127.el10.x86_64", + sha256 = "80256770f1fb9639ea2e1cc744ba6cdbc6b65850d74c6e66a64fc9bcbb4837f4", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/ncurses-libs-6.4-14.20240127.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/80256770f1fb9639ea2e1cc744ba6cdbc6b65850d74c6e66a64fc9bcbb4837f4", + ], +) + +rpm( + name = "ndctl-libs-0__78-2.el9.x86_64", + sha256 = "6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ndctl-libs-78-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6e8464b63dd264c7ade60f733747606dc214bbe3edf5e826836348c16fd3a970", + ], +) + +rpm( + name = "ndctl-libs-0__82-1.el9.x86_64", + sha256 = "a0e0c0618946ac1cf3ede937f9a43787d7cb40fe2626ccbf29cc8267b75d48f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/ndctl-libs-82-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a0e0c0618946ac1cf3ede937f9a43787d7cb40fe2626ccbf29cc8267b75d48f5", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.aarch64", + sha256 = "caf6dda4eaf3c7e3061ec335d45176ebfcaa72ed583df59c32c9dffc00a24ad9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nettle-3.10.1-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/caf6dda4eaf3c7e3061ec335d45176ebfcaa72ed583df59c32c9dffc00a24ad9", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.s390x", + sha256 = "d05a33e0b673bc34580c443f7d7c28b50f8b4fd77ad87ed3cef30f991d7cbf09", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nettle-3.10.1-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d05a33e0b673bc34580c443f7d7c28b50f8b4fd77ad87ed3cef30f991d7cbf09", + ], +) + +rpm( + name = "nettle-0__3.10.1-1.el9.x86_64", + sha256 = "aa28996450c98399099cfcc0fb722723b5821edff27cff53288e1c0298a98190", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nettle-3.10.1-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/aa28996450c98399099cfcc0fb722723b5821edff27cff53288e1c0298a98190", + ], +) + +rpm( + name = "nftables-1__1.0.9-6.el9.aarch64", + sha256 = "961be61924e53a0e1f6c7cb70c2687eb8dbe131cacbef3c4d335c0df46f402a4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/nftables-1.0.9-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/961be61924e53a0e1f6c7cb70c2687eb8dbe131cacbef3c4d335c0df46f402a4", + ], +) + +rpm( + name = "nftables-1__1.0.9-6.el9.s390x", + sha256 = "e7672f3f0f6bce29e909386370325bf3de635bd34b318c5597aa92bd23331ce0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/nftables-1.0.9-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e7672f3f0f6bce29e909386370325bf3de635bd34b318c5597aa92bd23331ce0", + ], +) + +rpm( + name = "nftables-1__1.0.9-6.el9.x86_64", + sha256 = "0c4a7846656c9da0e2f7c5be3173219fbe4ddda695d6609803487092dc505f9f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/nftables-1.0.9-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0c4a7846656c9da0e2f7c5be3173219fbe4ddda695d6609803487092dc505f9f", + ], +) + +rpm( + name = "nftables-1__1.1.5-3.el10.aarch64", + sha256 = "be675a4acfbf9cf768d95dc25d5390eda069cf2ee8ac774bb81e701cd5ae3135", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/nftables-1.1.5-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/be675a4acfbf9cf768d95dc25d5390eda069cf2ee8ac774bb81e701cd5ae3135", + ], +) + +rpm( + name = "nftables-1__1.1.5-3.el10.s390x", + sha256 = "ce456b58b2f65c45c8ecaf147eb6936e106a9bc2169e9ba39f5ab760479e42a0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/nftables-1.1.5-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ce456b58b2f65c45c8ecaf147eb6936e106a9bc2169e9ba39f5ab760479e42a0", + ], +) + +rpm( + name = "nftables-1__1.1.5-3.el10.x86_64", + sha256 = "b04022e2f5e38f6600bf9d3f8cad167704e19bd1191cdbf0dd62db3f15b16a1c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/nftables-1.1.5-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b04022e2f5e38f6600bf9d3f8cad167704e19bd1191cdbf0dd62db3f15b16a1c", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-5.el9.aarch64", + sha256 = "b19deb6d714c11d77f7ec5c3fe517346570099811885f56bb1ae93385886744b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/nmap-ncat-7.92-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b19deb6d714c11d77f7ec5c3fe517346570099811885f56bb1ae93385886744b", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-5.el9.s390x", + sha256 = "7389016c95bbc4adb59b9925a35924c21e821c63bfdf34d2bbe02867346bb4b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/nmap-ncat-7.92-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7389016c95bbc4adb59b9925a35924c21e821c63bfdf34d2bbe02867346bb4b9", + ], +) + +rpm( + name = "nmap-ncat-3__7.92-5.el9.x86_64", + sha256 = "988deb2cb2041d9c7feec5bf829985dc15af58ef167006fa91e23a80f2103d96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/nmap-ncat-7.92-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/988deb2cb2041d9c7feec5bf829985dc15af58ef167006fa91e23a80f2103d96", + ], +) + +rpm( + name = "nmap-ncat-4__7.92-5.el10.aarch64", + sha256 = "7975edb3d4e9c583a41707bdd6f4d21dee67e571f7b7338352d75cf09130612e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/nmap-ncat-7.92-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7975edb3d4e9c583a41707bdd6f4d21dee67e571f7b7338352d75cf09130612e", + ], +) + +rpm( + name = "nmap-ncat-4__7.92-5.el10.s390x", + sha256 = "a0dd5969f49cf59a2448a75498a25007ea270fa25eed6b9d70c1148b88e37a96", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/nmap-ncat-7.92-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a0dd5969f49cf59a2448a75498a25007ea270fa25eed6b9d70c1148b88e37a96", + ], +) + +rpm( + name = "nmap-ncat-4__7.92-5.el10.x86_64", + sha256 = "30fcce0936e6fad42a6cca2d6999758fd637ad6d7057bd5c155eb8f49af53157", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/nmap-ncat-7.92-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30fcce0936e6fad42a6cca2d6999758fd637ad6d7057bd5c155eb8f49af53157", + ], +) + +rpm( + name = "npth-0__1.6-21.el10.s390x", + sha256 = "47f1f79ad844c4d845591871bc752bf8677fb257fa2cc4d58778fab215965bf1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/npth-1.6-21.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/47f1f79ad844c4d845591871bc752bf8677fb257fa2cc4d58778fab215965bf1", + ], +) + +rpm( + name = "npth-0__1.6-21.el10.x86_64", + sha256 = "9d5de697dd346d3eeac85008ab93fbfce90ea49342418402959eda90829578d0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/npth-1.6-21.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9d5de697dd346d3eeac85008ab93fbfce90ea49342418402959eda90829578d0", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.s390x", + sha256 = "f66f12068208409067e6c342e6c0f4f0646fe527dbb7d5bc3d41adb4d9802b52", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/npth-1.6-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f66f12068208409067e6c342e6c0f4f0646fe527dbb7d5bc3d41adb4d9802b52", + ], +) + +rpm( + name = "npth-0__1.6-8.el9.x86_64", + sha256 = "a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/npth-1.6-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7da4ef003bc60045bc60dae299b703e7f1db326f25208fb922ce1b79e2882da", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-1.el9.x86_64", + sha256 = "3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3abe41a330364e2e1bf905458de8c0314f0ac3082e6cc475149bd9b2ffdeb428", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el10.aarch64", + sha256 = "81016ab56c83cb8c221216794571ae58bb914e21dd3794c242f7ce8a8d8fbf8f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/numactl-libs-2.0.19-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/81016ab56c83cb8c221216794571ae58bb914e21dd3794c242f7ce8a8d8fbf8f", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el10.s390x", + sha256 = "184bd0085cc03d74e317a2aad472fa7638fffc35e4e1a314700e31b00398a6cc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/numactl-libs-2.0.19-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/184bd0085cc03d74e317a2aad472fa7638fffc35e4e1a314700e31b00398a6cc", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el10.x86_64", + sha256 = "263ee2cba1d57996778f70045fbc4657067f73edafd6c6b04f4599c3eb12fbfd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/263ee2cba1d57996778f70045fbc4657067f73edafd6c6b04f4599c3eb12fbfd", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.aarch64", + sha256 = "ff63cef9b42cbc82149a6bc6970c20c9e781016dbb3eadd03effa330cb3b2bdd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numactl-libs-2.0.19-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ff63cef9b42cbc82149a6bc6970c20c9e781016dbb3eadd03effa330cb3b2bdd", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.s390x", + sha256 = "43de4c5b609d2914a7fd27937b3baf15a988be1c891ee17e1395cae2232a06c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/numactl-libs-2.0.19-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/43de4c5b609d2914a7fd27937b3baf15a988be1c891ee17e1395cae2232a06c4", + ], +) + +rpm( + name = "numactl-libs-0__2.0.19-3.el9.x86_64", + sha256 = "ad52833edf28b5bf2053bd96d96b211de4c6b11376978379dae211460c4596d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numactl-libs-2.0.19-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ad52833edf28b5bf2053bd96d96b211de4c6b11376978379dae211460c4596d8", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.aarch64", + sha256 = "c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/numad-0.5-37.20150602git.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7f9e7e2d37c5d8ae263e8789142ba6956337a12a139a9661efff6ebfd3758c4", + ], +) + +rpm( + name = "numad-0__0.5-37.20150602git.el9.x86_64", + sha256 = "82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/numad-0.5-37.20150602git.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/82e83efcc0528646c0cfdaa846e45e89b6e347b78664b5528bbfdf919d57bd46", + ], +) + +rpm( + name = "numad-0__0.5-50.20251104git.el10.aarch64", + sha256 = "942f7db59b047cc56e6c53c5bb9a2a84ba4715088021e85526e973d9485bc8fa", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/numad-0.5-50.20251104git.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/942f7db59b047cc56e6c53c5bb9a2a84ba4715088021e85526e973d9485bc8fa", + ], +) + +rpm( + name = "numad-0__0.5-50.20251104git.el10.x86_64", + sha256 = "91def9a46ee7b6ee35a11276987c7eace5b18e97d6d967fe09139e0a01cb0731", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/numad-0.5-50.20251104git.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/91def9a46ee7b6ee35a11276987c7eace5b18e97d6d967fe09139e0a01cb0731", + ], +) + +rpm( + name = "openldap-0__2.6.10-1.el10.s390x", + sha256 = "8ccbbb3c19df87e02214012a0fb7eed53455db552b6548e482734f65039b6057", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/openldap-2.6.10-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/8ccbbb3c19df87e02214012a0fb7eed53455db552b6548e482734f65039b6057", + ], +) + +rpm( + name = "openldap-0__2.6.10-1.el10.x86_64", + sha256 = "c9b225c90d849b679e4ecdc4108703b54749bed23af829d3238f1551dd88fd27", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/openldap-2.6.10-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c9b225c90d849b679e4ecdc4108703b54749bed23af829d3238f1551dd88fd27", + ], +) + +rpm( + name = "openldap-0__2.6.8-4.el9.s390x", + sha256 = "67a9f53b14250f7934faebcc7961b2f9c06875b9c8fb16d4ac19c0e110d0e446", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openldap-2.6.8-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/67a9f53b14250f7934faebcc7961b2f9c06875b9c8fb16d4ac19c0e110d0e446", + ], +) + +rpm( + name = "openldap-0__2.6.8-4.el9.x86_64", + sha256 = "606794339fa964e9c68a94fe756566e0651c52da47ebe7df5fb66f700c6a0421", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openldap-2.6.8-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/606794339fa964e9c68a94fe756566e0651c52da47ebe7df5fb66f700c6a0421", + ], +) + +rpm( + name = "openssl-1__3.2.2-6.el9.x86_64", + sha256 = "3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a", + urls = ["https://storage.googleapis.com/builddeps/3018c5d2901213b6bdbe62301ef894008ec52b1122e270190eabb62ad282a46a"], +) + +rpm( + name = "openssl-1__3.5.5-1.el9.aarch64", + sha256 = "9614ff011d01a53615fc9a05ab29de503af3576ea8aaadfb6f7405a1c60b5755", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-3.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9614ff011d01a53615fc9a05ab29de503af3576ea8aaadfb6f7405a1c60b5755", + ], +) + +rpm( + name = "openssl-1__3.5.5-1.el9.s390x", + sha256 = "37de2ce39ecacbb0105a0aaaf99d186d05814f34df79663ec73ae5e33a523dfc", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-3.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/37de2ce39ecacbb0105a0aaaf99d186d05814f34df79663ec73ae5e33a523dfc", + ], +) + +rpm( + name = "openssl-1__3.5.5-1.el9.x86_64", + sha256 = "a847741effa30135a514d585303dd53e5d45f7be672accdb602e48162344e396", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-3.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a847741effa30135a514d585303dd53e5d45f7be672accdb602e48162344e396", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el10.aarch64", + sha256 = "8508a817efb181727d4cbed2ef81ddbde1f1da487709f0a6aaaea4ac265acea2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/openssl-fips-provider-3.5.5-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8508a817efb181727d4cbed2ef81ddbde1f1da487709f0a6aaaea4ac265acea2", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el10.s390x", + sha256 = "d9844964d1c85617b43d0a9a9cc92a98d50008925abfc6766edecda075085047", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/openssl-fips-provider-3.5.5-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/d9844964d1c85617b43d0a9a9cc92a98d50008925abfc6766edecda075085047", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el10.x86_64", + sha256 = "8cd0358b2f324315431e075aa4f96aba00f2be2fbea15929808d77b38c450b7b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/openssl-fips-provider-3.5.5-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8cd0358b2f324315431e075aa4f96aba00f2be2fbea15929808d77b38c450b7b", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el9.aarch64", + sha256 = "e59ea0883ea57fe2b6c5d2ea52cafa8183a95fc83e0be7bd72ab4e4517f41588", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-fips-provider-3.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e59ea0883ea57fe2b6c5d2ea52cafa8183a95fc83e0be7bd72ab4e4517f41588", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el9.s390x", + sha256 = "1845bf99e7825235a6a0d5ae2990bd5bda0a9e889aa6a735c1e8f459b504195e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-fips-provider-3.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1845bf99e7825235a6a0d5ae2990bd5bda0a9e889aa6a735c1e8f459b504195e", + ], +) + +rpm( + name = "openssl-fips-provider-1__3.5.5-1.el9.x86_64", + sha256 = "5aec51f1d460ff8da23044b8462e3569ea5e87e531d0ecaf67639b039fbbb896", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-fips-provider-3.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5aec51f1d460ff8da23044b8462e3569ea5e87e531d0ecaf67639b039fbbb896", + ], +) + +rpm( + name = "openssl-libs-1__3.2.2-6.el9.x86_64", + sha256 = "4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738", + urls = ["https://storage.googleapis.com/builddeps/4a0a29a309f72ba65a2d0b2d4b51637253520f6a0a1bd4640f0a09f7d7555738"], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el10.aarch64", + sha256 = "b57aea518dd32913ada2d53def2aa2b67ddd97f9826c95392a9ff8942c0bc992", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/openssl-libs-3.5.5-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b57aea518dd32913ada2d53def2aa2b67ddd97f9826c95392a9ff8942c0bc992", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el10.s390x", + sha256 = "63346962f9adf622da34b1727f33e5abddbedd9ad47dfea2526f2f28ca0dcd47", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/openssl-libs-3.5.5-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/63346962f9adf622da34b1727f33e5abddbedd9ad47dfea2526f2f28ca0dcd47", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el10.x86_64", + sha256 = "f398762ae421f1aa605af7e3e8770da8b3fa6fbb0afcf74a2d82945dc4670c39", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/openssl-libs-3.5.5-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f398762ae421f1aa605af7e3e8770da8b3fa6fbb0afcf74a2d82945dc4670c39", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el9.aarch64", + sha256 = "2814ed29cf7d61164f9a0fdfa02ecf6f3d98b1341146effca29441ec2b0341bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/openssl-libs-3.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2814ed29cf7d61164f9a0fdfa02ecf6f3d98b1341146effca29441ec2b0341bd", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el9.s390x", + sha256 = "fdf91f4b3f4635964b6a04f76d18fdfdc7de47830a591171e95167047441df15", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/openssl-libs-3.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/fdf91f4b3f4635964b6a04f76d18fdfdc7de47830a591171e95167047441df15", + ], +) + +rpm( + name = "openssl-libs-1__3.5.5-1.el9.x86_64", + sha256 = "93be0a9dbce02f827ffe1f1dd538fd5f61b189f63d0d0b3b98b662d524321b30", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/openssl-libs-3.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/93be0a9dbce02f827ffe1f1dd538fd5f61b189f63d0d0b3b98b662d524321b30", + ], +) + +rpm( + name = "osinfo-db-0__20240701-3.el9.x86_64", + sha256 = "cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20240701-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/cb5ee4fa514502a1e731749cf6d77475f274e4bec88449bfc50daa8e32b9a0ca", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el10.s390x", + sha256 = "44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/osinfo-db-20250606-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el10.x86_64", + sha256 = "44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/osinfo-db-20250606-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/44f126f2f67319b5c84345c63150dd5d87ed468cd63b18b4320593505b90b4d1", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el9.s390x", + sha256 = "78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/osinfo-db-20250606-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + ], +) + +rpm( + name = "osinfo-db-0__20250606-1.el9.x86_64", + sha256 = "78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-20250606-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/78097993d3459be72266cc576d14f7e51c6df7d7deeb14453b3697216344fe44", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.s390x", + sha256 = "2df9abce1b172c03c768b4f7ea7befe0c2e4d6647447d5b729caa061fdbf3803", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/osinfo-db-tools-1.10.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2df9abce1b172c03c768b4f7ea7befe0c2e4d6647447d5b729caa061fdbf3803", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.10.0-1.el9.x86_64", + sha256 = "2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/osinfo-db-tools-1.10.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2681f49bf19314e44e7189852d6fbfc22fc3ed428240df9f3936a5200c14ddd0", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.11.0-8.el10.s390x", + sha256 = "fed0a8870fb28338db4b8b2bb6f57d44fcbfcaafe88187d787e3bf6cd5f911f0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/osinfo-db-tools-1.11.0-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/fed0a8870fb28338db4b8b2bb6f57d44fcbfcaafe88187d787e3bf6cd5f911f0", + ], +) + +rpm( + name = "osinfo-db-tools-0__1.11.0-8.el10.x86_64", + sha256 = "31d38586cdd723e3de145e9b03dd1f4eaa2e63681323a7d0bcce3a47cc2e1d62", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/osinfo-db-tools-1.11.0-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/31d38586cdd723e3de145e9b03dd1f4eaa2e63681323a7d0bcce3a47cc2e1d62", + ], +) + +rpm( + name = "p11-kit-0__0.25.3-3.el9.x86_64", + sha256 = "2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d02f32cdb62fac32563c70fad44c7252f0173552ccabc58d2b5161207c291a3", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el10.aarch64", + sha256 = "93518eadefcbe6fb07cfa3d5d4cddd0820915ab44b9f4ce753af503558653d71", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/p11-kit-0.26.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el10.s390x", + sha256 = "2252c8486d84092c6dca6488d39d52c31c348441d311474943a37c3192cc62fb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/p11-kit-0.26.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el10.x86_64", + sha256 = "5787928d07bc6241e895500dee79ad8aa85de7ff997402c9c08e11dc9732240a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/p11-kit-0.26.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el9.aarch64", + sha256 = "078862b28f0e95c1464b8c8b85fd23a05351823acd3b60185af21a6ab5104271", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-0.26.2-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/078862b28f0e95c1464b8c8b85fd23a05351823acd3b60185af21a6ab5104271", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el9.s390x", + sha256 = "6743449ac49200da5f9ba3fcc8ef8f95880fbf8364ca67ccca5117dd9a126a0d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-0.26.2-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6743449ac49200da5f9ba3fcc8ef8f95880fbf8364ca67ccca5117dd9a126a0d", + ], +) + +rpm( + name = "p11-kit-0__0.26.2-1.el9.x86_64", + sha256 = "4e2f216f57ba90659679cb6cedcae7b38fb335a9d301c890ea7744b769ac15d8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-0.26.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4e2f216f57ba90659679cb6cedcae7b38fb335a9d301c890ea7744b769ac15d8", + ], +) + +rpm( + name = "p11-kit-trust-0__0.25.3-3.el9.x86_64", + sha256 = "f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.25.3-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f3b18cc69d79899e17d7c7514a4e350bdd6166a37e979fee5dcfbdc7921a02fa", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el10.aarch64", + sha256 = "87acee4c95360a0858299917ce916696d037cfea50e5d2326c7c0e002ac04470", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/p11-kit-trust-0.26.2-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el10.s390x", + sha256 = "04dfaf06b01ee63eac7a2cf52bff14b94379a34cca6ec548a9cd7ecefc124c71", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/p11-kit-trust-0.26.2-1.el10.s390x.rpm", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el10.x86_64", + sha256 = "21f8ff9b21243fbe951260c4dfd47058074c818be68bb274db3eb20378433f2a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.26.2-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el9.aarch64", + sha256 = "3db76997186c82a6c7b2ecf514b8098bfecf8db5358ebafdbed02b51b67465f6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/p11-kit-trust-0.26.2-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3db76997186c82a6c7b2ecf514b8098bfecf8db5358ebafdbed02b51b67465f6", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el9.s390x", + sha256 = "30854a67c6e2bcc1584210f0991704c64323d9a367ea1a98429e9a6a2d25b9b0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/p11-kit-trust-0.26.2-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/30854a67c6e2bcc1584210f0991704c64323d9a367ea1a98429e9a6a2d25b9b0", + ], +) + +rpm( + name = "p11-kit-trust-0__0.26.2-1.el9.x86_64", + sha256 = "d8dcb0fb0302e74bc2276e78d1bdcc2a512bcfaee86fe8b1d01e491bea6b250a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/p11-kit-trust-0.26.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8dcb0fb0302e74bc2276e78d1bdcc2a512bcfaee86fe8b1d01e491bea6b250a", + ], +) + +rpm( + name = "pam-0__1.5.1-23.el9.x86_64", + sha256 = "fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-23.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fba392096cbf59204549bca23d4060cdf8aaaa9ce35ade8194c111f519033e10", + ], +) + +rpm( + name = "pam-0__1.5.1-28.el9.aarch64", + sha256 = "598477ca76dadefb1c80d4322c2b074aac54d9ecf3d717353641b939147d8caa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pam-1.5.1-28.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/598477ca76dadefb1c80d4322c2b074aac54d9ecf3d717353641b939147d8caa", + ], +) + +rpm( + name = "pam-0__1.5.1-28.el9.s390x", + sha256 = "f823ac185f1a0c966e608301f09e22a645e37c447f4dd49b6b6930ff67fd8156", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pam-1.5.1-28.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f823ac185f1a0c966e608301f09e22a645e37c447f4dd49b6b6930ff67fd8156", + ], +) + +rpm( + name = "pam-0__1.5.1-28.el9.x86_64", + sha256 = "3c92fd1347d78fc3621cd5ae62f7a159588d86a8a0c22ba4a754dcd51926b6b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pam-1.5.1-28.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3c92fd1347d78fc3621cd5ae62f7a159588d86a8a0c22ba4a754dcd51926b6b7", + ], +) + +rpm( + name = "pam-0__1.6.1-9.el10.aarch64", + sha256 = "48762bdea0227ff022ec0740b1241147e76d40898a041628e61d20fe8aea344c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pam-1.6.1-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/48762bdea0227ff022ec0740b1241147e76d40898a041628e61d20fe8aea344c", + ], +) + +rpm( + name = "pam-0__1.6.1-9.el10.s390x", + sha256 = "565a9b5f35ff92d0f91330974e0da3e7322bb87b398a081cef94258e1db17c76", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pam-1.6.1-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/565a9b5f35ff92d0f91330974e0da3e7322bb87b398a081cef94258e1db17c76", + ], +) + +rpm( + name = "pam-0__1.6.1-9.el10.x86_64", + sha256 = "0709423d4705d5f06c4cd6005d205a1a26fb3c4a9d08bbe197fa103924506157", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pam-1.6.1-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0709423d4705d5f06c4cd6005d205a1a26fb3c4a9d08bbe197fa103924506157", + ], +) + +rpm( + name = "pam-libs-0__1.6.1-9.el10.aarch64", + sha256 = "6d055fc43ae94b745214a675bc077261395a9c9475a66138912b77314fb064fd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pam-libs-1.6.1-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6d055fc43ae94b745214a675bc077261395a9c9475a66138912b77314fb064fd", + ], +) + +rpm( + name = "pam-libs-0__1.6.1-9.el10.s390x", + sha256 = "8927066863a1128bb08750c8e01a26f57b7393454a604436233b1779d55ae655", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pam-libs-1.6.1-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/8927066863a1128bb08750c8e01a26f57b7393454a604436233b1779d55ae655", + ], +) + +rpm( + name = "pam-libs-0__1.6.1-9.el10.x86_64", + sha256 = "4f5115114c1bf4882ce2ed5e7629f07a8d0b6e6a93412e9b3a00ab21d8f49973", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pam-libs-1.6.1-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4f5115114c1bf4882ce2ed5e7629f07a8d0b6e6a93412e9b3a00ab21d8f49973", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.s390x", + sha256 = "e328d103fa4e64fa6558998d79b42bb37882d068b9251fc3301b1001b7f01936", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/parted-3.5-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e328d103fa4e64fa6558998d79b42bb37882d068b9251fc3301b1001b7f01936", + ], +) + +rpm( + name = "parted-0__3.5-3.el9.x86_64", + sha256 = "77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/parted-3.5-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77255654a5fa5d0b45a7bdaee26e50e9935a657eaa49949ae9313e2500136213", + ], +) + +rpm( + name = "parted-0__3.6-7.el10.s390x", + sha256 = "bba170cbf71b85ebc299c466f4a15c14ce80fae6a138ec87014b772bab377f02", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/parted-3.6-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/bba170cbf71b85ebc299c466f4a15c14ce80fae6a138ec87014b772bab377f02", + ], +) + +rpm( + name = "parted-0__3.6-7.el10.x86_64", + sha256 = "bb339dd10bc7951376243b5a9ae11e18f3ecd235db576739da006a147c6bf412", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/parted-3.6-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bb339dd10bc7951376243b5a9ae11e18f3ecd235db576739da006a147c6bf412", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64", + sha256 = "b25fd3d6395c66279b57f2c6cafa51d487b40cf7b3caa16915c7e702c5495679", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b25fd3d6395c66279b57f2c6cafa51d487b40cf7b3caa16915c7e702c5495679", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.s390x", + sha256 = "ee4e4896389277f09db8e3a112e83e83be80d1401b43a9993137c12c004bdafc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/ee4e4896389277f09db8e3a112e83e83be80d1401b43a9993137c12c004bdafc", + ], +) + +rpm( + name = "passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64", + sha256 = "27818a1904c1d1e39890abe239ea156a29c3e548e83941d7696e0cd3113abfdd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/passt-0%5E20250512.g8ec1341-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/27818a1904c1d1e39890abe239ea156a29c3e548e83941d7696e0cd3113abfdd", + ], +) + +rpm( + name = "passt-0__0__caret__20251210.gd04c480-3.el10.aarch64", + sha256 = "61ea2a17d69694b1f6681f38b7499d6cb8cc31890305f42d9fd88f44ff9e55e9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/passt-0%5E20251210.gd04c480-3.el10.aarch64.rpm", + ], +) + +rpm( + name = "passt-0__0__caret__20251210.gd04c480-3.el10.s390x", + sha256 = "966273634d1eca6cd375f82c5688b755be02b969f88152b0fa56d3e1f60be252", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/passt-0%5E20251210.gd04c480-3.el10.s390x.rpm", + ], +) + +rpm( + name = "passt-0__0__caret__20251210.gd04c480-3.el10.x86_64", + sha256 = "8965cbfee22848c8f0a43c285993729a569b769af7997394c7dbf6ba37ced1b1", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/passt-0%5E20251210.gd04c480-3.el10.x86_64.rpm", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.aarch64", + sha256 = "dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre-8.44-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/dc5d71786a68cfa15f49aecd12e90de7af7489a2d0a4d102be38a9faf0c99ae8", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.s390x", + sha256 = "e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre-8.44-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e42ebd2b71ed4d5ee34a5fbba116396c22ed4deb7d7ab6189f048a3f603e5dbb", + ], +) + +rpm( + name = "pcre-0__8.44-4.el9.x86_64", + sha256 = "7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre-8.44-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7d6be1d41cb4d0b159a764bfc7c8efecc0353224b46e5286cbbea7092b700690", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.aarch64", + sha256 = "c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-10.40-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c13e323c383bd5bbe3415701aa21a56b3fefc32d96e081e91c012ef692c78599", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.s390x", + sha256 = "f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-10.40-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f7c2df461b8fe6a9617a1c1089fc88576e4df16f6ff9aea83b05413d2e15b4d5", + ], +) + +rpm( + name = "pcre2-0__10.40-6.el9.x86_64", + sha256 = "bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-10.40-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bc1012f5417aab8393836d78ac8c5472b1a2d84a2f9fa2b00fff5f8ad3a5ec26", + ], +) + +rpm( + name = "pcre2-0__10.44-1.el10.3.aarch64", + sha256 = "23f2a34aa9bc9c8c6662e93d184e07d7e01d45d0fb1b554fd3ed92c03ba2ae3c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pcre2-10.44-1.el10.3.aarch64.rpm", + "https://storage.googleapis.com/builddeps/23f2a34aa9bc9c8c6662e93d184e07d7e01d45d0fb1b554fd3ed92c03ba2ae3c", + ], +) + +rpm( + name = "pcre2-0__10.44-1.el10.3.s390x", + sha256 = "7577ec5ef81b0aa96e340c6d292c4b828e957508962ec1ed68c1f048dff3998e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pcre2-10.44-1.el10.3.s390x.rpm", + "https://storage.googleapis.com/builddeps/7577ec5ef81b0aa96e340c6d292c4b828e957508962ec1ed68c1f048dff3998e", + ], +) + +rpm( + name = "pcre2-0__10.44-1.el10.3.x86_64", + sha256 = "773781e3aa9994fa8d6105ddc0b3d00fdd735bd589a5d9fe40fe96be6a7d89a7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pcre2-10.44-1.el10.3.x86_64.rpm", + "https://storage.googleapis.com/builddeps/773781e3aa9994fa8d6105ddc0b3d00fdd735bd589a5d9fe40fe96be6a7d89a7", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.aarch64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.s390x", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.40-6.el9.x86_64", + sha256 = "be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pcre2-syntax-10.40-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/be36a84f6e311a59190664d61a466471391ab01fb77bd1d2348e9a76414aded4", + ], +) + +rpm( + name = "pcre2-syntax-0__10.44-1.el10.3.aarch64", + sha256 = "71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pcre2-syntax-10.44-1.el10.3.noarch.rpm", + "https://storage.googleapis.com/builddeps/71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + ], +) + +rpm( + name = "pcre2-syntax-0__10.44-1.el10.3.s390x", + sha256 = "71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pcre2-syntax-10.44-1.el10.3.noarch.rpm", + "https://storage.googleapis.com/builddeps/71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + ], +) + +rpm( + name = "pcre2-syntax-0__10.44-1.el10.3.x86_64", + sha256 = "71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pcre2-syntax-10.44-1.el10.3.noarch.rpm", + "https://storage.googleapis.com/builddeps/71de87112a846df439b0b3381b35fbba8c6e72109c6a4795c1de96e48bbc5d40", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.aarch64", + sha256 = "949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/pixman-0.40.0-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/949aaa9855119b3372bb4be01b7b2ab87ba9b6c949cad37f411f71553968248f", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.s390x", + sha256 = "8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/pixman-0.40.0-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8ee2116bc324edfac404192338cfd469373ffba64b1a5c2bfb199d551e922563", + ], +) + +rpm( + name = "pixman-0__0.40.0-6.el9.x86_64", + sha256 = "e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-0.40.0-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e5f710c9d8ab38f2286070877560e99a28d3067ac117231e68c9e8cfb5c617de", + ], +) + +rpm( + name = "pixman-0__0.43.4-2.el10.aarch64", + sha256 = "dc2c0f98c210e8209690b1d2a4fffa348b6ad22062461f4b3ebc7d7f6dd0246e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/pixman-0.43.4-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/dc2c0f98c210e8209690b1d2a4fffa348b6ad22062461f4b3ebc7d7f6dd0246e", + ], +) + +rpm( + name = "pixman-0__0.43.4-2.el10.s390x", + sha256 = "269fcda361ff485d379f8a773e47752758b8c58e288f78196f169149570af637", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/pixman-0.43.4-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/269fcda361ff485d379f8a773e47752758b8c58e288f78196f169149570af637", + ], +) + +rpm( + name = "pixman-0__0.43.4-2.el10.x86_64", + sha256 = "c91d0077a917e843a009c69b63793de4b8d2f9a81414f63e319ac31bbf6a08cb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/pixman-0.43.4-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c91d0077a917e843a009c69b63793de4b8d2f9a81414f63e319ac31bbf6a08cb", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.aarch64", + sha256 = "94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/94f174c9829d44f345bb8a734147f379ba95fb47d04befdb20a17e8b158b3710", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.s390x", + sha256 = "18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18b95c0969e2a47a4db32976707227f1d2204f498e904a69c15ae642229f2684", + ], +) + +rpm( + name = "pkgconf-0__1.7.3-10.el9.x86_64", + sha256 = "2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ff8b131570687e4eca9877feaa9058ef7c0772cff507c019f6c26aff126d065", + ], +) + +rpm( + name = "pkgconf-0__2.1.0-3.el10.aarch64", + sha256 = "5bd76130128a85e6275c6e56f7e519532425cd2a5d2db7a795a4d1d15f7d0d57", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pkgconf-2.1.0-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5bd76130128a85e6275c6e56f7e519532425cd2a5d2db7a795a4d1d15f7d0d57", + ], +) + +rpm( + name = "pkgconf-0__2.1.0-3.el10.s390x", + sha256 = "010973bdd551e8489eb97446701fdf3100b8dd0b1ea7efd650412d8869d8181a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pkgconf-2.1.0-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/010973bdd551e8489eb97446701fdf3100b8dd0b1ea7efd650412d8869d8181a", + ], +) + +rpm( + name = "pkgconf-0__2.1.0-3.el10.x86_64", + sha256 = "ced8f494b664667d52245ff94ce6c0b2cad135586a36a9ff7f81281d1533f178", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pkgconf-2.1.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ced8f494b664667d52245ff94ce6c0b2cad135586a36a9ff7f81281d1533f178", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.aarch64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.s390x", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__1.7.3-10.el9.x86_64", + sha256 = "de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-m4-1.7.3-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/de4946454f110a9b12ab50c9c3dfaa68633b4ae3cb4e5278b23d491eb3edc27a", + ], +) + +rpm( + name = "pkgconf-m4-0__2.1.0-3.el10.aarch64", + sha256 = "4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pkgconf-m4-2.1.0-3.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + ], +) + +rpm( + name = "pkgconf-m4-0__2.1.0-3.el10.s390x", + sha256 = "4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pkgconf-m4-2.1.0-3.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + ], +) + +rpm( + name = "pkgconf-m4-0__2.1.0-3.el10.x86_64", + sha256 = "4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pkgconf-m4-2.1.0-3.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4de2147846658c2849aa28f756e5e906a3012be53e656b4a39ae77076286e828", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.aarch64", + sha256 = "d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d36ff5361c4b31273b15ff34f0fec5ae5316d6555270b3d051d97c85c12defac", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.s390x", + sha256 = "d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2683075e4d5f2222ae8f9e5c36f1bd5637c07bb9bc9c5fb3aa48914a901f5fd", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__1.7.3-10.el9.x86_64", + sha256 = "e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/pkgconf-pkg-config-1.7.3-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e308e84f06756bf3c14bc426fb2519008ad8423925c4662bb379ea87aced19d9", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__2.1.0-3.el10.aarch64", + sha256 = "3d646b74ccc730b097ceba50c5a054a6017b61e354b0e8731c66b5c266d55e40", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/pkgconf-pkg-config-2.1.0-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3d646b74ccc730b097ceba50c5a054a6017b61e354b0e8731c66b5c266d55e40", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__2.1.0-3.el10.s390x", + sha256 = "f895f22efbaa5a4f978600b3df480eabab7bb2eea7f0f8e90897ab4d76ae2102", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/pkgconf-pkg-config-2.1.0-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/f895f22efbaa5a4f978600b3df480eabab7bb2eea7f0f8e90897ab4d76ae2102", + ], +) + +rpm( + name = "pkgconf-pkg-config-0__2.1.0-3.el10.x86_64", + sha256 = "4f5231ffccc59b5f1c42d85cc0dafea9b6901107660931071cf1e65f99af1e0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/pkgconf-pkg-config-2.1.0-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4f5231ffccc59b5f1c42d85cc0dafea9b6901107660931071cf1e65f99af1e0b", + ], +) + +rpm( + name = "policycoreutils-0__3.10-1.el10.aarch64", + sha256 = "93f6ad5c7d6a7c8df55de7d0ddf385ae7a3933cca9a56a5345dbe06abba24f7e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/policycoreutils-3.10-1.el10.aarch64.rpm", + ], +) + +rpm( + name = "policycoreutils-0__3.10-1.el10.s390x", + sha256 = "b33b595422bdb42604dbfcd53d4ecc449b3d8fa954425162bd72034c5af688df", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/policycoreutils-3.10-1.el10.s390x.rpm", + ], +) + +rpm( + name = "policycoreutils-0__3.10-1.el10.x86_64", + sha256 = "1e5911b958557d276758767a734baf38bcf60c749671bcb11bf89d656b5389e5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.10-1.el10.x86_64.rpm", + ], +) + +rpm( + name = "policycoreutils-0__3.6-2.1.el9.x86_64", + sha256 = "a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-2.1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a87874363af6432b1c96b40f8b79b90616df22bff3bd4f9aa39da24f5bddd3e9", + ], +) + +rpm( + name = "policycoreutils-0__3.6-5.el9.aarch64", + sha256 = "98f6b034b67a76f18a7e44a8b1b22fd5fd293d326c833418cbb2313abffc57d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/policycoreutils-3.6-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/98f6b034b67a76f18a7e44a8b1b22fd5fd293d326c833418cbb2313abffc57d7", + ], +) + +rpm( + name = "policycoreutils-0__3.6-5.el9.s390x", + sha256 = "659c4c2fe612c6a3e9af23a90993d2772e771f5f83f3cf195e8117a06962c6a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/policycoreutils-3.6-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/659c4c2fe612c6a3e9af23a90993d2772e771f5f83f3cf195e8117a06962c6a1", + ], +) + +rpm( + name = "policycoreutils-0__3.6-5.el9.x86_64", + sha256 = "436dd0b9df40d54a5ff97051738e67bf080d2059d9e767ceac477f9155ab4ca9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/policycoreutils-3.6-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/436dd0b9df40d54a5ff97051738e67bf080d2059d9e767ceac477f9155ab4ca9", + ], +) + +rpm( + name = "polkit-0__0.117-13.el9.x86_64", + sha256 = "81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/81090043c437cb6e6a73b4f72a6d9d5980d99fbb8a176ca36647a8d5f1cd4db4", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.aarch64", + sha256 = "9b756ae0148672fd428182ecbfae0e6d4fe249ad41cddb5f99ef2868b1b07c27", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-0.117-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9b756ae0148672fd428182ecbfae0e6d4fe249ad41cddb5f99ef2868b1b07c27", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.s390x", + sha256 = "8d97919e210f66f10b8f4faad916eb21b9e33c3cdb088638bc6a1dd5efa75b9d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-0.117-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8d97919e210f66f10b8f4faad916eb21b9e33c3cdb088638bc6a1dd5efa75b9d", + ], +) + +rpm( + name = "polkit-0__0.117-14.el9.x86_64", + sha256 = "30f3a75427f33cd136ffbacbb01d4570a62a15b6da4ecb005a0e1da25f0ca57a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-0.117-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/30f3a75427f33cd136ffbacbb01d4570a62a15b6da4ecb005a0e1da25f0ca57a", + ], +) + +rpm( + name = "polkit-0__125-4.el10.aarch64", + sha256 = "c7e294ea2b01e7d3f52f3e88d9520f1c57ed7577a220fc1c25092f05c2c2be09", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/polkit-125-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c7e294ea2b01e7d3f52f3e88d9520f1c57ed7577a220fc1c25092f05c2c2be09", + ], +) + +rpm( + name = "polkit-0__125-4.el10.s390x", + sha256 = "746bed9c6883ac33d60f35f0233289dc8e73137cc2e2028a6308b805385fb1e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/polkit-125-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/746bed9c6883ac33d60f35f0233289dc8e73137cc2e2028a6308b805385fb1e2", + ], +) + +rpm( + name = "polkit-0__125-4.el10.x86_64", + sha256 = "e4965cc1a34a64e8b5cc6c8738de6c6c0cf2f08f2dced23f9d88427575c3a386", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/polkit-125-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e4965cc1a34a64e8b5cc6c8738de6c6c0cf2f08f2dced23f9d88427575c3a386", + ], +) + +rpm( + name = "polkit-libs-0__0.117-13.el9.x86_64", + sha256 = "127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/127d13c1e41ca8f5e82bb8d453351aa3c48376e00c4d659b5d0de414dcfd4fd4", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.aarch64", + sha256 = "a2021169f907a5cf2ac57193ff1d32d9df514db03a12aa5842ae7d358d66c20f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/polkit-libs-0.117-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a2021169f907a5cf2ac57193ff1d32d9df514db03a12aa5842ae7d358d66c20f", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.s390x", + sha256 = "475daa3f2f4890182b4aac23ca2fa0c071c536fbe5c7a1f17b5bf555d71eda26", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/polkit-libs-0.117-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/475daa3f2f4890182b4aac23ca2fa0c071c536fbe5c7a1f17b5bf555d71eda26", + ], +) + +rpm( + name = "polkit-libs-0__0.117-14.el9.x86_64", + sha256 = "b2acb122a1cbadef39c62cdbd34781aa094a07ee9fafc61f987dd43ea09f182f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/polkit-libs-0.117-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b2acb122a1cbadef39c62cdbd34781aa094a07ee9fafc61f987dd43ea09f182f", + ], +) + +rpm( + name = "polkit-libs-0__125-4.el10.aarch64", + sha256 = "0b7197e7b1c5c394aeb3254f5678c7ec80053566cb367fd6c2d79a11e9a22f37", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/polkit-libs-125-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/0b7197e7b1c5c394aeb3254f5678c7ec80053566cb367fd6c2d79a11e9a22f37", + ], +) + +rpm( + name = "polkit-libs-0__125-4.el10.s390x", + sha256 = "b8715d596f893869f60408286325995dbeeb570286fd397c3c611d86c30a7014", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/polkit-libs-125-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/b8715d596f893869f60408286325995dbeeb570286fd397c3c611d86c30a7014", + ], +) + +rpm( + name = "polkit-libs-0__125-4.el10.x86_64", + sha256 = "dea631790902108c8e2932c272cb24a5949c3c329009b96cf2f9c8fa5aaee29a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/polkit-libs-125-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dea631790902108c8e2932c272cb24a5949c3c329009b96cf2f9c8fa5aaee29a", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.aarch64", + sha256 = "032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/popt-1.18-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/032427adaa37d2a1c6d2f3cab42ccbdce2c6d9b3c1f3cd91c05a92c99198babb", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.s390x", + sha256 = "b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/popt-1.18-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/b2bc4dbd78a6c3b9458cbc022e80d860fb2c6022fa308604f553289b62cb9511", + ], +) + +rpm( + name = "popt-0__1.18-8.el9.x86_64", + sha256 = "d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/popt-1.18-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d864419035e99f8bb06f5d1c767608ed81f942cb128a98b590c1dbc4afbd54d4", + ], +) + +rpm( + name = "popt-0__1.19-8.el10.aarch64", + sha256 = "4c727d11de14d8bf1bc0df2be55c75cb0200a685c2737c740e636dedd3edbb0c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/popt-1.19-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4c727d11de14d8bf1bc0df2be55c75cb0200a685c2737c740e636dedd3edbb0c", + ], +) + +rpm( + name = "popt-0__1.19-8.el10.s390x", + sha256 = "3dca46c310266fc9cce48d39651984d726cf727e12f446b70db78cd6f96e3515", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/popt-1.19-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3dca46c310266fc9cce48d39651984d726cf727e12f446b70db78cd6f96e3515", + ], +) + +rpm( + name = "popt-0__1.19-8.el10.x86_64", + sha256 = "bd15d2816600655a5241bc3efe6e1ac386061ba6ff2d05e53c70683db8761e5f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/popt-1.19-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bd15d2816600655a5241bc3efe6e1ac386061ba6ff2d05e53c70683db8761e5f", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.aarch64", + sha256 = "a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/procps-ng-3.3.17-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a79af64966d8bf303d3bd14396df577826f082679f3acdfeaf1bb9a9048be6fb", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.s390x", + sha256 = "3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/procps-ng-3.3.17-14.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/3eaf08992132ad2a4b7c924593a8f3ab871967374a96734764941cb9aae7f191", + ], +) + +rpm( + name = "procps-ng-0__3.3.17-14.el9.x86_64", + sha256 = "e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/procps-ng-3.3.17-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e2ab525ae66c31122005fc8e6eb836d7eb3336280e8ccfff2ca98165a11a482b", + ], +) + +rpm( + name = "procps-ng-0__4.0.4-11.el10.aarch64", + sha256 = "26a96aa657f03c0c9ffc1ba1aa4179968dc8562dfc318b580f4302488cd90eeb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/procps-ng-4.0.4-11.el10.aarch64.rpm", + ], +) + +rpm( + name = "procps-ng-0__4.0.4-11.el10.s390x", + sha256 = "f1495ad3d30b26ac57ca426afc269273a2c8b8fcab3038f89562cbb01ac8a46d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/procps-ng-4.0.4-11.el10.s390x.rpm", + ], +) + +rpm( + name = "procps-ng-0__4.0.4-11.el10.x86_64", + sha256 = "254f0ca7dff78c95f5b6319293cca056b666f2412bc94efd5fa4d39acecbf98b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/procps-ng-4.0.4-11.el10.x86_64.rpm", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.aarch64", + sha256 = "7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/protobuf-c-1.3.3-13.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7293996e2cbb1fabb43c5c156fa37c22558a73125ebdfe036e2338ca18a319c8", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.s390x", + sha256 = "a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/protobuf-c-1.3.3-13.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a34d3241e8c90dc1122056fce571bc3042f08a4fc12a0b58b3303c1973c38488", + ], +) + +rpm( + name = "protobuf-c-0__1.3.3-13.el9.x86_64", + sha256 = "3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/protobuf-c-1.3.3-13.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a4af8395499f19ebebc1cd928cd01fb96e05173e3a5d03d8e981c04b0042409", + ], +) + +rpm( + name = "protobuf-c-0__1.5.0-6.el10.aarch64", + sha256 = "3e17d0b103c0444852bbb952e39a64bb18b36f797cf5d4fd1bea57d9bc2c4cbe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/protobuf-c-1.5.0-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3e17d0b103c0444852bbb952e39a64bb18b36f797cf5d4fd1bea57d9bc2c4cbe", + ], +) + +rpm( + name = "protobuf-c-0__1.5.0-6.el10.s390x", + sha256 = "70c17f3805e9ecb6eaef0c13ae83b889405c22bdf09eafc74d3f0ba26e0882c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/protobuf-c-1.5.0-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/70c17f3805e9ecb6eaef0c13ae83b889405c22bdf09eafc74d3f0ba26e0882c0", + ], +) + +rpm( + name = "protobuf-c-0__1.5.0-6.el10.x86_64", + sha256 = "a7e792e5ed4f89d5f48eb60453619a6e0ad5cd34469526952c1748f1a99ce3ba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/protobuf-c-1.5.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7e792e5ed4f89d5f48eb60453619a6e0ad5cd34469526952c1748f1a99ce3ba", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.aarch64", + sha256 = "4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/psmisc-23.4-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4ad245b41ebf13cbabbb2962fad8d4aa0db7c75eb2171a4235252ad48e81a680", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.s390x", + sha256 = "2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/psmisc-23.4-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2d538437d62a278205126b5c4808feae4fdf6cb873519b68f4cfa6657686579f", + ], +) + +rpm( + name = "psmisc-0__23.4-3.el9.x86_64", + sha256 = "e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/psmisc-23.4-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e02fc28d42912689b006fcc1e98bdb5b0eefba538eb024c4e00ec9adc348449d", + ], +) + +rpm( + name = "psmisc-0__23.6-8.el10.aarch64", + sha256 = "cca0153b72dfb9c9e2f9f8386514ff9591b6166e0746ff32d5cda0eeb9adbaba", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/psmisc-23.6-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cca0153b72dfb9c9e2f9f8386514ff9591b6166e0746ff32d5cda0eeb9adbaba", + ], +) + +rpm( + name = "psmisc-0__23.6-8.el10.s390x", + sha256 = "3c0f3724b4040c7a6c07f5405850ed172f906daa9a7904cd78c8e52c680d4611", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/psmisc-23.6-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/3c0f3724b4040c7a6c07f5405850ed172f906daa9a7904cd78c8e52c680d4611", + ], +) + +rpm( + name = "psmisc-0__23.6-8.el10.x86_64", + sha256 = "9fea410c82d95565a4cbb178da9557ec9cef3512d573efd4dd940c9f2c4219cf", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/psmisc-23.6-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9fea410c82d95565a4cbb178da9557ec9cef3512d573efd4dd940c9f2c4219cf", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.s390x", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20210518-3.el9.x86_64", + sha256 = "992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20210518-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/992c17312bf5f144ec17b3c9733ab180c6c3641323d2deaf7c13e6bd1971f7a6", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20240107-5.el10.s390x", + sha256 = "440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/publicsuffix-list-dafsa-20240107-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + ], +) + +rpm( + name = "publicsuffix-list-dafsa-0__20240107-5.el10.x86_64", + sha256 = "440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20240107-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/440cb6e03187dfd68f62abf1dd751ace84ec8e2179d7de45dde348cf2e7dba11", + ], +) + +rpm( + name = "python3-0__3.12.12-3.el10.aarch64", + sha256 = "21775dabf6661090390f8c62c21d436de108d0487e1cc2530c0523b869bd2b45", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-3.12.12-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/21775dabf6661090390f8c62c21d436de108d0487e1cc2530c0523b869bd2b45", + ], +) + +rpm( + name = "python3-0__3.12.12-3.el10.s390x", + sha256 = "a6bd9d3a578d948bb4deca00b9f0dbc9c6f3d44a318a97ebd469a8d89ca3d39e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-3.12.12-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a6bd9d3a578d948bb4deca00b9f0dbc9c6f3d44a318a97ebd469a8d89ca3d39e", + ], +) + +rpm( + name = "python3-0__3.12.12-3.el10.x86_64", + sha256 = "cd420c83445309ee7ded2740579742da574ab210ed2209d11472a34307fc1b5c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-3.12.12-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cd420c83445309ee7ded2740579742da574ab210ed2209d11472a34307fc1b5c", + ], +) + +rpm( + name = "python3-0__3.9.25-3.el9.aarch64", + sha256 = "6bcc49ccb04386015b21e0f9a97e4e74fddc3b2aaeb11a4de890662bea8116d0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-3.9.25-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6bcc49ccb04386015b21e0f9a97e4e74fddc3b2aaeb11a4de890662bea8116d0", + ], +) + +rpm( + name = "python3-0__3.9.25-3.el9.s390x", + sha256 = "8d256069560f02e70dab77d81fb1f8427adcdabc8f55ac1d64e9c8975b0eab6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-3.9.25-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8d256069560f02e70dab77d81fb1f8427adcdabc8f55ac1d64e9c8975b0eab6e", + ], +) + +rpm( + name = "python3-0__3.9.25-3.el9.x86_64", + sha256 = "80665300816d833df3f3ed808022c53dda3c3687901bfaf802780bc0b7899842", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-3.9.25-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/80665300816d833df3f3ed808022c53dda3c3687901bfaf802780bc0b7899842", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.aarch64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.s390x", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-1.el9.x86_64", + sha256 = "15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-configshell-1.1.30-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/15575ccf52609db52e8535ebdd52f64f2fc9f599a2b4f0ac79d2c3f49aa32cd1", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-9.el10.aarch64", + sha256 = "bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-configshell-1.1.30-9.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-9.el10.s390x", + sha256 = "bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-configshell-1.1.30-9.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + ], +) + +rpm( + name = "python3-configshell-1__1.1.30-9.el10.x86_64", + sha256 = "bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-configshell-1.1.30-9.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd3efd00e70a1cfcc68c0d973a5fb3fb34bd9863f30a1330070ba9b718acdf1b", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.aarch64", + sha256 = "ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-dbus-1.2.18-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ce454fa8f9a2d015face9e9ae64f6730f2ba104d0556c91b93fca2006f132bf9", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.s390x", + sha256 = "6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-dbus-1.2.18-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6285fd8cbd484311a0e9f6b4fef4c8b0892b468f3633e49b3c93061fb6a0b360", + ], +) + +rpm( + name = "python3-dbus-0__1.2.18-2.el9.x86_64", + sha256 = "8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-dbus-1.2.18-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8e42f3e54292bfc76ab52ee3f91f850fb0cca63c9a49692938381ca93460a686", + ], +) + +rpm( + name = "python3-dbus-0__1.3.2-8.el10.aarch64", + sha256 = "6508de73c7fb8966b0d05f631af1002cb5238237791b0bd1b085384b9d6e15fd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-dbus-1.3.2-8.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6508de73c7fb8966b0d05f631af1002cb5238237791b0bd1b085384b9d6e15fd", + ], +) + +rpm( + name = "python3-dbus-0__1.3.2-8.el10.s390x", + sha256 = "98bf40e2dadd95cc0640650673b54d2dc7ebfa48bbba64a7857aede9c42550a5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-dbus-1.3.2-8.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/98bf40e2dadd95cc0640650673b54d2dc7ebfa48bbba64a7857aede9c42550a5", + ], +) + +rpm( + name = "python3-dbus-0__1.3.2-8.el10.x86_64", + sha256 = "95455a0bc5c76704ba2e46f5dd68b8bd47027b83ae551d62f02b15415a78a164", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-dbus-1.3.2-8.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/95455a0bc5c76704ba2e46f5dd68b8bd47027b83ae551d62f02b15415a78a164", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.aarch64", + sha256 = "815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-3.40.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/815369710e8d7c6f7473380210283f9e6dfdc0c6cc553c4ea9cb709835937adb", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.s390x", + sha256 = "7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-3.40.1-6.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7a4cfa43d12f5afd3035e4c92395acae04b4e8c397f188dee4f6fa4c933db263", + ], +) + +rpm( + name = "python3-gobject-base-0__3.40.1-6.el9.x86_64", + sha256 = "bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-3.40.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/bb795c9ba439bd1a0329e3534001432c95c5c454ccc61029f68501006f539a51", + ], +) + +rpm( + name = "python3-gobject-base-0__3.46.0-7.el10.aarch64", + sha256 = "66267f4d40ef4d29b7084c60752688856a78949de1347292d4fe25be501e024b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-3.46.0-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/66267f4d40ef4d29b7084c60752688856a78949de1347292d4fe25be501e024b", + ], +) + +rpm( + name = "python3-gobject-base-0__3.46.0-7.el10.s390x", + sha256 = "19a92f5cebbd47d89e69c63172d504154790e0ef013967d872ceb7ab0bc4b3f3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-gobject-base-3.46.0-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/19a92f5cebbd47d89e69c63172d504154790e0ef013967d872ceb7ab0bc4b3f3", + ], +) + +rpm( + name = "python3-gobject-base-0__3.46.0-7.el10.x86_64", + sha256 = "dd8582c736f50481252e556960f885c63af2d6a64888027d9345e35ec9bc0e27", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-3.46.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dd8582c736f50481252e556960f885c63af2d6a64888027d9345e35ec9bc0e27", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.s390x", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64", + sha256 = "57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-noarch-3.40.1-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/57ae14f5296ed26cabd264a2b88a015b05f962b65c9633eb328da029a0372b01", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.46.0-7.el10.aarch64", + sha256 = "2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-gobject-base-noarch-3.46.0-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.46.0-7.el10.s390x", + sha256 = "2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-gobject-base-noarch-3.46.0-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + ], +) + +rpm( + name = "python3-gobject-base-noarch-0__3.46.0-7.el10.x86_64", + sha256 = "2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-gobject-base-noarch-3.46.0-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/2c6d337336442bb1286b43facf50f9d7dad1398f86b312c93a3268d18d230824", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.aarch64", + sha256 = "600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-kmod-0.9-32.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/600b42a5b139ea5f8b246561294581c09237d88ec9bbcce823f56213d7e2652f", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.s390x", + sha256 = "d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-kmod-0.9-32.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d26e61644fa735dc2e63b8793f9bc549d4476a07c77dc587457e86487e0363d4", + ], +) + +rpm( + name = "python3-kmod-0__0.9-32.el9.x86_64", + sha256 = "e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-kmod-0.9-32.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e0b0ae0d507496349b667e0281b4d72ac3f7b7fa65c633c56afa3f328855a2d9", + ], +) + +rpm( + name = "python3-kmod-0__0.9.2-6.el10.aarch64", + sha256 = "75e70ceef21104220cd13f4de2cd23669c5660c23a07d15e471b39fa61418e8e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-kmod-0.9.2-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/75e70ceef21104220cd13f4de2cd23669c5660c23a07d15e471b39fa61418e8e", + ], +) + +rpm( + name = "python3-kmod-0__0.9.2-6.el10.s390x", + sha256 = "cc4bf90e94d8a7ac36762f21899fc174fe734aae502af314933685c0a342e832", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-kmod-0.9.2-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/cc4bf90e94d8a7ac36762f21899fc174fe734aae502af314933685c0a342e832", + ], +) + +rpm( + name = "python3-kmod-0__0.9.2-6.el10.x86_64", + sha256 = "c9f50b595ee5a45bb14d571974662ed42c84bcb8660c3a78da891038847da651", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-kmod-0.9.2-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c9f50b595ee5a45bb14d571974662ed42c84bcb8660c3a78da891038847da651", + ], +) + +rpm( + name = "python3-libs-0__3.12.12-3.el10.aarch64", + sha256 = "9f56d7dd4675899a19162cce8b778a232afc8f4513b6c69c2e66dd6a4fe0bf5e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-libs-3.12.12-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/9f56d7dd4675899a19162cce8b778a232afc8f4513b6c69c2e66dd6a4fe0bf5e", + ], +) + +rpm( + name = "python3-libs-0__3.12.12-3.el10.s390x", + sha256 = "0103b4031a7fb202d5361241ddfcee0d96e0ec33bc7161ca617a9a019d6f30f8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-libs-3.12.12-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/0103b4031a7fb202d5361241ddfcee0d96e0ec33bc7161ca617a9a019d6f30f8", + ], +) + +rpm( + name = "python3-libs-0__3.12.12-3.el10.x86_64", + sha256 = "d20b719ab3bd3456197544ea9f8e14d0c566987153480ca264ce1e15056b6da8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-libs-3.12.12-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d20b719ab3bd3456197544ea9f8e14d0c566987153480ca264ce1e15056b6da8", + ], +) + +rpm( + name = "python3-libs-0__3.9.25-3.el9.aarch64", + sha256 = "a7382c2bf7a19df0250ca2f28a7e25a294a19b42e54a5a63c5c499b8c6c6c685", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-libs-3.9.25-3.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a7382c2bf7a19df0250ca2f28a7e25a294a19b42e54a5a63c5c499b8c6c6c685", + ], +) + +rpm( + name = "python3-libs-0__3.9.25-3.el9.s390x", + sha256 = "48ddc59124e89c00be67d752f6d2c4f6e65c8681a454bc69b39392f569fe8518", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-libs-3.9.25-3.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/48ddc59124e89c00be67d752f6d2c4f6e65c8681a454bc69b39392f569fe8518", + ], +) + +rpm( + name = "python3-libs-0__3.9.25-3.el9.x86_64", + sha256 = "8929e0c6a72abb2f4890897b80ad9ad28c2cab6c7aeae8b145400c0f21443ace", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-libs-3.9.25-3.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8929e0c6a72abb2f4890897b80ad9ad28c2cab6c7aeae8b145400c0f21443ace", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.aarch64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.s390x", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__21.3.1-1.el9.x86_64", + sha256 = "1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pip-wheel-21.3.1-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/1c8096f1dd57c5d6db4d1391cafb15326431923ba139f3119015773a307f80d9", + ], +) + +rpm( + name = "python3-pip-wheel-0__23.3.2-7.el10.aarch64", + sha256 = "19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-pip-wheel-23.3.2-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + ], +) + +rpm( + name = "python3-pip-wheel-0__23.3.2-7.el10.s390x", + sha256 = "19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-pip-wheel-23.3.2-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + ], +) + +rpm( + name = "python3-pip-wheel-0__23.3.2-7.el10.x86_64", + sha256 = "19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-pip-wheel-23.3.2-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/19b2ce4f91ed680267712a2d2158e679267f9163db71f57e9db5f5c684ac15d8", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.aarch64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.s390x", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__2.4.7-9.el9.x86_64", + sha256 = "ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyparsing-2.4.7-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/ee20a60fb835392fc76c1a1a3e9befa0e4b3d27bdcfbfb0aab90fcddf3c60439", + ], +) + +rpm( + name = "python3-pyparsing-0__3.1.1-7.el10.aarch64", + sha256 = "8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-pyparsing-3.1.1-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + ], +) + +rpm( + name = "python3-pyparsing-0__3.1.1-7.el10.s390x", + sha256 = "8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-pyparsing-3.1.1-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + ], +) + +rpm( + name = "python3-pyparsing-0__3.1.1-7.el10.x86_64", + sha256 = "8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-pyparsing-3.1.1-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/8aef56a037934c4132e83b49893c0082351e96ab2c34cf3e14ee41472bb315e2", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.aarch64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.s390x", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.22.0-6.el9.x86_64", + sha256 = "db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-pyudev-0.22.0-6.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/db815d76afabb8dd7eca6ca5a5bf838304f82824c41e4f06b6d25b5eb63c65c6", + ], +) + +rpm( + name = "python3-pyudev-0__0.24.1-10.el10.aarch64", + sha256 = "69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-pyudev-0.24.1-10.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + ], +) + +rpm( + name = "python3-pyudev-0__0.24.1-10.el10.s390x", + sha256 = "69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-pyudev-0.24.1-10.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + ], +) + +rpm( + name = "python3-pyudev-0__0.24.1-10.el10.x86_64", + sha256 = "69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-pyudev-0.24.1-10.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/69e5069331c66c49738f7c558b3b78ec5aab81741af1d810629fb3a878a3f540", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.aarch64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.s390x", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-1.el9.x86_64", + sha256 = "2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/python3-rtslib-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/2cc7a615005d44835de5d211208722d9ebc7e5d36ad62632c5773a301ef6f0d2", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-12.el10.aarch64", + sha256 = "4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/python3-rtslib-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-12.el10.s390x", + sha256 = "4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/python3-rtslib-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + ], +) + +rpm( + name = "python3-rtslib-0__2.1.76-12.el10.x86_64", + sha256 = "4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/python3-rtslib-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/4e91e035feac9802dedfe00460866864100d0c32f9b2c2a3a0c32789e307b63c", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.aarch64", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.s390x", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-setuptools-wheel-0__53.0.0-15.el9.x86_64", + sha256 = "4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-53.0.0-15.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/4d61c666c3862bd18caebac2295c088627b47612f3367cd636fcaec9a021bbac", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.aarch64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.s390x", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.15.0-9.el9.x86_64", + sha256 = "efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-six-1.15.0-9.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/efecffed29602079a1ea1d41c819271ec705a97a68891b43e1d626b2fa0ea8a1", + ], +) + +rpm( + name = "python3-six-0__1.16.0-16.el10.aarch64", + sha256 = "587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-six-1.16.0-16.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + ], +) + +rpm( + name = "python3-six-0__1.16.0-16.el10.s390x", + sha256 = "587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-six-1.16.0-16.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + ], +) + +rpm( + name = "python3-six-0__1.16.0-16.el10.x86_64", + sha256 = "587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-six-1.16.0-16.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/587391f25be67ed7389c4623f1260a16b33dfab99b5b7376e9eb72dafbc78403", + ], +) + +rpm( + name = "python3-typing-extensions-0__4.9.0-6.el10.aarch64", + sha256 = "d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-typing-extensions-4.9.0-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + ], +) + +rpm( + name = "python3-typing-extensions-0__4.9.0-6.el10.s390x", + sha256 = "d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-typing-extensions-4.9.0-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + ], +) + +rpm( + name = "python3-typing-extensions-0__4.9.0-6.el10.x86_64", + sha256 = "d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-typing-extensions-4.9.0-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/d5e02bc63a658039701accb13f243d421082d21a64267e18fd04954d7d2938a8", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.aarch64", + sha256 = "a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/python3-urwid-2.1.2-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a91fcc1b5b01aeb0830d04f562cb843489f38d2606d8ab480a876207f4335990", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.s390x", + sha256 = "8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/python3-urwid-2.1.2-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8c2347f24774578aee45917782ca5e535cdb5eb0bc12a8bbf301a8cc71174ab7", + ], +) + +rpm( + name = "python3-urwid-0__2.1.2-4.el9.x86_64", + sha256 = "b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/python3-urwid-2.1.2-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b4e4915a49904035e0e8d8ed15a545f2d7191e9d760c438343980fbf0b66abf4", + ], +) + +rpm( + name = "python3-urwid-0__2.5.3-4.el10.aarch64", + sha256 = "b754bb3fe723d716e43404b58f706b506b14123fbfd3cad0fa016da10ce7aaf0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-urwid-2.5.3-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b754bb3fe723d716e43404b58f706b506b14123fbfd3cad0fa016da10ce7aaf0", + ], +) + +rpm( + name = "python3-urwid-0__2.5.3-4.el10.s390x", + sha256 = "e73588c982971858102bb9a6804391709e72e5dd765034f5e4b1d7bea8c59332", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-urwid-2.5.3-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/e73588c982971858102bb9a6804391709e72e5dd765034f5e4b1d7bea8c59332", + ], +) + +rpm( + name = "python3-urwid-0__2.5.3-4.el10.x86_64", + sha256 = "8ccc08409b227ee8b2cc6879a3b2f84a0e9cc792b720f3b5b7dd1381109a51cd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-urwid-2.5.3-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8ccc08409b227ee8b2cc6879a3b2f84a0e9cc792b720f3b5b7dd1381109a51cd", + ], +) + +rpm( + name = "python3-wcwidth-0__0.2.6-6.el10.aarch64", + sha256 = "0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/python3-wcwidth-0.2.6-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + ], +) + +rpm( + name = "python3-wcwidth-0__0.2.6-6.el10.s390x", + sha256 = "0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/python3-wcwidth-0.2.6-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + ], +) + +rpm( + name = "python3-wcwidth-0__0.2.6-6.el10.x86_64", + sha256 = "0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/python3-wcwidth-0.2.6-6.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/0477cede1c6397494f32acfba7e6fba166e6f73811cf8c8e62a30aa7b3ae1af8", + ], +) + +rpm( + name = "qemu-img-17__10.1.0-10.el9.aarch64", + sha256 = "b3c671a12649fcba7d3874ac0e0c0afc270a3faeef9c1a790c97befd38a30872", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-img-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b3c671a12649fcba7d3874ac0e0c0afc270a3faeef9c1a790c97befd38a30872", + ], +) + +rpm( + name = "qemu-img-17__10.1.0-10.el9.s390x", + sha256 = "f70342c7ed802c44ae8bde3519d4b9f502f843f248846955960a39a2a1ece164", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-img-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f70342c7ed802c44ae8bde3519d4b9f502f843f248846955960a39a2a1ece164", + ], +) + +rpm( + name = "qemu-img-17__10.1.0-10.el9.x86_64", + sha256 = "020472c00f3160f8bcc5b13cfdacc46d5e65676b40e5758a6b7f64de168fac79", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-img-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/020472c00f3160f8bcc5b13cfdacc46d5e65676b40e5758a6b7f64de168fac79", + ], +) + +rpm( + name = "qemu-img-17__9.1.0-15.el9.x86_64", + sha256 = "6149224d6968142db7c12330dd4d9f6882af2ad73a97e591214a3869603b663f", + urls = ["https://storage.googleapis.com/builddeps/6149224d6968142db7c12330dd4d9f6882af2ad73a97e591214a3869603b663f"], +) + +rpm( + name = "qemu-img-18__10.1.0-13.el10.aarch64", + sha256 = "c334bac151735990b5942f1e76682d90a61e7fe46a8cdb184d14d273c7ae0f8a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-img-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-img-18__10.1.0-13.el10.s390x", + sha256 = "2f2f9b0eaa327acf3c8480d7c34971d212fb2c4c649cf635be680148ad90f8e0", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-img-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-img-18__10.1.0-13.el10.x86_64", + sha256 = "eddf85aa1c66c902f296086d9ee9209eedaf7756b88b021becbf52250d57ff84", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-img-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-common-17__10.1.0-10.el9.aarch64", + sha256 = "7850e9a4e039659e3fd94e1b45a46eab5b069c78832a6f1520eb6e60c0681b47", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-common-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7850e9a4e039659e3fd94e1b45a46eab5b069c78832a6f1520eb6e60c0681b47", + ], +) + +rpm( + name = "qemu-kvm-common-17__10.1.0-10.el9.s390x", + sha256 = "0fe7718edf8c464fdc6c346bbd65bd2468f3266c34960426f1fe02303183d2c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-common-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0fe7718edf8c464fdc6c346bbd65bd2468f3266c34960426f1fe02303183d2c3", + ], +) + +rpm( + name = "qemu-kvm-common-17__10.1.0-10.el9.x86_64", + sha256 = "8ef35ad940fedae158346385fe825c0309f8ad6495df73a552b13c3383b9d4b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-common-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8ef35ad940fedae158346385fe825c0309f8ad6495df73a552b13c3383b9d4b7", + ], +) + +rpm( + name = "qemu-kvm-common-17__9.1.0-15.el9.x86_64", + sha256 = "345b3dae626a756f160321e025774d3d3e193a767388e69ffc832ea75988b166", + urls = ["https://storage.googleapis.com/builddeps/345b3dae626a756f160321e025774d3d3e193a767388e69ffc832ea75988b166"], +) + +rpm( + name = "qemu-kvm-common-18__10.1.0-13.el10.aarch64", + sha256 = "291dd37954e59493a89223ad9f81a9314640d199defa685c8673b1966c4cdbc7", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-common-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-common-18__10.1.0-13.el10.s390x", + sha256 = "4da254d139019a8f383a647eae10e7346f9b81223455be5c085274ca7e6683cb", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-common-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-common-18__10.1.0-13.el10.x86_64", + sha256 = "bf468ce8b8c945949bab6a483aa5a2d37972388603a1d263a0f7abe4371c48da", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-common-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-core-17__10.1.0-10.el9.aarch64", + sha256 = "2b27d861d1f8019b3db06ba1ddfc6e4278ec5df2e6eca20251367465e39258f7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-core-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2b27d861d1f8019b3db06ba1ddfc6e4278ec5df2e6eca20251367465e39258f7", + ], +) + +rpm( + name = "qemu-kvm-core-17__10.1.0-10.el9.s390x", + sha256 = "34181ed8209aed15c3039287631e63958cecfd79e62f60f67aa9b7c4899b8ba1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-core-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/34181ed8209aed15c3039287631e63958cecfd79e62f60f67aa9b7c4899b8ba1", + ], +) + +rpm( + name = "qemu-kvm-core-17__10.1.0-10.el9.x86_64", + sha256 = "e24d2e3154b71618031cdd3314e7de9d6d68b032531a2098bf3d6cbcc0d9f4ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-core-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e24d2e3154b71618031cdd3314e7de9d6d68b032531a2098bf3d6cbcc0d9f4ef", + ], +) + +rpm( + name = "qemu-kvm-core-17__9.1.0-15.el9.x86_64", + sha256 = "aa36521b947a78d2d06d90e1a8f5d74bab5ffbbb6d8ca8d939497477c4878565", + urls = ["https://storage.googleapis.com/builddeps/aa36521b947a78d2d06d90e1a8f5d74bab5ffbbb6d8ca8d939497477c4878565"], +) + +rpm( + name = "qemu-kvm-core-18__10.1.0-13.el10.aarch64", + sha256 = "e1351b19e80bf371530b8d49d8d589e1a789cc0464a2f999a1770b5c43320a52", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-core-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-core-18__10.1.0-13.el10.s390x", + sha256 = "d2b3095a770314729c41aee04e9ffca1b4f8d9c79bc6b93d9e58620411b7592a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-core-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-core-18__10.1.0-13.el10.x86_64", + sha256 = "f2651a1a227fef8b5fc1848763d001a9ca40743334643e469f7258486d07b10a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-core-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.aarch64", + sha256 = "57f01d67fb90e28f8a0651b495f25a3f10e87ac96eef2227d3c3af01791e6e71", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/57f01d67fb90e28f8a0651b495f25a3f10e87ac96eef2227d3c3af01791e6e71", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.s390x", + sha256 = "c93b176d87f21c58ee277f3abaa04eebba2af8465356bc34a94b23207d0f4bd3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/c93b176d87f21c58ee277f3abaa04eebba2af8465356bc34a94b23207d0f4bd3", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.x86_64", + sha256 = "a851e72c1f1684006e1bd104297beb94ac486dd931930ad59a754bdbaf1955ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a851e72c1f1684006e1bd104297beb94ac486dd931930ad59a754bdbaf1955ac", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.aarch64", + sha256 = "7d99b599a9fc94ab0e3f64904814d651093bd56e7fdffdd7541cdf4f4759dc50", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.s390x", + sha256 = "2a8e4788a6c853da54727e737ec1e1b26356610d3725dd55bba7ea7e1f4cc6d5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.x86_64", + sha256 = "b70e259b1255e70cc87ebf3613199a501da745c08d48c7d4a2e5d8b18ca7e4fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-ccw-17__10.1.0-10.el9.s390x", + sha256 = "f1915ceafea5f2ad0ce567d25bb9d904c30139ab2924bb6ee43759959e68278f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-ccw-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f1915ceafea5f2ad0ce567d25bb9d904c30139ab2924bb6ee43759959e68278f", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-ccw-18__10.1.0-13.el10.s390x", + sha256 = "1fee5e6c7115e83a8739f82b51c1288b278b03eec3c7f2e00ed7eeded562d98f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-device-display-virtio-gpu-ccw-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.aarch64", + sha256 = "f3adcc8def322ea354c6a1a03cb984fdb983bfcb570d9a5c2d22c356edb068c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/f3adcc8def322ea354c6a1a03cb984fdb983bfcb570d9a5c2d22c356edb068c2", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.x86_64", + sha256 = "abda4ef1719f3dd33951b9a6b95056ba370d34c72440c84f1a04c652a77f066d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/abda4ef1719f3dd33951b9a6b95056ba370d34c72440c84f1a04c652a77f066d", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.aarch64", + sha256 = "dbed8391729d60c658e7f548e9fa3e3070d25bc8b609e2432bdc875700999828", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.x86_64", + sha256 = "35bb029888dc5143dc869aca7e731979270074982bad51e6cc13b35d2ac771fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-gpu-pci-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-vga-17__10.1.0-10.el9.x86_64", + sha256 = "b11c166261824350ea29f31dbc4327e6bf445fe340e2f91cd4f2c26b44332b6b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-vga-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b11c166261824350ea29f31dbc4327e6bf445fe340e2f91cd4f2c26b44332b6b", + ], +) + +rpm( + name = "qemu-kvm-device-display-virtio-vga-18__10.1.0-13.el10.x86_64", + sha256 = "364ce3b445a7adda3bf16965ba2a1ea8f0847079999fc6ff5ab0baede02daabc", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-display-virtio-vga-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__10.1.0-10.el9.aarch64", + sha256 = "82663b34760d96ffa404d63d386d8d886fe8ad25cf8e4856fe8ad3dec131742b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-host-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/82663b34760d96ffa404d63d386d8d886fe8ad25cf8e4856fe8ad3dec131742b", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__10.1.0-10.el9.s390x", + sha256 = "0eafa1d32cb0eb8fe9397093b4afc7bcbc0c3a2dc64f0accba099697c5ab30ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/qemu-kvm-device-usb-host-10.1.0-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/0eafa1d32cb0eb8fe9397093b4afc7bcbc0c3a2dc64f0accba099697c5ab30ed", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-17__10.1.0-10.el9.x86_64", + sha256 = "2575227bcaed72dedc44c71b8fb893a58fe7322abfc3ca8f707073cedc6858ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-host-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2575227bcaed72dedc44c71b8fb893a58fe7322abfc3ca8f707073cedc6858ce", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-18__10.1.0-13.el10.aarch64", + sha256 = "2b0e780aebb78d567bedc65556d19b83929a2b5ac1114d7d7f745b120149db02", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-host-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-18__10.1.0-13.el10.s390x", + sha256 = "dc15b2d6dc2608866fc811f6dc3bc825d2e09e6fd3b75e977904da5e0af3e297", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/qemu-kvm-device-usb-host-10.1.0-13.el10.s390x.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-host-18__10.1.0-13.el10.x86_64", + sha256 = "5ced8d0c7f3cff2e2fdc40020ca2b4d84e1b50b1fa6ce692859ff79fcb3bcc3b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-host-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.aarch64", + sha256 = "98897947fe9bce3726f43d6f1c594253a31e908a31e50d3d763d7c94db4de8a1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/98897947fe9bce3726f43d6f1c594253a31e908a31e50d3d763d7c94db4de8a1", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.x86_64", + sha256 = "54740022c454f0eb9fadd8f7eaa9f94e24115523fb473b034d46016806bc5c1f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/54740022c454f0eb9fadd8f7eaa9f94e24115523fb473b034d46016806bc5c1f", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.aarch64", + sha256 = "0cd21fde592c387c98f1891756edda010de0080749333303aeb92de88de84c31", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.x86_64", + sha256 = "84b0a0390040c9a3742d5d45441b7cf29fe88d9f71a3fe7be890e2d244fd1886", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-kvm-device-usb-redirect-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "qemu-pr-helper-17__10.1.0-14.el9.aarch64", + sha256 = "1ac4b23b22841964cdd4367f1d088ba60d2b2c53f77c24b9a4bd7f99dfc40ede", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/qemu-pr-helper-10.1.0-14.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/1ac4b23b22841964cdd4367f1d088ba60d2b2c53f77c24b9a4bd7f99dfc40ede", + ], +) + +rpm( + name = "qemu-pr-helper-17__10.1.0-14.el9.x86_64", + sha256 = "24d915c83801d66ba142b5eba134baa0f036dd6372145a3864843c476caad8cd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/qemu-pr-helper-10.1.0-14.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/24d915c83801d66ba142b5eba134baa0f036dd6372145a3864843c476caad8cd", + ], +) + +rpm( + name = "qemu-pr-helper-18__10.1.0-13.el10.aarch64", + sha256 = "e8f5eba7dbae62f05ff4dbc977ba7b9c91235abc1f01d24e5b0a3556a10cf77f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/qemu-pr-helper-10.1.0-13.el10.aarch64.rpm", + ], +) + +rpm( + name = "qemu-pr-helper-18__10.1.0-13.el10.x86_64", + sha256 = "a69bcbe10ab4e2ca16c737671e590854cc420adfc50e4348019b32f01a9b5a4d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/qemu-pr-helper-10.1.0-13.el10.x86_64.rpm", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.aarch64", + sha256 = "2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/readline-8.1-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2ecec47a882ff434cc869b691a7e1e8d7639bc1af44bcb214ff4921f675776aa", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.s390x", + sha256 = "7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/readline-8.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7b4b6f641f65d99d33ccbefaf4fbfe25a146d80213d359940779be4ad29569a8", + ], +) + +rpm( + name = "readline-0__8.1-4.el9.x86_64", + sha256 = "49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/readline-8.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/49945472925286ad89b0575657b43f9224777e36b442f0c88df67f0b61e26aee", + ], +) + +rpm( + name = "readline-0__8.2-11.el10.aarch64", + sha256 = "a1f1fe411d40cb802c7a3e3b105faffe05c2376563bec2d59c71ed28778684cd", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/readline-8.2-11.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a1f1fe411d40cb802c7a3e3b105faffe05c2376563bec2d59c71ed28778684cd", + ], +) + +rpm( + name = "readline-0__8.2-11.el10.s390x", + sha256 = "fd8cc3c7dd19bf773afb0488b2521d1710dfc1d8337fbff55c9f8d84572a4f9f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/readline-8.2-11.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/fd8cc3c7dd19bf773afb0488b2521d1710dfc1d8337fbff55c9f8d84572a4f9f", + ], +) + +rpm( + name = "readline-0__8.2-11.el10.x86_64", + sha256 = "d8e2d7c011d0e5c56b6875919ce036605862db02d59d6983d470bc5757021783", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/readline-8.2-11.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d8e2d7c011d0e5c56b6875919ce036605862db02d59d6983d470bc5757021783", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-37.el9.x86_64", + sha256 = "84caf776cfb5175fbe960dd8bb4bd10d799c45c3c0fd9d6b01bdf4d0c254d40d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/84caf776cfb5175fbe960dd8bb4bd10d799c45c3c0fd9d6b01bdf4d0c254d40d", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-40.el9.aarch64", + sha256 = "75e4d04e5712c50d717088642fd23adb9ea62c9662a159c740375510c8f30a47", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-4.16.1.3-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/75e4d04e5712c50d717088642fd23adb9ea62c9662a159c740375510c8f30a47", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-40.el9.s390x", + sha256 = "9363a8f161f6965bbfc4bf591bbbfd9dfbdbafbd72a480f58dcacfddd0344048", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-4.16.1.3-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9363a8f161f6965bbfc4bf591bbbfd9dfbdbafbd72a480f58dcacfddd0344048", + ], +) + +rpm( + name = "rpm-0__4.16.1.3-40.el9.x86_64", + sha256 = "46e39d6ce74f21c388ac74db702d74813253e0b79096905bc9683be4ff0323fe", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-4.16.1.3-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/46e39d6ce74f21c388ac74db702d74813253e0b79096905bc9683be4ff0323fe", + ], +) + +rpm( + name = "rpm-0__4.19.1.1-23.el10.s390x", + sha256 = "05eda18d5bf13fa1b646db11f11c6a39f5f042d5dd1bc2737c2bc7c590086381", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/rpm-4.19.1.1-23.el10.s390x.rpm", + ], +) + +rpm( + name = "rpm-0__4.19.1.1-23.el10.x86_64", + sha256 = "65da87ed114dad6baedbb4f536c3cb492079ffde58223992124b1ddfaa80527c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/rpm-4.19.1.1-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-37.el9.x86_64", + sha256 = "ff504743e1b532c3825d1c6d4d72109a998de862f3d8e4896b49aecd3f33d3ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff504743e1b532c3825d1c6d4d72109a998de862f3d8e4896b49aecd3f33d3ed", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-40.el9.aarch64", + sha256 = "aeddcc0609d5a2faa1206148be2514becc210a5422e7eb6be7a9a159c1e910ff", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-libs-4.16.1.3-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/aeddcc0609d5a2faa1206148be2514becc210a5422e7eb6be7a9a159c1e910ff", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-40.el9.s390x", + sha256 = "699c13851921821ce338801d19d59cf0ba91584bd7c483a3cbae7466ef6779db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-libs-4.16.1.3-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/699c13851921821ce338801d19d59cf0ba91584bd7c483a3cbae7466ef6779db", + ], +) + +rpm( + name = "rpm-libs-0__4.16.1.3-40.el9.x86_64", + sha256 = "5a141739706737beb8c89678cc9a9c7d5adc35f9d893b3ecf919b42c83775dae", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.16.1.3-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/5a141739706737beb8c89678cc9a9c7d5adc35f9d893b3ecf919b42c83775dae", + ], +) + +rpm( + name = "rpm-libs-0__4.19.1.1-23.el10.s390x", + sha256 = "d2f001506bd3564cda8ca18612ed21f2ab4cbf9fb30538364fbf88920247c3e7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/rpm-libs-4.19.1.1-23.el10.s390x.rpm", + ], +) + +rpm( + name = "rpm-libs-0__4.19.1.1-23.el10.x86_64", + sha256 = "8952882f16d10aab6a9024bea682baed30fdd412a9a85cab7ae0695acda1950a", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/rpm-libs-4.19.1.1-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-37.el9.x86_64", + sha256 = "0abb8313e99600887e851d249d914968a0b5623aead736831077f7d53be25837", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-37.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/0abb8313e99600887e851d249d914968a0b5623aead736831077f7d53be25837", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-40.el9.aarch64", + sha256 = "19ce6961dfec6e9f818d633e3730c0990b14411757eeb17139d2a1ee71e1c785", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/rpm-plugin-selinux-4.16.1.3-40.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/19ce6961dfec6e9f818d633e3730c0990b14411757eeb17139d2a1ee71e1c785", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x", + sha256 = "42758d8484ace9e5df8edab294d1e31cf30c7f0c641ac5b9150baf1f6efc25e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/rpm-plugin-selinux-4.16.1.3-40.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/42758d8484ace9e5df8edab294d1e31cf30c7f0c641ac5b9150baf1f6efc25e9", + ], +) + +rpm( + name = "rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64", + sha256 = "9b9ed99dde1c72fbb7860370d5b80c8fe83c54519887fe62dbf74acee9b23eb7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.16.1.3-40.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/9b9ed99dde1c72fbb7860370d5b80c8fe83c54519887fe62dbf74acee9b23eb7", + ], +) + +rpm( + name = "rpm-sequoia-0__1.10.1.1-2.el10.s390x", + sha256 = "d9bf8f0c9d1a2e1a996e28cf7204025d4f1bf84ebb37d173893b5ad96dca6de0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/rpm-sequoia-1.10.1.1-2.el10.s390x.rpm", + ], +) + +rpm( + name = "rpm-sequoia-0__1.10.1.1-2.el10.x86_64", + sha256 = "63f4b9b90993d210e41ff934300a887d125c2f20ca82f9426aa81367801f76ed", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/rpm-sequoia-1.10.1.1-2.el10.x86_64.rpm", + ], +) + +rpm( + name = "scrub-0__2.6.1-11.el10.s390x", + sha256 = "527e3cf6d20579cbc13efd1b13c639c243e538b6e6121a22efd46ec13d2fa557", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/scrub-2.6.1-11.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/527e3cf6d20579cbc13efd1b13c639c243e538b6e6121a22efd46ec13d2fa557", + ], +) + +rpm( + name = "scrub-0__2.6.1-11.el10.x86_64", + sha256 = "935258a3ef8ada2d8cba193df349c9d1dc62d38018b9613aab6f727f93655f85", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/scrub-2.6.1-11.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/935258a3ef8ada2d8cba193df349c9d1dc62d38018b9613aab6f727f93655f85", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.s390x", + sha256 = "eadebb92f9a6955e7f3391ea9964c1e66f84afeeff1abd23b1c4137fdc21625c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/scrub-2.6.1-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/eadebb92f9a6955e7f3391ea9964c1e66f84afeeff1abd23b1c4137fdc21625c", + ], +) + +rpm( + name = "scrub-0__2.6.1-4.el9.x86_64", + sha256 = "cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/scrub-2.6.1-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/cda882a3418a7dec3ab58fa7d96084bdf27067997d5dd23023a52d25c5a9f7f3", + ], +) + +rpm( + name = "seabios-0__1.16.3-4.el9.x86_64", + sha256 = "017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-1.16.3-4.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/017b84c1189a9ec40b029d4a3ea5add67bceb0a48f1b3d9d135e1cc0fe465002", + ], +) + +rpm( + name = "seabios-0__1.17.0-1.el10.x86_64", + sha256 = "18044b16fa0f0256167f42ba6ab1f8b5ac338747e150d3c9aead064cd28255c9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/seabios-1.17.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/18044b16fa0f0256167f42ba6ab1f8b5ac338747e150d3c9aead064cd28255c9", + ], +) + +rpm( + name = "seabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/95b4f37519a9c83f493b0109be461fbdf7205ca0eb3b572bec6ce10c2f5f6d00", + ], +) + +rpm( + name = "seabios-bin-0__1.17.0-1.el10.x86_64", + sha256 = "5edf7ad5039c74faab0fe3bc7f9741db6153c6f9ebe3367d20701d4e659d930d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/seabios-bin-1.17.0-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/5edf7ad5039c74faab0fe3bc7f9741db6153c6f9ebe3367d20701d4e659d930d", + ], +) + +rpm( + name = "seavgabios-bin-0__1.16.3-4.el9.x86_64", + sha256 = "8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/seavgabios-bin-1.16.3-4.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8bdae1cc5c6ea4ed2347180d9f94dabe9891264a612e3afed2fb4ad86686eb43", + ], +) + +rpm( + name = "seavgabios-bin-0__1.17.0-1.el10.x86_64", + sha256 = "5ed6563e3d13189aa28fe86d0fef8540d61539aa44dd2d5558ca068e79df4ea2", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/seavgabios-bin-1.17.0-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/5ed6563e3d13189aa28fe86d0fef8540d61539aa44dd2d5558ca068e79df4ea2", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.aarch64", + sha256 = "cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sed-4.8-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cfdec0f026af984c11277ae613f16af7a86ea6170aac3da495a027599fdc8e3d", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.s390x", + sha256 = "7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sed-4.8-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/7185b39912949fe56bc0a9bd6463b1c2dc1206efa00dadecfd6e37c9028e1575", + ], +) + +rpm( + name = "sed-0__4.8-9.el9.x86_64", + sha256 = "a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sed-4.8-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a2c5d9a7f569abb5a592df1c3aaff0441bf827c9d0e2df0ab42b6c443dbc475f", + ], +) + +rpm( + name = "sed-0__4.9-5.el10.aarch64", + sha256 = "9c03d6148a319111bce62ba46e859c17c6615f51648788b499e28cbb429d1390", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/sed-4.9-5.el10.aarch64.rpm", + ], +) + +rpm( + name = "sed-0__4.9-5.el10.s390x", + sha256 = "428403e0e45d47510ffc7bebbe47a7e981bbe5347432f4b055e23c199482cbd3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/sed-4.9-5.el10.s390x.rpm", + ], +) + +rpm( + name = "sed-0__4.9-5.el10.x86_64", + sha256 = "b5c61c0b1b90892375c36acaf52f8a19e68397a18703687df8b1883792485b7c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/sed-4.9-5.el10.x86_64.rpm", + ], +) + +rpm( + name = "selinux-policy-0__38.1.53-2.el9.x86_64", + sha256 = "6840efbf87f7f4782c332e0e0a3e3567075a804c070b1d501ff7e7a44a09448c", + urls = ["https://storage.googleapis.com/builddeps/6840efbf87f7f4782c332e0e0a3e3567075a804c070b1d501ff7e7a44a09448c"], +) + +rpm( + name = "selinux-policy-0__38.1.73-1.el9.aarch64", + sha256 = "8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + ], +) + +rpm( + name = "selinux-policy-0__38.1.73-1.el9.s390x", + sha256 = "8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + ], +) + +rpm( + name = "selinux-policy-0__38.1.73-1.el9.x86_64", + sha256 = "8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/8797960a78b46b3c3c173fb54c14f8a0c5c8c3cbfd950a5a627309544bdd90fb", + ], +) + +rpm( + name = "selinux-policy-0__42.1.18-1.el10.aarch64", + sha256 = "d21ac667e6418d0379245ecb8c9592a09c3df71251ba1164723356964888bf53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/selinux-policy-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-0__42.1.18-1.el10.s390x", + sha256 = "d21ac667e6418d0379245ecb8c9592a09c3df71251ba1164723356964888bf53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/selinux-policy-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-0__42.1.18-1.el10.x86_64", + sha256 = "d21ac667e6418d0379245ecb8c9592a09c3df71251ba1164723356964888bf53", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/selinux-policy-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.53-2.el9.x86_64", + sha256 = "b9f921bdc764af3b8c5c8580fc9db4f75b0fb3b2c0a3ea1f541536de091664b1", + urls = ["https://storage.googleapis.com/builddeps/b9f921bdc764af3b8c5c8580fc9db4f75b0fb3b2c0a3ea1f541536de091664b1"], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.73-1.el9.aarch64", + sha256 = "eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/selinux-policy-targeted-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.73-1.el9.s390x", + sha256 = "eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/selinux-policy-targeted-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + ], +) + +rpm( + name = "selinux-policy-targeted-0__38.1.73-1.el9.x86_64", + sha256 = "eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/selinux-policy-targeted-38.1.73-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/eaf9db99b4759a86ea95d6fc8e6e163392707c70b7cc05b0aea9eec5765436ad", + ], +) + +rpm( + name = "selinux-policy-targeted-0__42.1.18-1.el10.aarch64", + sha256 = "f1172e2fe9c60cc6c80751e8fbb4af7e5e3a5ca7acf35099f9a1a2b1f0c76679", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/selinux-policy-targeted-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-targeted-0__42.1.18-1.el10.s390x", + sha256 = "f1172e2fe9c60cc6c80751e8fbb4af7e5e3a5ca7acf35099f9a1a2b1f0c76679", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/selinux-policy-targeted-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "selinux-policy-targeted-0__42.1.18-1.el10.x86_64", + sha256 = "f1172e2fe9c60cc6c80751e8fbb4af7e5e3a5ca7acf35099f9a1a2b1f0c76679", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/selinux-policy-targeted-42.1.18-1.el10.noarch.rpm", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.aarch64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.s390x", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.13.7-10.el9.x86_64", + sha256 = "42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/setup-2.13.7-10.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/42a1c5a415c44e3b55551f49595c087e2ba55f0fd9ece8056b791983601b76d2", + ], +) + +rpm( + name = "setup-0__2.14.5-7.el10.aarch64", + sha256 = "bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/setup-2.14.5-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + ], +) + +rpm( + name = "setup-0__2.14.5-7.el10.s390x", + sha256 = "bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/setup-2.14.5-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + ], +) + +rpm( + name = "setup-0__2.14.5-7.el10.x86_64", + sha256 = "bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/setup-2.14.5-7.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/bd7fb604e635ec8e49abc330cb15e9f30dcc1c6f248495308acd83e41896b29e", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.aarch64", + sha256 = "10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/sevctl-0.1.0-4.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/10a9ace255a5b84c2e89b413c08e24894470bfec6f6c790ea073b6fa3df7ee7a", + ], +) + +rpm( + name = "sevctl-0__0.1.0-4.el9.s390x", + sha256 = "1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/sevctl-0.1.0-4.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/1f9c055b710e3840ea16027f68699587459cf4132e3509aff5db0c4dd7af10dc", + ], +) + +rpm( + name = "sevctl-0__0.4.2-1.el9.x86_64", + sha256 = "3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sevctl-0.4.2-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/3a365631679a0ebf367ba1701235019c6d04e2a92233035409b8ee84b0b54297", + ], +) + +rpm( + name = "sevctl-0__0.4.3-3.el10.x86_64", + sha256 = "790b23bb704c9c42b9478b859f909186751771d9c8e864b5b1eb7a0158e690ca", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/sevctl-0.4.3-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/790b23bb704c9c42b9478b859f909186751771d9c8e864b5b1eb7a0158e690ca", + ], +) + +rpm( + name = "shadow-utils-2__4.15.0-11.el10.aarch64", + sha256 = "cf81c04143f75cd2893089539ece1797cf8ac082fd8a50216c6f63e063f93eb5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/shadow-utils-4.15.0-11.el10.aarch64.rpm", + ], +) + +rpm( + name = "shadow-utils-2__4.15.0-11.el10.s390x", + sha256 = "25a8991e9008d4e4cd0a4e39771eb738d233d892cdefcc5229ba19d9d314fbe5", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/shadow-utils-4.15.0-11.el10.s390x.rpm", + ], +) + +rpm( + name = "shadow-utils-2__4.15.0-11.el10.x86_64", + sha256 = "8239e11a6d17f424a99eaa9fee41fc9516125f15ab0c60db1ba8658bdbe65eb2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.15.0-11.el10.x86_64.rpm", + ], +) + +rpm( + name = "shadow-utils-2__4.9-12.el9.x86_64", + sha256 = "23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-12.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/23f14143a188cf9bf8a0315f930fbeeb0ad34c58357007a52d112c5f8b6029e0", + ], +) + +rpm( + name = "shadow-utils-2__4.9-16.el9.aarch64", + sha256 = "085a4d0d20ee46e72564939e92533fbf4c049658c58d4e7cc075d5da5baa7098", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/shadow-utils-4.9-16.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/085a4d0d20ee46e72564939e92533fbf4c049658c58d4e7cc075d5da5baa7098", + ], +) + +rpm( + name = "shadow-utils-2__4.9-16.el9.s390x", + sha256 = "18c43c994a4c8f6c97c195f2bf30ffad338b3cf5ee08e3d813731dbcedf51b4e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/shadow-utils-4.9-16.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/18c43c994a4c8f6c97c195f2bf30ffad338b3cf5ee08e3d813731dbcedf51b4e", + ], +) + +rpm( + name = "shadow-utils-2__4.9-16.el9.x86_64", + sha256 = "f82dcf66ba99287eaebe3225cb01d252eea40202b0b263a2b2619f87d98918fd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shadow-utils-4.9-16.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/f82dcf66ba99287eaebe3225cb01d252eea40202b0b263a2b2619f87d98918fd", + ], +) + +rpm( + name = "snappy-0__1.1.10-7.el10.aarch64", + sha256 = "cc7bc94dc673d8d6d5b4559036648410e790e2c59e2254bc6acd1578fb5e6781", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/snappy-1.1.10-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/cc7bc94dc673d8d6d5b4559036648410e790e2c59e2254bc6acd1578fb5e6781", + ], +) + +rpm( + name = "snappy-0__1.1.10-7.el10.s390x", + sha256 = "03a4ac68f64e146332224557a251a9d051dada615815dd6eb2f4bb22b73826e0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/snappy-1.1.10-7.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/03a4ac68f64e146332224557a251a9d051dada615815dd6eb2f4bb22b73826e0", + ], +) + +rpm( + name = "snappy-0__1.1.10-7.el10.x86_64", + sha256 = "952dcfbe66d93bece4a4f3753ce721594acbd2af82cd5ca02bf9028375c136b3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/snappy-1.1.10-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/952dcfbe66d93bece4a4f3753ce721594acbd2af82cd5ca02bf9028375c136b3", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.aarch64", + sha256 = "02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/snappy-1.1.8-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/02e5739b35acb3874546e98a8c182e1281f5a80604a550f05de2094c38c5e0d7", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.s390x", + sha256 = "e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/snappy-1.1.8-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e048f5d0966c06eeffb85bc0c26823e1f9af7b7659365e216839e41c2cb1dcaa", + ], +) + +rpm( + name = "snappy-0__1.1.8-8.el9.x86_64", + sha256 = "10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/snappy-1.1.8-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/10facee86b64af91b06292ca9892fd94fe5fc08c068b0baed6a0927d6a64955a", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-7.el9.x86_64", + sha256 = "eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/eddc9570ff3c2f672034888a57eac371e166671fee8300c3c4976324d502a00f", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-9.el9.aarch64", + sha256 = "115fbe01cb007257cbd277bb83e63eb211dd244f10e150e5e71b3edca68181c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sqlite-libs-3.34.1-9.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/115fbe01cb007257cbd277bb83e63eb211dd244f10e150e5e71b3edca68181c6", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-9.el9.s390x", + sha256 = "759932a92153b14492308c8330aa398fcabec87f2b42635a231b455431032f3b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sqlite-libs-3.34.1-9.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/759932a92153b14492308c8330aa398fcabec87f2b42635a231b455431032f3b", + ], +) + +rpm( + name = "sqlite-libs-0__3.34.1-9.el9.x86_64", + sha256 = "88abee2ce36a11d707d610e796afcd2919a7adc3bb5ba4e92b08ef06046e6970", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.34.1-9.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/88abee2ce36a11d707d610e796afcd2919a7adc3bb5ba4e92b08ef06046e6970", + ], +) + +rpm( + name = "sqlite-libs-0__3.46.1-5.el10.aarch64", + sha256 = "217f00d515ac790fd028f0fd70a195a288258d0e1157ce6293ab65d29a965cf1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/sqlite-libs-3.46.1-5.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/217f00d515ac790fd028f0fd70a195a288258d0e1157ce6293ab65d29a965cf1", + ], +) + +rpm( + name = "sqlite-libs-0__3.46.1-5.el10.s390x", + sha256 = "34d97be1a2df9d53a327cec2ca15887897168b880a19a4b7af2b860ad80b35fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/sqlite-libs-3.46.1-5.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/34d97be1a2df9d53a327cec2ca15887897168b880a19a4b7af2b860ad80b35fe", + ], +) + +rpm( + name = "sqlite-libs-0__3.46.1-5.el10.x86_64", + sha256 = "fa8bd71adaf88ff1b893731fd5f49c949cf3f618332c9b80390113237699f8e7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/sqlite-libs-3.46.1-5.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fa8bd71adaf88ff1b893731fd5f49c949cf3f618332c9b80390113237699f8e7", + ], +) + +rpm( + name = "sssd-client-0__2.12.0-1.el10.aarch64", + sha256 = "38b0c51913fee7468a2e585c2e9ae811cbcd682ac266f3681da43dcd223d7718", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/sssd-client-2.12.0-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/38b0c51913fee7468a2e585c2e9ae811cbcd682ac266f3681da43dcd223d7718", + ], +) + +rpm( + name = "sssd-client-0__2.12.0-1.el10.s390x", + sha256 = "a7455c34c936bd13af3360275301ad413fc246e65a969cc32b3fb1b25c7870c0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/sssd-client-2.12.0-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a7455c34c936bd13af3360275301ad413fc246e65a969cc32b3fb1b25c7870c0", + ], +) + +rpm( + name = "sssd-client-0__2.12.0-1.el10.x86_64", + sha256 = "83b0d541eaed2737ab42036d731df94094458b6f0fa39db2e23391b947d59ff0", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/sssd-client-2.12.0-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/83b0d541eaed2737ab42036d731df94094458b6f0fa39db2e23391b947d59ff0", + ], +) + +rpm( + name = "sssd-client-0__2.9.8-1.el9.aarch64", + sha256 = "09956d57874696e6e40d78536bb25326d1d798e206e468048d4a122aca8d193d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/sssd-client-2.9.8-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/09956d57874696e6e40d78536bb25326d1d798e206e468048d4a122aca8d193d", + ], +) + +rpm( + name = "sssd-client-0__2.9.8-1.el9.s390x", + sha256 = "6051a62aa35b330b7dc76f425317d06e10646cd6446682940258302697b1ce42", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/sssd-client-2.9.8-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/6051a62aa35b330b7dc76f425317d06e10646cd6446682940258302697b1ce42", + ], +) + +rpm( + name = "sssd-client-0__2.9.8-1.el9.x86_64", + sha256 = "d14fb246e49b57d5170d6eb6f916458b119d34a810d66c9b522da12fbcb35406", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/sssd-client-2.9.8-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d14fb246e49b57d5170d6eb6f916458b119d34a810d66c9b522da12fbcb35406", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.aarch64", + sha256 = "54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/54ab5545703dbce2156675bda5719e530beff7b62970824db3cc6db96648c3a5", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.s390x", + sha256 = "2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2eb083281ba5e1d44cea3325c50549202c44b8c1331a92fc0056625e54b6be74", + ], +) + +rpm( + name = "swtpm-0__0.8.0-2.el9.x86_64", + sha256 = "e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/e09635dac83f4f3d75b5b61bbe4879d013e38066c6cc07ab2b38bd355ff915ba", + ], +) + +rpm( + name = "swtpm-0__0.9.0-2.el10.aarch64", + sha256 = "2ab32944b56a5d288754d90a3758d667cdc3703631488a2c2f4ac357880bff0b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/swtpm-0.9.0-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/2ab32944b56a5d288754d90a3758d667cdc3703631488a2c2f4ac357880bff0b", + ], +) + +rpm( + name = "swtpm-0__0.9.0-2.el10.s390x", + sha256 = "4fc33cbd8611b571b7952968cd67999ca3d457f7d331290ed5850f70d292f89d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/swtpm-0.9.0-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/4fc33cbd8611b571b7952968cd67999ca3d457f7d331290ed5850f70d292f89d", + ], +) + +rpm( + name = "swtpm-0__0.9.0-2.el10.x86_64", + sha256 = "2754a70eda7d481964e28e610d493f0c705ae966e75dda10ee901a6cf2ef5919", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/swtpm-0.9.0-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2754a70eda7d481964e28e610d493f0c705ae966e75dda10ee901a6cf2ef5919", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.aarch64", + sha256 = "da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-libs-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/da68ca794b6517e3af94f9edfa815269b4a25446f39751a0d4abe7528a465fd5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.s390x", + sha256 = "2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-libs-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/2b6024dcaa008808c7c1b4b3409194db3d1813655aaaf399fe27ec6690c3f6c5", + ], +) + +rpm( + name = "swtpm-libs-0__0.8.0-2.el9.x86_64", + sha256 = "732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-libs-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/732895c380d3474aebda2c8fa3e2de1f5219fce246a188b936ed7f9a9e6077d3", + ], +) + +rpm( + name = "swtpm-libs-0__0.9.0-2.el10.aarch64", + sha256 = "e4233f1d21b64737a8c42fecaa652b2388b897a8748b416cf4bd599f30dd7fe2", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/swtpm-libs-0.9.0-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e4233f1d21b64737a8c42fecaa652b2388b897a8748b416cf4bd599f30dd7fe2", + ], +) + +rpm( + name = "swtpm-libs-0__0.9.0-2.el10.s390x", + sha256 = "2cd497257c5a03b6e579f3ada2bef874350a0fbb0aad78cff5d38e247af20c0f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/swtpm-libs-0.9.0-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/2cd497257c5a03b6e579f3ada2bef874350a0fbb0aad78cff5d38e247af20c0f", + ], +) + +rpm( + name = "swtpm-libs-0__0.9.0-2.el10.x86_64", + sha256 = "57b1c9b2ab6540e9504f32e1aa58331fc98ad9476e47b82907f42ab17ab5288a", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/swtpm-libs-0.9.0-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/57b1c9b2ab6540e9504f32e1aa58331fc98ad9476e47b82907f42ab17ab5288a", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.aarch64", + sha256 = "35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/swtpm-tools-0.8.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/35d142d4a3fbf02732a0ed0edaccd71399e34a19286ced7b00c0f5d79d4d3685", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.s390x", + sha256 = "81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/swtpm-tools-0.8.0-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/81e3af9e0ba27e5fc782df6a9177e84e8ee032f0b70bb68c97de8a3376cb91f1", + ], +) + +rpm( + name = "swtpm-tools-0__0.8.0-2.el9.x86_64", + sha256 = "8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/swtpm-tools-0.8.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8bb8baa44595a786df5d7309f03c309c4dd9ae288f0d444f371eaca42560ab97", + ], +) + +rpm( + name = "swtpm-tools-0__0.9.0-2.el10.aarch64", + sha256 = "7da6702303b52d8724152e1235f9e3a1eca4dbb7e2dc2ce51f0b32ac6e04aef9", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/swtpm-tools-0.9.0-2.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7da6702303b52d8724152e1235f9e3a1eca4dbb7e2dc2ce51f0b32ac6e04aef9", + ], +) + +rpm( + name = "swtpm-tools-0__0.9.0-2.el10.s390x", + sha256 = "764ead866ad117155085de09e2d0cf5c483ef9aeb134421ae5cc00892aed146e", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/swtpm-tools-0.9.0-2.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/764ead866ad117155085de09e2d0cf5c483ef9aeb134421ae5cc00892aed146e", + ], +) + +rpm( + name = "swtpm-tools-0__0.9.0-2.el10.x86_64", + sha256 = "4c16e59ac5ef48d0e83d6e0a83ba1838c25c6531fb3ef3564bf98643e1e70503", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/swtpm-tools-0.9.0-2.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4c16e59ac5ef48d0e83d6e0a83ba1838c25c6531fb3ef3564bf98643e1e70503", + ], +) + +rpm( + name = "systemd-0__252-51.el9.x86_64", + sha256 = "c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0", + urls = ["https://storage.googleapis.com/builddeps/c5e5ae6f65f085c9f811a2a7950920eecb0c7ddf3d82c3f63b5662231cfc5de0"], +) + +rpm( + name = "systemd-0__252-64.el9.aarch64", + sha256 = "5468eb07e3c5aa6f81e53a67a2cfaa76bb9eaa91a2054149c3eb47d27751c843", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5468eb07e3c5aa6f81e53a67a2cfaa76bb9eaa91a2054149c3eb47d27751c843", + ], +) + +rpm( + name = "systemd-0__252-64.el9.s390x", + sha256 = "5d61fb611b20b166e17d6f239535957939b5a021d9508f22d92cda060dd82fed", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/5d61fb611b20b166e17d6f239535957939b5a021d9508f22d92cda060dd82fed", + ], +) + +rpm( + name = "systemd-0__252-64.el9.x86_64", + sha256 = "845a3bc3e6bc8ca9e9d0f464b720aaf877860e013037fb410d872bc1d6d537d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/845a3bc3e6bc8ca9e9d0f464b720aaf877860e013037fb410d872bc1d6d537d7", + ], +) + +rpm( + name = "systemd-0__257-23.el10.aarch64", + sha256 = "4684bf8f477cd151d14eba31913a9e4f5a09612d96dd218f1c2d22bff4810300", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-0__257-23.el10.s390x", + sha256 = "375fd1c97eb57bc8c409d1906302b9e736fc1c5cb556f0854635d401ad754661", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-0__257-23.el10.x86_64", + sha256 = "ff0792bda28ac710de4e01c8d0d48bc592eff2cde037cf10c7dccae57b056d3e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-container-0__252-51.el9.x86_64", + sha256 = "653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde", + urls = ["https://storage.googleapis.com/builddeps/653fcd14047fb557e3a3f5da47c83d6ceb2194169f3ef42a27566bb4e2102dde"], +) + +rpm( + name = "systemd-container-0__252-64.el9.aarch64", + sha256 = "a85db64c78dac1e04435f0769c89a34084cf107e66e107267a94bd3c7532c294", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-container-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a85db64c78dac1e04435f0769c89a34084cf107e66e107267a94bd3c7532c294", + ], +) + +rpm( + name = "systemd-container-0__252-64.el9.s390x", + sha256 = "889bfeac74479f096d25e72d6d06b6715abc4b96f3969634f3256164673ed42b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-container-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/889bfeac74479f096d25e72d6d06b6715abc4b96f3969634f3256164673ed42b", + ], +) + +rpm( + name = "systemd-container-0__252-64.el9.x86_64", + sha256 = "730f7fbf6729e3cf4d9b0b56ca54b4ac960b0b297481cbccb4ae9287319c9615", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-container-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/730f7fbf6729e3cf4d9b0b56ca54b4ac960b0b297481cbccb4ae9287319c9615", + ], +) + +rpm( + name = "systemd-container-0__257-23.el10.aarch64", + sha256 = "7dde1f56f3e67618de6ea0a45a24dd3d12b7643498f3802275d36493baade015", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-container-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-container-0__257-23.el10.s390x", + sha256 = "70d4b61453fdff467a3c45972cefe2f81412c513426773e443341a43e0c9b9bb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-container-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-container-0__257-23.el10.x86_64", + sha256 = "47ffcef3faf64d7cc24824ed2d478de67f5add0ed2e504652c73ba8c2c8c6639", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-container-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-libs-0__252-51.el9.x86_64", + sha256 = "a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f", + urls = ["https://storage.googleapis.com/builddeps/a9d02a16bbc778ad3a2b46b8740fa821df065cdacd6ba8570c3301dacad79f0f"], +) + +rpm( + name = "systemd-libs-0__252-64.el9.aarch64", + sha256 = "e48bfbd29f6a1412de603e0cb5d9ac6d46515360841c1b8421c8e2b4871e3d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-libs-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e48bfbd29f6a1412de603e0cb5d9ac6d46515360841c1b8421c8e2b4871e3d04", + ], +) + +rpm( + name = "systemd-libs-0__252-64.el9.s390x", + sha256 = "8f232bee21b9fda85b9b9c69a14d348306620745f9b70261efc14a85e73f10f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-libs-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/8f232bee21b9fda85b9b9c69a14d348306620745f9b70261efc14a85e73f10f5", + ], +) + +rpm( + name = "systemd-libs-0__252-64.el9.x86_64", + sha256 = "df842cca567614bf20891234df566b3de3f008450a25a6e4b6031ac183e7d17d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-libs-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/df842cca567614bf20891234df566b3de3f008450a25a6e4b6031ac183e7d17d", + ], +) + +rpm( + name = "systemd-libs-0__257-23.el10.aarch64", + sha256 = "6f03fbfb279a1709e4bba64fef36e795fae2159bf74fac27e5a19c4090fd452e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-libs-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-libs-0__257-23.el10.s390x", + sha256 = "9029d9b583bb222bc5d0e2dcfec772d503ef9177128f89da73e8c59e68ced1eb", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-libs-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-libs-0__257-23.el10.x86_64", + sha256 = "42ad35c61c6d4d7cdbdbd2f4af668c18ae79968a569fc73dda74bac77c5be666", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-libs-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-pam-0__252-51.el9.x86_64", + sha256 = "26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03", + urls = ["https://storage.googleapis.com/builddeps/26014995c59a6d43c7cc0ba55b829cc14513491bc901fe60faf5a10b43c8fb03"], +) + +rpm( + name = "systemd-pam-0__252-64.el9.aarch64", + sha256 = "6f35935fafcc60a6eba0859f165ec411ee4b0b8ea6a8dd63100a2199165ca665", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-pam-252-64.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/6f35935fafcc60a6eba0859f165ec411ee4b0b8ea6a8dd63100a2199165ca665", + ], +) + +rpm( + name = "systemd-pam-0__252-64.el9.s390x", + sha256 = "d2d89235bf69a9c840ad71d36895a8454721356c22b9fefb405198075c0628e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-pam-252-64.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/d2d89235bf69a9c840ad71d36895a8454721356c22b9fefb405198075c0628e9", + ], +) + +rpm( + name = "systemd-pam-0__252-64.el9.x86_64", + sha256 = "1cf1fb13d6b5016b1d6c94de9e2149c7ea35fbaac9122dd1ac70f8ff24f9fd9b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-pam-252-64.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1cf1fb13d6b5016b1d6c94de9e2149c7ea35fbaac9122dd1ac70f8ff24f9fd9b", + ], +) + +rpm( + name = "systemd-pam-0__257-23.el10.aarch64", + sha256 = "9c3f19ef4f5d0124b8d4a0a159496a2a9ee14240e361a20de959d33e7d8d8436", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/systemd-pam-257-23.el10.aarch64.rpm", + ], +) + +rpm( + name = "systemd-pam-0__257-23.el10.s390x", + sha256 = "92d4541ed37d8fd9c1be28f81c37cea83e59a37faa04f7ac2914df6018f075af", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/systemd-pam-257-23.el10.s390x.rpm", + ], +) + +rpm( + name = "systemd-pam-0__257-23.el10.x86_64", + sha256 = "27345eb8c57d09df897f802c2dc96652db21e0ec62d51e78908af794ba90d4c7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/systemd-pam-257-23.el10.x86_64.rpm", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-51.el9.x86_64", + sha256 = "afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c", + urls = ["https://storage.googleapis.com/builddeps/afa84ccbac79bb3950cca69bbfa9868429ed3aa464c96f5b2a15405a9c49f56c"], +) + +rpm( + name = "systemd-rpm-macros-0__252-64.el9.aarch64", + sha256 = "3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/systemd-rpm-macros-252-64.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-64.el9.s390x", + sha256 = "3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/systemd-rpm-macros-252-64.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + ], +) + +rpm( + name = "systemd-rpm-macros-0__252-64.el9.x86_64", + sha256 = "3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/systemd-rpm-macros-252-64.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/3a6d7b3d25e5faf5c1514ff4bfdadac927a8c33c159d08707e5e631ee330ee0e", + ], +) + +rpm( + name = "tar-2__1.34-10.el9.aarch64", + sha256 = "84831858ad6cef9cbbb5aa63b383e399e71b7309ddd3e0bbba42b80738f9822e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tar-1.34-10.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/84831858ad6cef9cbbb5aa63b383e399e71b7309ddd3e0bbba42b80738f9822e", + ], +) + +rpm( + name = "tar-2__1.34-10.el9.s390x", + sha256 = "9f6c5294ffcbaeb67c6c2d0e4436118fadc7437c5396aa802cadd822d6284759", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tar-1.34-10.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/9f6c5294ffcbaeb67c6c2d0e4436118fadc7437c5396aa802cadd822d6284759", + ], +) + +rpm( + name = "tar-2__1.34-10.el9.x86_64", + sha256 = "449213355bb8fe15f9a9f8c29c0ec87458fc8959fb42bdcf678a63f32fee2505", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tar-1.34-10.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/449213355bb8fe15f9a9f8c29c0ec87458fc8959fb42bdcf678a63f32fee2505", + ], +) + +rpm( + name = "tar-2__1.34-7.el9.x86_64", + sha256 = "b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tar-1.34-7.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/b90b0e6f70433d3935b1dd45a3c10a40768950b5c9121545034179bd7b55159f", + ], +) + +rpm( + name = "tar-2__1.35-11.el10.aarch64", + sha256 = "9cea19adb21443f7c47330f99987348750c8a389fd42544f0d0b161a255d6b78", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/tar-1.35-11.el10.aarch64.rpm", + ], +) + +rpm( + name = "tar-2__1.35-11.el10.s390x", + sha256 = "69bc4390eb6bfc9b60c3243c764d301947a703128dd8ea53e3ed408e584b5ad1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/tar-1.35-11.el10.s390x.rpm", + ], +) + +rpm( + name = "tar-2__1.35-11.el10.x86_64", + sha256 = "c7461d8aa0cc1c9e51244356f4270a5384b220557d3131a5c6f146d6837f3e6d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/tar-1.35-11.el10.x86_64.rpm", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.aarch64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.s390x", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-1.el9.x86_64", + sha256 = "506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/target-restore-2.1.76-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/506d34ce73d61becd6190c0a86954e183c30e2d4efb873a4e258229812670ce3", + ], +) + +rpm( + name = "target-restore-0__2.1.76-12.el10.aarch64", + sha256 = "aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/target-restore-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + ], +) + +rpm( + name = "target-restore-0__2.1.76-12.el10.s390x", + sha256 = "aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/target-restore-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + ], +) + +rpm( + name = "target-restore-0__2.1.76-12.el10.x86_64", + sha256 = "aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/target-restore-2.1.76-12.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/aca595d2a389cf5be70543dbe4b428efdced6358fe31d59db7d2608bedfdbde5", + ], +) + +rpm( + name = "targetcli-0__2.1.57-3.el9.aarch64", + sha256 = "71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/targetcli-2.1.57-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + ], +) + +rpm( + name = "targetcli-0__2.1.57-3.el9.s390x", + sha256 = "71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/targetcli-2.1.57-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + ], +) + +rpm( + name = "targetcli-0__2.1.57-3.el9.x86_64", + sha256 = "71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/targetcli-2.1.57-3.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/71aee4574ecf55ca3dec350e1dee3f1188909b2b5430f23bb7352baad322e21f", + ], +) + +rpm( + name = "targetcli-0__2.1.58-5.el10.aarch64", + sha256 = "687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/targetcli-2.1.58-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + ], +) + +rpm( + name = "targetcli-0__2.1.58-5.el10.s390x", + sha256 = "687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/targetcli-2.1.58-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + ], +) + +rpm( + name = "targetcli-0__2.1.58-5.el10.x86_64", + sha256 = "687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/targetcli-2.1.58-5.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/687abcde3940a6867baf0ed5f204e383a731fd3d8023ca0672969b80f7a83422", + ], +) + +rpm( + name = "tpm2-tss-0__4.1.3-6.el10.aarch64", + sha256 = "22bdfcc4af5dd47fa52bad5f8ebca5d80f6caa6e548ad18c7c037899195d4bd3", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/tpm2-tss-4.1.3-6.el10.aarch64.rpm", + ], +) + +rpm( + name = "tpm2-tss-0__4.1.3-6.el10.s390x", + sha256 = "6c572b1029f932a26e9b4e6f15f2ab3554c13c0ec041ba9ffd4b525514ddee7d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/tpm2-tss-4.1.3-6.el10.s390x.rpm", + ], +) + +rpm( + name = "tpm2-tss-0__4.1.3-6.el10.x86_64", + sha256 = "95f4b1e56a2c511de79a18c0dd24a03b22175e8cc3d79c9cbd4eb4fd62207fbc", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/tpm2-tss-4.1.3-6.el10.x86_64.rpm", + ], +) + +rpm( + name = "tzdata-0__2025a-1.el9.x86_64", + sha256 = "655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025a-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/655945e6a0e95b960a422828bc1cb3bac2232fe9b76590e35ad00069097f087a", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el10.aarch64", + sha256 = "f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/tzdata-2025c-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el10.s390x", + sha256 = "f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/tzdata-2025c-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el10.x86_64", + sha256 = "f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/tzdata-2025c-1.el10.noarch.rpm", + "https://storage.googleapis.com/builddeps/f42431990a112a5a422eae042de7d28bd2e9d9a971d9082771962b18a2951846", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el9.aarch64", + sha256 = "a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/tzdata-2025c-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el9.s390x", + sha256 = "a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/tzdata-2025c-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + ], +) + +rpm( + name = "tzdata-0__2025c-1.el9.x86_64", + sha256 = "a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/tzdata-2025c-1.el9.noarch.rpm", + "https://storage.googleapis.com/builddeps/a7a70f4e8aa1473153235900a76753aef8f43a4c21eb869012bf4b065cc8b932", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-2.el9.aarch64", + sha256 = "90dbe1a0feb24693819fd890953bfafd24324a3b52722e782ae3d938f2a0a911", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/unbound-libs-1.24.2-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/90dbe1a0feb24693819fd890953bfafd24324a3b52722e782ae3d938f2a0a911", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-2.el9.s390x", + sha256 = "70e50eee29cf83a811f4ae1861a2fe2398caf01fa2efcc3a2cfc46cc01bebddc", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/unbound-libs-1.24.2-2.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/70e50eee29cf83a811f4ae1861a2fe2398caf01fa2efcc3a2cfc46cc01bebddc", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-2.el9.x86_64", + sha256 = "ba15a24c05f917d88acf555f77ac8fb5bd1de466d980fd58c4571809af53b1da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/unbound-libs-1.24.2-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ba15a24c05f917d88acf555f77ac8fb5bd1de466d980fd58c4571809af53b1da", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-7.el10.aarch64", + sha256 = "7ec96614c29a408d5ec4748822db054ca0bb44cb2706e7bf97e349beef9a7190", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/unbound-libs-1.24.2-7.el10.aarch64.rpm", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-7.el10.s390x", + sha256 = "8cdf1580c4e364b7113c92ac593c200fa2d95d8893b1505753a91d98845acd1d", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/unbound-libs-1.24.2-7.el10.s390x.rpm", + ], +) + +rpm( + name = "unbound-libs-0__1.24.2-7.el10.x86_64", + sha256 = "93606094853637132592f4b7d678ce2073ee2c5bd73a2bcb1dce208c629221ae", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/unbound-libs-1.24.2-7.el10.x86_64.rpm", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.aarch64", + sha256 = "3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/usbredir-0.13.0-2.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/3cbb5cb71c942e2f0a5780cba9f8ca69741b1b877c0835ed7ddfca85f9b3ddda", + ], +) + +rpm( + name = "usbredir-0__0.13.0-2.el9.x86_64", + sha256 = "7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/usbredir-0.13.0-2.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/7b6cec071b2d7437b70f8af875c127c00bd9b2e9d516ece64a9c30c96245394d", + ], +) + +rpm( + name = "usbredir-0__0.13.0-6.el10.aarch64", + sha256 = "12a672104464f85388819600c8b2e4eee38cdb67342107485183bc2076b54fe2", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/usbredir-0.13.0-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/12a672104464f85388819600c8b2e4eee38cdb67342107485183bc2076b54fe2", + ], +) + +rpm( + name = "usbredir-0__0.13.0-6.el10.x86_64", + sha256 = "11551f45b3e60a80530431dfcd5a1d29c5624d34aeaf86dcfd6bcd0a4f87337f", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/usbredir-0.13.0-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/11551f45b3e60a80530431dfcd5a1d29c5624d34aeaf86dcfd6bcd0a4f87337f", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.aarch64", + sha256 = "5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/userspace-rcu-0.12.1-6.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/5ab924e8c35535d0101a5e1cb732e63940ef7b4b35a5cd0b422bf53809876b56", + ], +) + +rpm( + name = "userspace-rcu-0__0.12.1-6.el9.x86_64", + sha256 = "119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/userspace-rcu-0.12.1-6.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/119e159428dda0e194c6428da57fae87ef75cce5c7271d347fe84283a7374c03", + ], +) + +rpm( + name = "userspace-rcu-0__0.14.0-7.el10.aarch64", + sha256 = "4c68e72d9cf6b3ae7b001c181998eeff4514058621e7517ebff26f315757c11d", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/userspace-rcu-0.14.0-7.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/4c68e72d9cf6b3ae7b001c181998eeff4514058621e7517ebff26f315757c11d", + ], +) + +rpm( + name = "userspace-rcu-0__0.14.0-7.el10.x86_64", + sha256 = "2ff9144b446e979b4d014fac8912e7ea9f9dbc2ebbe913c715629bf82aa34082", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/userspace-rcu-0.14.0-7.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2ff9144b446e979b4d014fac8912e7ea9f9dbc2ebbe913c715629bf82aa34082", + ], +) + +rpm( + name = "util-linux-0__2.37.4-21.el9.x86_64", + sha256 = "77f5aa59c85c1231bde7f64a7e348bb7b4675a04e385e219275abbd748037075", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/77f5aa59c85c1231bde7f64a7e348bb7b4675a04e385e219275abbd748037075", + ], +) + +rpm( + name = "util-linux-0__2.37.4-25.el9.aarch64", + sha256 = "619d39f84e40856b19475294d7e50417541261f852d5feeab75028a9a8f2fb20", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/619d39f84e40856b19475294d7e50417541261f852d5feeab75028a9a8f2fb20", + ], +) + +rpm( + name = "util-linux-0__2.37.4-25.el9.s390x", + sha256 = "46a49c017dd8aefaa0d2f9353ecde0477fb9acf048e8e5c9d99ebf404775de05", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/46a49c017dd8aefaa0d2f9353ecde0477fb9acf048e8e5c9d99ebf404775de05", + ], +) + +rpm( + name = "util-linux-0__2.37.4-25.el9.x86_64", + sha256 = "2d2b2ba4dea25b829031788e6afdc640412a42ac9b9e70a691aad219f744d0ec", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2d2b2ba4dea25b829031788e6afdc640412a42ac9b9e70a691aad219f744d0ec", + ], +) + +rpm( + name = "util-linux-0__2.40.2-18.el10.aarch64", + sha256 = "0783dd1aef58f3c0f36c4abecf9b1c1ce61466e060a3e83ddbf74d2ca3aadd57", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/util-linux-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "util-linux-0__2.40.2-18.el10.s390x", + sha256 = "3d5ddf516e9de282f1f210692bee3d3cffed7a26ad857f22cc37010f4bfa3f26", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/util-linux-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "util-linux-0__2.40.2-18.el10.x86_64", + sha256 = "297faca5213a8f9308d00f60126e18a1e5fcba6605dd52b77b42c285915ec91b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/util-linux-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-21.el9.x86_64", + sha256 = "1858fbea657a9edce414fd98b8260b37ef521769f06830fccc7831094ec04154", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.37.4-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1858fbea657a9edce414fd98b8260b37ef521769f06830fccc7831094ec04154", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-25.el9.aarch64", + sha256 = "a31732e9e6c968665ff53330435674fdaa12f9812b309bda9babb29e0d2ca62d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/util-linux-core-2.37.4-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a31732e9e6c968665ff53330435674fdaa12f9812b309bda9babb29e0d2ca62d", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-25.el9.s390x", + sha256 = "a9c0f4b1c76cc105f42d9763d7a7df522e76f3668086a9cbf2b8318a4a4688e5", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/util-linux-core-2.37.4-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/a9c0f4b1c76cc105f42d9763d7a7df522e76f3668086a9cbf2b8318a4a4688e5", + ], +) + +rpm( + name = "util-linux-core-0__2.37.4-25.el9.x86_64", + sha256 = "15c9e658afed9d50ce20908fd4080cd12042f4bf508f67b2ecbc889ae41c7414", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.37.4-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/15c9e658afed9d50ce20908fd4080cd12042f4bf508f67b2ecbc889ae41c7414", + ], +) + +rpm( + name = "util-linux-core-0__2.40.2-18.el10.aarch64", + sha256 = "594443d97e01900793341634651cd8c5aebdbba460c3802cda15981cbeeaf5c1", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/util-linux-core-2.40.2-18.el10.aarch64.rpm", + ], +) + +rpm( + name = "util-linux-core-0__2.40.2-18.el10.s390x", + sha256 = "f967830bf7495cabc4762f91e28ceb5eaeeb8577112e80d5d56abb4cf991c618", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/util-linux-core-2.40.2-18.el10.s390x.rpm", + ], +) + +rpm( + name = "util-linux-core-0__2.40.2-18.el10.x86_64", + sha256 = "e4b2e21e4b8e372f88f81acd417173f3a217fd7e95a6170c2c14b294142bc4b6", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/util-linux-core-2.40.2-18.el10.x86_64.rpm", + ], +) + +rpm( + name = "vim-data-2__9.1.083-8.el10.aarch64", + sha256 = "94b8e2937e8b1268914528e978929e9138f3ab3c7f107eb87fd422e417edac0e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/vim-data-9.1.083-8.el10.noarch.rpm", + ], +) + +rpm( + name = "vim-data-2__9.1.083-8.el10.s390x", + sha256 = "94b8e2937e8b1268914528e978929e9138f3ab3c7f107eb87fd422e417edac0e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/vim-data-9.1.083-8.el10.noarch.rpm", + ], +) + +rpm( + name = "vim-data-2__9.1.083-8.el10.x86_64", + sha256 = "94b8e2937e8b1268914528e978929e9138f3ab3c7f107eb87fd422e417edac0e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/vim-data-9.1.083-8.el10.noarch.rpm", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-21.el9.x86_64", + sha256 = "1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-21.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/1b15304790e4b2e7d4ff378b7bf0363b6ecb1c852fc42f984267296538de0c16", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-25.el9.aarch64", + sha256 = "d0aae74ac54fc5234c436d42899cd5c2be1ea9646b9fb58f84a35c71f5196339", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/vim-minimal-8.2.2637-25.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/d0aae74ac54fc5234c436d42899cd5c2be1ea9646b9fb58f84a35c71f5196339", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-25.el9.s390x", + sha256 = "31583b0d5c3a1b7d50497f1aae5bc679a1b57a1f76cf54b554cb20f1e7792a6a", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/vim-minimal-8.2.2637-25.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/31583b0d5c3a1b7d50497f1aae5bc679a1b57a1f76cf54b554cb20f1e7792a6a", + ], +) + +rpm( + name = "vim-minimal-2__8.2.2637-25.el9.x86_64", + sha256 = "a7b4f3621e2e64fae37ae18e78930ae13d3ff78f40fd18598e914bf2eed0c443", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/vim-minimal-8.2.2637-25.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/a7b4f3621e2e64fae37ae18e78930ae13d3ff78f40fd18598e914bf2eed0c443", + ], +) + +rpm( + name = "vim-minimal-2__9.1.083-8.el10.aarch64", + sha256 = "5dfefb6f7ad8a74dce3d949186c786696d9952b1b36d0cfd5b5ef4cbac60e2f2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/vim-minimal-9.1.083-8.el10.aarch64.rpm", + ], +) + +rpm( + name = "vim-minimal-2__9.1.083-8.el10.s390x", + sha256 = "67d40bfbc864cee9b0e0196a20d08c589ca2a75fb7921af4e5e20189dc02732f", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/vim-minimal-9.1.083-8.el10.s390x.rpm", + ], +) + +rpm( + name = "vim-minimal-2__9.1.083-8.el10.x86_64", + sha256 = "59c8f2f3685dfe987fffea7608fbadc1a268fb3379f22d7f5d7f6109cdf05094", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/vim-minimal-9.1.083-8.el10.x86_64.rpm", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.aarch64", + sha256 = "7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/virtiofsd-1.13.0-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7b1503b55bc88dd4af2a2dd7d44d0d36a7f80ae4765baf353fa2a03bb9482b12", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.s390x", + sha256 = "4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/virtiofsd-1.13.0-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/4b1912675a305a39f0ffa047a1d6745a7fff22304b08d064979f014771b64bbe", + ], +) + +rpm( + name = "virtiofsd-0__1.13.0-1.el9.x86_64", + sha256 = "531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/virtiofsd-1.13.0-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/531c66110a700566b703da037abda2b32a1860a7fa615c54ef645dcfffeaf9bd", + ], +) + +rpm( + name = "virtiofsd-0__1.13.3-1.el10.aarch64", + sha256 = "ad5eec8ff18d9610a2eff000406908876ea1b1af69cbf97c396b74efc65d54dd", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/virtiofsd-1.13.3-1.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/ad5eec8ff18d9610a2eff000406908876ea1b1af69cbf97c396b74efc65d54dd", + ], +) + +rpm( + name = "virtiofsd-0__1.13.3-1.el10.s390x", + sha256 = "a9bd279fd632f35e33ba50593ab833ec2673878ec8e54a45d7e8e20c61fa7ed4", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/virtiofsd-1.13.3-1.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/a9bd279fd632f35e33ba50593ab833ec2673878ec8e54a45d7e8e20c61fa7ed4", + ], +) + +rpm( + name = "virtiofsd-0__1.13.3-1.el10.x86_64", + sha256 = "fa45976edcd696c9fcda96b0c47b1e91d7c59ae83f5616bd047a0bad6b0be0ae", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/virtiofsd-1.13.3-1.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/fa45976edcd696c9fcda96b0c47b1e91d7c59ae83f5616bd047a0bad6b0be0ae", + ], +) + +rpm( + name = "which-0__2.21-29.el9.x86_64", + sha256 = "c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-29.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/c69af7b876363091bbeb99b4adfbab743f91da3c45478bb7a055c441e395174d", + ], +) + +rpm( + name = "which-0__2.21-30.el9.aarch64", + sha256 = "e31074fa3d7bbfb387f7d6d2c97988069594a6cd6c0bd7c798036a4f8ed7ab48", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/which-2.21-30.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e31074fa3d7bbfb387f7d6d2c97988069594a6cd6c0bd7c798036a4f8ed7ab48", + ], +) + +rpm( + name = "which-0__2.21-30.el9.s390x", + sha256 = "671cebde29b96ff50fd35e09b867505721144b4507c1c81ee60276f7c14f8723", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/which-2.21-30.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/671cebde29b96ff50fd35e09b867505721144b4507c1c81ee60276f7c14f8723", + ], +) + +rpm( + name = "which-0__2.21-30.el9.x86_64", + sha256 = "d602350243d5950c473624788e78e783461e5db242cc0a2d7a988e1b9a3e079b", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/which-2.21-30.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/d602350243d5950c473624788e78e783461e5db242cc0a2d7a988e1b9a3e079b", + ], +) + +rpm( + name = "which-0__2.21-44.el10.aarch64", + sha256 = "369a215b68f7dd87ce2b0c7be20425b63a19ba8b18a74775b474a717524388fe", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/which-2.21-44.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/369a215b68f7dd87ce2b0c7be20425b63a19ba8b18a74775b474a717524388fe", + ], +) + +rpm( + name = "which-0__2.21-44.el10.s390x", + sha256 = "93c0edc58db280e4bcc7a7568fc9eb935a27666fea4659c0de6aa93e1017d0d7", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/which-2.21-44.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/93c0edc58db280e4bcc7a7568fc9eb935a27666fea4659c0de6aa93e1017d0d7", + ], +) + +rpm( + name = "which-0__2.21-44.el10.x86_64", + sha256 = "8817b5d8ce0a8a07e38daa93a72d0cca53934e1631322b990d389ccb34376e1c", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/which-2.21-44.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8817b5d8ce0a8a07e38daa93a72d0cca53934e1631322b990d389ccb34376e1c", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.aarch64", + sha256 = "e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/xorriso-1.5.4-5.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/e9413affb36cac66415d4a3c6ab0a787f96c0ab2ebeac84d5336a98f286156ba", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.s390x", + sha256 = "35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/xorriso-1.5.4-5.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/35a558dc2a2e221e46c5e2a9f04886f9f77cb42d6f8116834760926648c9a70d", + ], +) + +rpm( + name = "xorriso-0__1.5.4-5.el9.x86_64", + sha256 = "15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorriso-1.5.4-5.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/15e4269000f4f3dc15046fca6a4d80077ba8a2f5e74c095b9d6e0007aa78c251", + ], +) + +rpm( + name = "xorriso-0__1.5.6-6.el10.aarch64", + sha256 = "8e152db322abfb8b173f703a0af4be1ef294abeb3dd78da974f800b074a06530", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/Packages/xorriso-1.5.6-6.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/8e152db322abfb8b173f703a0af4be1ef294abeb3dd78da974f800b074a06530", + ], +) + +rpm( + name = "xorriso-0__1.5.6-6.el10.s390x", + sha256 = "ab7d3d43d22e8a4920453c73de0e60dbc3df69ab28042cad271df8a51cfa0b4b", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/s390x/os/Packages/xorriso-1.5.6-6.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/ab7d3d43d22e8a4920453c73de0e60dbc3df69ab28042cad271df8a51cfa0b4b", + ], +) + +rpm( + name = "xorriso-0__1.5.6-6.el10.x86_64", + sha256 = "2077b91e476836bec242f0fbf4a83384bfc785e9531bedb81ee825936105b017", + urls = [ + "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/Packages/xorriso-1.5.6-6.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/2077b91e476836bec242f0fbf4a83384bfc785e9531bedb81ee825936105b017", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.aarch64", + sha256 = "c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c543b995056f118a141b499548ad00e566cc2062da2c36b2fc1e1b058c81dec1", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.s390x", + sha256 = "e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/e3bbe47e750775943bace76db54b52b08ed2a572ec3fe2aac200661fc54dd001", + ], +) + +rpm( + name = "xz-0__5.2.5-8.el9.x86_64", + sha256 = "159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/159f0d11b5a78efa493b478b0c2df7ef42a54a9710b32dba9f94dd73eb333481", + ], +) + +rpm( + name = "xz-1__5.6.2-4.el10.aarch64", + sha256 = "7bf62608392ae9fd5dd59add39723086f5a052c2064e0498c1641c572cd46460", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/xz-5.6.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/7bf62608392ae9fd5dd59add39723086f5a052c2064e0498c1641c572cd46460", + ], +) + +rpm( + name = "xz-1__5.6.2-4.el10.s390x", + sha256 = "37e1052ce13b55ef1f4e33a8997728963f51c76223d165e2534f0cd6e8f9ba59", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/xz-5.6.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/37e1052ce13b55ef1f4e33a8997728963f51c76223d165e2534f0cd6e8f9ba59", + ], +) + +rpm( + name = "xz-1__5.6.2-4.el10.x86_64", + sha256 = "dc71c8e5b558c9f9fdea14a7d38819fc12ad8bdcb6834989188b225ca191eded", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/xz-5.6.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/dc71c8e5b558c9f9fdea14a7d38819fc12ad8bdcb6834989188b225ca191eded", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.aarch64", + sha256 = "99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/xz-libs-5.2.5-8.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/99784163a31515239be42e68608478b8337fd168cdb12bcba31de9dd78e35a25", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.s390x", + sha256 = "f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/xz-libs-5.2.5-8.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/f5df58b242361ae5aaf97d1149c4331cc762394cadb5ebd054db089a6e10ae24", + ], +) + +rpm( + name = "xz-libs-0__5.2.5-8.el9.x86_64", + sha256 = "ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/xz-libs-5.2.5-8.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/ff3c88297d75c51a5f8e9d2d69f8ad1eaf8347e20920b4335a3e0fc53269ad28", + ], +) + +rpm( + name = "xz-libs-1__5.6.2-4.el10.aarch64", + sha256 = "fcf207b0e6fe443fafe62fa43fc44ce16c8c118dd5e69491b3ad4b9eda72cc61", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/xz-libs-5.6.2-4.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/fcf207b0e6fe443fafe62fa43fc44ce16c8c118dd5e69491b3ad4b9eda72cc61", + ], +) + +rpm( + name = "xz-libs-1__5.6.2-4.el10.s390x", + sha256 = "7edd13c2a8dfb66b1e8c8a0d1d9259a1ff5cfb4891d568cc8f990664a02f7e32", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/xz-libs-5.6.2-4.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/7edd13c2a8dfb66b1e8c8a0d1d9259a1ff5cfb4891d568cc8f990664a02f7e32", + ], +) + +rpm( + name = "xz-libs-1__5.6.2-4.el10.x86_64", + sha256 = "21733e8b6bf26b20633618adb074706972479080527f3f7a51246e83b3d4342e", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/xz-libs-5.6.2-4.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/21733e8b6bf26b20633618adb074706972479080527f3f7a51246e83b3d4342e", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.aarch64", + sha256 = "c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zlib-1.2.11-41.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/c50e107cdd35460294852d99c954296e0e833d37852a1be1e2aaea2f1b48f9d2", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.s390x", + sha256 = "bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zlib-1.2.11-41.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/bbe95dadf7383694d5b13ea8ae89b76697ed7009b4be889220d4a7d23db28759", + ], +) + +rpm( + name = "zlib-0__1.2.11-41.el9.x86_64", + sha256 = "370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zlib-1.2.11-41.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/370951ea635bc16313f21ac2823ec815147ed1124b74865a34c54e94e4db9602", + ], +) + +rpm( + name = "zlib-ng-compat-0__2.2.3-3.el10.aarch64", + sha256 = "a7870bf73b68086ae1fdd3e2fb6191bf79dff1ab5ae16b907efbb0befe590dca", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/zlib-ng-compat-2.2.3-3.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/a7870bf73b68086ae1fdd3e2fb6191bf79dff1ab5ae16b907efbb0befe590dca", + ], +) + +rpm( + name = "zlib-ng-compat-0__2.2.3-3.el10.s390x", + sha256 = "89c8decb9febd474ba2f3fbb38c37577dd7098b349a9e766267723fb94f25962", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/zlib-ng-compat-2.2.3-3.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/89c8decb9febd474ba2f3fbb38c37577dd7098b349a9e766267723fb94f25962", + ], +) + +rpm( + name = "zlib-ng-compat-0__2.2.3-3.el10.x86_64", + sha256 = "8fe3c2d5203810828fa3e4a5d84ae53172ffd27f4f0eec9d192b42b187795c09", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/zlib-ng-compat-2.2.3-3.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/8fe3c2d5203810828fa3e4a5d84ae53172ffd27f4f0eec9d192b42b187795c09", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.aarch64", + sha256 = "bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/zstd-1.5.5-1.el9.aarch64.rpm", + "https://storage.googleapis.com/builddeps/bdb442cb624d05b2da828d0894ed8440d53baa3e1523cc37e2598a3dda0193bd", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.s390x", + sha256 = "09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/zstd-1.5.5-1.el9.s390x.rpm", + "https://storage.googleapis.com/builddeps/09c2cb5f2226cf3e8d084d68cd99b14989e3fabf0860959e71823cb72cf75b13", + ], +) + +rpm( + name = "zstd-0__1.5.5-1.el9.x86_64", + sha256 = "6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/zstd-1.5.5-1.el9.x86_64.rpm", + "https://storage.googleapis.com/builddeps/6635550f3a87a734a069b3598e33a16174d14dca3ca52b9ef4bff78ea6f91c16", + ], +) + +rpm( + name = "zstd-0__1.5.5-9.el10.aarch64", + sha256 = "b45bf236f2a5a034295eb933b3c056b302785fa122ecba44b98fec6d2d8b39a2", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/aarch64/os/Packages/zstd-1.5.5-9.el10.aarch64.rpm", + "https://storage.googleapis.com/builddeps/b45bf236f2a5a034295eb933b3c056b302785fa122ecba44b98fec6d2d8b39a2", + ], +) + +rpm( + name = "zstd-0__1.5.5-9.el10.s390x", + sha256 = "def19135b3b6f01e46d9ee17e69ae1227e9addaf1fcd231596836000917fe393", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/s390x/os/Packages/zstd-1.5.5-9.el10.s390x.rpm", + "https://storage.googleapis.com/builddeps/def19135b3b6f01e46d9ee17e69ae1227e9addaf1fcd231596836000917fe393", + ], +) + +rpm( + name = "zstd-0__1.5.5-9.el10.x86_64", + sha256 = "4ef415b98ddbe28f836b86699f4cec6002817ea20fb47499d3c6bb0814db6d4b", + urls = [ + "http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/Packages/zstd-1.5.5-9.el10.x86_64.rpm", + "https://storage.googleapis.com/builddeps/4ef415b98ddbe28f836b86699f4cec6002817ea20fb47499d3c6bb0814db6d4b", + ], +) + +# EDV dependency - START +http_file( + name = "custom-qemu", + downloaded_file_path = "qemu-kvm", + sha256 = "", + urls = [ + "file:///root/go/src/kubevirt.io/kubevirt/build/qemu-system-x86_64", + ], +) + +rpm( + name = "SDL2-0__2.26.0-1.el9.x86_64", + sha256 = "554ca63ca5c87170e907ae2f5182ea62e637006a8c5df229a4b4f9270ac23bd7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/SDL2-2.26.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "adwaita-cursor-theme-0__40.1.1-3.el9.x86_64", + sha256 = "709ea6715775ca94032d8b49148894185263397eaaea147a15da917556da3ea6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-cursor-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "adwaita-icon-theme-0__40.1.1-3.el9.x86_64", + sha256 = "a27bbc0988dd63b0ba8af01f42f2f6486cab6bf9a13077e6c5e542efaf5c793b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/adwaita-icon-theme-40.1.1-3.el9.noarch.rpm", + ], +) + +rpm( + name = "alsa-lib-0__1.2.13-2.el9.x86_64", + sha256 = "7b8bca6c63f0e08f6f06b941b073db319de2278fb7b2b99676a3261ac5d51e30", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/alsa-lib-1.2.13-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-0__2.38.0-4.el9.x86_64", + sha256 = "03e55a72bfb0776ba6a37dbc983ca25967ebc90da13022c1d159c47984284c6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-atk-devel-0__2.38.0-4.el9.x86_64", + sha256 = "9d253f023dbdd8c52a300c44edd06b0d67ad2c72f76d02bdc5d94687d7277aa4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-atk-devel-2.38.0-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-0__2.40.3-1.el9.x86_64", + sha256 = "df9b259bf65606248af738a8a70c35d7612e6ed9ba0cf3935930e35c7882bae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "at-spi2-core-devel-0__2.40.3-1.el9.x86_64", + sha256 = "d6410a0eeacb9e6bd22e891d1803fe838b339e0d91fe0068a11d94eb1d4262db", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/at-spi2-core-devel-2.40.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-0__2.36.0-5.el9.x86_64", + sha256 = "e0d28335d140043d1f2c7b052fdaad8428b1deacbfac3d1174890a176312bdd5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "atk-devel-0__2.36.0-5.el9.x86_64", + sha256 = "36bd7fda07c3f65e5daab91fc9ab2936b95f3f141d9522795820601ad9df18a3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/atk-devel-2.36.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "avahi-libs-0__0.8-22.el9.x86_64", + sha256 = "a50f286097400810fa026edd4128acd9e162d8209dbb4d90caa8661ce1bad7e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/avahi-libs-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "bluez-libs-0__5.72-4.el9.x86_64", + sha256 = "db99a11d01ee64912bad50211e5ce75f9c7a8101e8ca7a3c22ea1f33df14d6eb", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bluez-libs-5.72-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-iostreams-0__1.75.0-11.el9.x86_64", + sha256 = "569e83f709ee0f507adaa9aefb455945742c2007fb8707c9e6b18467cc85a4ea", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-iostreams-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-system-0__1.75.0-11.el9.x86_64", + sha256 = "5f69c1f1086c06e1aa2c7935197097fc82fcd2736f254dfaf0789038d1725716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-system-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "boost-thread-0__1.75.0-11.el9.x86_64", + sha256 = "cf64248b3e12185189abdc16c6f65bdfa991d183c917603968e54d1146177e3d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/boost-thread-1.75.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "brlapi-0__0.8.2-4.el9.x86_64", + sha256 = "0db4f2ec753e47873a49ab907838cee0f815b74989425a6dc124406002a47c8e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brlapi-0.8.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-0__1.0.9-7.el9.x86_64", + sha256 = "6f3aeb611b3d80a031592d7eb54e1606100d4fdf3c94c368784c79b6cfd52d96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "brotli-devel-0__1.0.9-7.el9.x86_64", + sha256 = "40ee3f8fe83b5e16d6797f0cd4a3722c41c8fd4a5a2d0a2c6b41622cf29f87c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/brotli-devel-1.0.9-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "bzip2-devel-0__1.0.8-10.el9.x86_64", + sha256 = "1a9ddc7fb11abbb14f3b53697808aab021934800f0fd5947ecdcc560c70d625a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/bzip2-devel-1.0.8-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-0__1.17.4-7.el9.x86_64", + sha256 = "5f5177fd5b3ed4ffdf218f730e85af73c223b09f759e47b1c7f2df05d8f87655", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-devel-0__1.17.4-7.el9.x86_64", + sha256 = "e34ac60cd4006a904a835be11aa0849fcce7b3c53219b7dddc8f4b007b1302da", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-0__1.17.4-7.el9.x86_64", + sha256 = "2329c39bdde48e1c2f0f64cfebb7edd92ea5188be374396402e03e876d06ad02", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cairo-gobject-devel-0__1.17.4-7.el9.x86_64", + sha256 = "77613065496f7f097b7d85a74bee729eb1dd965eb59842c1bb3a5c127198e533", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cairo-gobject-devel-1.17.4-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "cmake-filesystem-0__3.26.5-2.el9.x86_64", + sha256 = "4a3c39e721eb1c01bf5e421262c2f10f9ed6b7e987fd2f9c510d309e2b023222", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/cmake-filesystem-3.26.5-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "colord-libs-0__1.4.5-4.el9.x86_64", + sha256 = "01af031bc42f35cad5f435fde26b969da0d659b8309caeaff76a66d8f29335d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/colord-libs-1.4.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cryptsetup-libs-0__2.7.2-4.el9.x86_64", + sha256 = "2249560ee705ab561670f4086a5babbd0e29ee38512a2c0a739ce4eaf34e3892", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.7.2-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "cups-libs-1__2.3.3op2-33.el9.x86_64", + sha256 = "0d8ae6703b6d5696b3e547ab2557f649e439704cc449f680ed3c01b5dc339627", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/cups-libs-2.3.3op2-33.el9.x86_64.rpm", + ], +) + +rpm( + name = "dbus-devel-1__1.12.20-8.el9.x86_64", + sha256 = "9114eef0c3eea868948bb9f2e807d5aeefac3ab013a7f3dd176c4e165cf0c2be", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/dbus-devel-1.12.20-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "dejavu-sans-fonts-0__2.37-18.el9.x86_64", + sha256 = "aaff108008e6ba95800e40a53f81c7c3ba7d346325e602db187884032848151e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/dejavu-sans-fonts-2.37-18.el9.noarch.rpm", + ], +) + +rpm( + name = "elfutils-libelf-devel-0__0.193-1.el9.x86_64", + sha256 = "152bbdef776d9448bc92d4cad14137206e717389d0d67a2048567f69a2b6df96", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/elfutils-libelf-devel-0.193-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "fdk-aac-free-0__2.0.0-8.el9.x86_64", + sha256 = "dd7f3619a5a7b5a68f1ea8275afda8ec6ec9a218fa9d0ab5229f3cc5a11095fa", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fdk-aac-free-2.0.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "flac-libs-0__1.3.3-12.el9.x86_64", + sha256 = "603ef65286c8a0e7a498b7e2a79c8259075b6052731a626b47433cb4aa868457", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/flac-libs-1.3.3-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-0__2.14.0-2.el9.x86_64", + sha256 = "54675062b2254c9fedc04423c171b95a3dfa7226896a05a70c06ecc5af8b31c9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "fontconfig-devel-0__2.14.0-2.el9.x86_64", + sha256 = "861c4215221bc6a4fe4f10b5321b23aaff11f47e3e44d7407b972ed424d6e2ed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fontconfig-devel-2.14.0-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-0__2.10.4-11.el9.x86_64", + sha256 = "9f134e7db3966162cd0373fee28e23795cd316f8ce2894d99890750e971eb7c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/freetype-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "freetype-devel-0__2.10.4-11.el9.x86_64", + sha256 = "a20eba25ea73dc4e7dd26b4b06c7af82b94e8a587d44eb1f91e7ed336ff82e04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/freetype-devel-2.10.4-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-0__1.0.10-6.el9.2.x86_64", + sha256 = "f5557a876e6517ebf020f9295bee7890cfb92a8a800a56d19729f413ce50e4ef", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fribidi-devel-0__1.0.10-6.el9.2.x86_64", + sha256 = "e12f772ada49ce459ae47383107c46eee5d156bb348c51158b9889c3cf9e52b7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fribidi-devel-1.0.10-6.el9.2.x86_64.rpm", + ], +) + +rpm( + name = "fuse3-libs-0__3.10.2-9.el9.x86_64", + sha256 = "f9620a11fddf8e66cfec9f78d335e2a5af29793b96ee8740d297102cc7a8cb34", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/fuse3-libs-3.10.2-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-0__2.42.6-4.el9.x86_64", + sha256 = "5bb9c411959293833a67a25d7d3b31a0fa37910d5bec01c219fd807b01915b88", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64", + sha256 = "8af5eb3da4cec1e95fbb63f2b03e6ad3990c612039e8678f14380ed678751853", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-devel-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64", + sha256 = "9612e4a738d0e54ad9ef039af0401e1bf2ea3808a981659d22a48fdc440c423b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gdk-pixbuf2-modules-2.42.6-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "glib2-devel-0__2.68.4-16.el9.x86_64", + sha256 = "7b248800aef3307e0d9c83e49e19e24a3c3953c2f2322de4c9ae7d852089778c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/glib2-devel-2.68.4-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-0__1.3.14-9.el9.x86_64", + sha256 = "911ac19b0b08a9162959f8cee202bb62da5a0f1dd32fc54086bd7d08f9a89f23", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/graphite2-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "graphite2-devel-0__1.3.14-9.el9.x86_64", + sha256 = "d3dc72e393e1fd8a30491bffa4c9a825c615f4d7a7e47affb7b2378796521a3c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/graphite2-devel-1.3.14-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "gsm-0__1.0.19-6.el9.x86_64", + sha256 = "d4c242d54a503c80c07467b68e212986fdb65e4afb8487150143b4490b05177c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gsm-1.0.19-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk-update-icon-cache-0__3.24.31-5.el9.x86_64", + sha256 = "91ac46ed1e4bac38f5e0457635873916fee31adeef9fdfdec63ad7d9c34f4a15", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk-update-icon-cache-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-0__3.24.31-5.el9.x86_64", + sha256 = "37886175fbb321f4bb4102556d5163d87e0adfd07fcc7ec43f0b2452c4a2c547", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "gtk3-devel-0__3.24.31-5.el9.x86_64", + sha256 = "bb3a014b6a7da8a5662d56a7e516cd18108fe75981adcdfa536ecd79a99b4ddd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/gtk3-devel-3.24.31-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-0__2.7.4-10.el9.x86_64", + sha256 = "e0ba0095c24ee9c5239474257c3e516ac354c6605bc8e3b9bafaf2899b61b014", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/harfbuzz-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-devel-0__2.7.4-10.el9.x86_64", + sha256 = "5a08518d7bcf59a59d8b4ce5687719fb1d94f9c2afd53e54e9d2b7326d0cf81c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-devel-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "harfbuzz-icu-0__2.7.4-10.el9.x86_64", + sha256 = "d536701878b2fad3217b51141422038a9c80aff3cf508c13d5bef22d18e5ddff", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/harfbuzz-icu-2.7.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "hicolor-icon-theme-0__0.17-13.el9.x86_64", + sha256 = "835d0f243f99bc01d9f6320638ab74ad70ec990d1bc9ba8f7bc141c582a797f8", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/hicolor-icon-theme-0.17-13.el9.noarch.rpm", + ], +) + +rpm( + name = "jbigkit-libs-0__2.1-23.el9.x86_64", + sha256 = "3731d07853beeeb76ef22e9a1f323802e74286b779a910af84d52b131f1662b9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/jbigkit-libs-2.1-23.el9.x86_64.rpm", + ], +) + +rpm( + name = "langpacks-core-font-en-0__3.0-16.el9.x86_64", + sha256 = "95eb748d83b9373adb17813fc207aad5dd9ea1401d67ef970dd97c6d188c6844", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/langpacks-core-font-en-3.0-16.el9.noarch.rpm", + ], +) + +rpm( + name = "lcms2-0__2.12-3.el9.x86_64", + sha256 = "c60dfc4f79ab8b9f87ebc869e3db624c87438a2be9a925b16b44bfb855c4acac", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/lcms2-2.12-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkio-0__1.5.0-1.el9.x86_64", + sha256 = "e87b93f549a0005c978eea5fea29931f1dcf77f96abccbb7ac3ca984e3eb45c0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkio-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-0__1.7.0-11.el9.x86_64", + sha256 = "aae2ba2318b43f524d19abec471ca24961a6224f9400e0a8ab80707428766928", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-common-0__1.7.0-11.el9.x86_64", + sha256 = "1e8433f60ea9aa68029a98f121ccdca8a4b21faf263e552770167d5733eda5f3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-common-1.7.0-11.el9.noarch.rpm", + ], +) + +rpm( + name = "libX11-devel-0__1.7.0-11.el9.x86_64", + sha256 = "87e790b99d5170c2c105b090dc601525a3b3125ff5fb59686ff633260a3f6ede", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-devel-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libX11-xcb-0__1.7.0-11.el9.x86_64", + sha256 = "3d7effa1288251b34cef86e49ed56e023354e6bc7055d94e0ba71e12fa7b1774", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libX11-xcb-1.7.0-11.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-0__1.0.9-8.el9.x86_64", + sha256 = "a0c14be959891eaff9097c1ec4d7c4b044301623d4080585cee72d740cd659ae", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXau-devel-0__1.0.9-8.el9.x86_64", + sha256 = "ff56ea9a25095b8345a90c7cf91ac72ce566573a396b935ae155bd28278b9e5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXau-devel-1.0.9-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-0__0.4.5-7.el9.x86_64", + sha256 = "fd7f5a54ff439c62583ca92b733995d1472cdf3bc3eeb5c4570bf78d7067307d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcomposite-devel-0__0.4.5-7.el9.x86_64", + sha256 = "6914a12df8fdd44f869d2a0a6ac4216e4b6a15cb56c87e7be2da0101e6def925", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcomposite-devel-0.4.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-0__1.2.0-7.el9.x86_64", + sha256 = "9c73249287c325db9721789a1468dc63c2c6910fadd6876d37b8132063d3fe98", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXcursor-devel-0__1.2.0-7.el9.x86_64", + sha256 = "dda8c70b042b12210b24fdd63719e31b0650870f6270ad8a860da2e3bbfb6846", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXcursor-devel-1.2.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-0__1.1.5-7.el9.x86_64", + sha256 = "46f527879c8821ac8353c0616a8f21d0d500584f316d19fbb2c555f52c96c6cf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXdamage-devel-0__1.1.5-7.el9.x86_64", + sha256 = "e2bf2992316aeb77b25cffc63a3d73a972a2c548cad0f08e6d62fbd1d0fa68f9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXdamage-devel-1.1.5-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-0__1.3.4-8.el9.x86_64", + sha256 = "3714ed495275ffee5a8d374ae401cdef2c7bd30d2aebf90aecf4f1be8d6f896d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXext-devel-0__1.3.4-8.el9.x86_64", + sha256 = "a17c0bc8c1263ca9f42c713fa7da4e3786c0ab27379c0da5f3a726a09ff6ee22", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXext-devel-1.3.4-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-0__5.0.3-16.el9.x86_64", + sha256 = "309d12ca62069d02b6cf9d96d8d97de6b0267134ffd4b6952adc561269c8c9ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXfixes-devel-0__5.0.3-16.el9.x86_64", + sha256 = "3701f2806eaae708953e86dc5d7880809ad332234c8d7a079809f5fb3bd29a5a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXfixes-devel-5.0.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-0__2.3.3-8.el9.x86_64", + sha256 = "71c5ae479bb4a02a9c18901148a50cf07b192ef85dffa16e0187cf524364b466", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXft-devel-0__2.3.3-8.el9.x86_64", + sha256 = "d742f0ae22af703195d7dbf82424e0520675528421b50ffa3dee1d804f372e25", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXft-devel-2.3.3-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-0__1.7.10-8.el9.x86_64", + sha256 = "39b2cace8d69e83f56db672295e96641e39e83f4aed4b6c8e4c8fb20e6459a13", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXi-devel-0__1.7.10-8.el9.x86_64", + sha256 = "4a8ee020699bd4bc84ef56edafc31a038663784d83c12be6e5b96ce16045e970", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXi-devel-1.7.10-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-0__1.1.4-10.el9.x86_64", + sha256 = "e53e69f3f5a5f13a899e804c428bd97239ffff5bec55bb0844346683b11b4f0f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXinerama-devel-0__1.1.4-10.el9.x86_64", + sha256 = "c53ed1fdeb74e2cc3459a0c56b93e52d1f82c1b812afab569bbfa094fce1ee77", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXinerama-devel-1.1.4-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-0__1.5.2-8.el9.x86_64", + sha256 = "fb0833176306c00bfb8a3f974ac807e8d702cd6ccdb7910ce9dff63f647e924c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrandr-devel-0__1.5.2-8.el9.x86_64", + sha256 = "2e7e15e3f2ce8806baa30a3153f731ebe6729cb4149df26c123fe354db2b6685", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrandr-devel-1.5.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-0__0.9.10-16.el9.x86_64", + sha256 = "3e10d2880341fcb9dd697a6d1812981e67e976f571b23756c7d89d52c70f1142", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXrender-devel-0__0.9.10-16.el9.x86_64", + sha256 = "fad7f6030e6d0f7daafb0d9e0ae0eb5b47a4d1014262ff818f66a3adb084868f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXrender-devel-0.9.10-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-0__1.2.3-16.el9.x86_64", + sha256 = "a78023c45d39f3d608e217213ae6eca2032a99e9f6f98e34567a28a30229cca2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXtst-devel-0__1.2.3-16.el9.x86_64", + sha256 = "e88f9e60ec9461492bc0e17c0b4dfd0ec8ddfabf6137df0f984594eb51655175", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXtst-devel-1.2.3-16.el9.x86_64.rpm", + ], +) + +rpm( + name = "libXxf86vm-0__1.1.4-18.el9.x86_64", + sha256 = "fe95e780bab5c4dda66acefaf35bdc6dddd483928cd2472cffa89a67ffc6b53b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libXxf86vm-1.1.4-18.el9.x86_64.rpm", + ], +) + +rpm( + name = "libasyncns-0__0.8-22.el9.x86_64", + sha256 = "5214799bb68b6933ec92c4b183777565c1949757f545b6d84e13da189d91cb86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libasyncns-0.8-22.el9.x86_64.rpm", + ], +) + +rpm( + name = "libatomic-0__11.5.0-7.el9.x86_64", + sha256 = "42d59da75f7e0ba9cf1ab079463b4efc5e131c4754ee9f6c40a9b2d09c233ecd", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libatomic-11.5.0-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libblkid-devel-0__2.37.4-21.el9.x86_64", + sha256 = "37031505f779e5962c7a1c3ac07fdef8adcfb4b3de54d8153475a20384c40485", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libblkid-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libbpf-devel-2__1.5.0-1.el9.x86_64", + sha256 = "9f28bdb38de2425230f80a914594dbe4f0fc88c2a122aafcb5a77c1108c6a025", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libbpf-devel-1.5.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-0__0.2.13-4.el9.x86_64", + sha256 = "470b807fd8d03551f862cc629c4b5296b2ccc763d6109fd3294fb9f1898a75e3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdatrie-devel-0__0.2.13-4.el9.x86_64", + sha256 = "267fcc6b5d45c72a08e566b5614bd97ec0fe3866bd4310e798748e510039c5e9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdatrie-devel-0.2.13-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libdrm-0__2.4.123-2.el9.x86_64", + sha256 = "67f930411a00d2c8e28d953b520ff41b5c0b29681192b4c1e290543161ae2cdb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libdrm-2.4.123-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libedit-0__3.1-38.20210216cvs.el9.x86_64", + sha256 = "bfa91ff96f312b284a16a91b2eabcdae9e43c2f9b698fee6eec94040eaef8f7e", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libedit-3.1-38.20210216cvs.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-0__1.5.5-4.el9.x86_64", + sha256 = "7f282efb4675e8e2ffe4a8c75e737d2450c5273df60ebc311d388192d1353fbb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libepoxy-devel-0__1.5.5-4.el9.x86_64", + sha256 = "288d7c46784de0487f572dd0de0001a51b69af2c696ae4edd37da9adc6d62c39", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libepoxy-devel-1.5.5-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libffi-devel-0__3.4.2-8.el9.x86_64", + sha256 = "39464cd83d7779bfbcadabe14a46bd8e8d90f7a73500e9d0481c8b1d9ce5dbdf", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libffi-devel-3.4.2-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libfontenc-0__1.1.3-17.el9.x86_64", + sha256 = "ebb70063dacc43d942d4c1947ae1bf3a95e8de22bc14549907404f085efc45e7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libfontenc-1.1.3-17.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-1__1.3.4-1.el9.x86_64", + sha256 = "129af138450cf5aba44d7a72bcccbf2c691dec72a29ac2bf769ae7dec2092ee3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-core-devel-1__1.3.4-1.el9.x86_64", + sha256 = "cc6852a620f5c4d12600d3cb6aeaab3320227478893f430cc9d29b99a7a2569d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-core-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-devel-1__1.3.4-1.el9.x86_64", + sha256 = "8f728a241c008a862c706e5627f293321171cb3bfb6a643fa0f4fda812403a21", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-devel-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-egl-1__1.3.4-1.el9.x86_64", + sha256 = "6c815bac0524572490c81cfe5331b55fb3c87aef99ff96a5028210bc2397497b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-egl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-gles-1__1.3.4-1.el9.x86_64", + sha256 = "88b8f48433cb9009a53a5bad9c76f281c8d988edf6386f7a55fba58d0aa444bd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-gles-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-glx-1__1.3.4-1.el9.x86_64", + sha256 = "9cf25dfa3a3fb57f2142f7941b7be1c020e214e01863ceb3901cfa2204b558e0", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-glx-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libglvnd-opengl-1__1.3.4-1.el9.x86_64", + sha256 = "42af4046807453b3de347ec7c02092559eab57b81e1292e28b4bdd92875ed693", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libglvnd-opengl-1.3.4-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libgusb-0__0.3.8-2.el9.x86_64", + sha256 = "8b9da6b545db0e30875de3c198388c4194766ac5d94b3cda72afdedfd2ce9a67", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libgusb-0.3.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-0__67.1-9.el9.x86_64", + sha256 = "dbd4536fda7c8a691a14f3de0185dc404898cf0aa6a520ea4280ed018644f16f", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libicu-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libicu-devel-0__67.1-9.el9.x86_64", + sha256 = "f529fcd5f0f9882b393c1ba4ab38ae10b667a1bff9a36d18539bde5dda2b4ceb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libicu-devel-67.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libiscsi-0__1.19.0-5.el9.x86_64", + sha256 = "384e20a68a914538e6cdc1c5aac4115b50bf569bde044abb2db193af06f7f360", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libiscsi-1.19.0-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libjpeg-turbo-0__2.0.90-7.el9.x86_64", + sha256 = "c99423ff41a2df5fbf42c56201a8610791a9a60c3891a613f0d0be2dcb6f8d04", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libjpeg-turbo-2.0.90-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libldac-0__2.0.2.3-10.el9.x86_64", + sha256 = "186d3dccb1e840693e612c41db46cd2a3df39bd7d8c82883aed8e5bf4263ac6d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libldac-2.0.2.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libmount-devel-0__2.37.4-21.el9.x86_64", + sha256 = "7e42a62b1e844cbd2baf2f518edfcd7dfb2434df107787c0d2f657a04a3df366", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libmount-devel-2.37.4-21.el9.x86_64.rpm", + ], +) + +rpm( + name = "libogg-2__1.3.4-6.el9.x86_64", + sha256 = "ff8b1d6cf009aef8c8d1d5508c456479f62b7069e1d6a3f225b6233f645c82ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libogg-1.3.4-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpciaccess-0__0.16-7.el9.x86_64", + sha256 = "7f4f160406a6f66aee581582b0355afaafd5f769366c13c62888d21a3a3cb9db", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/libpciaccess-0.16-7.el9.x86_64.rpm", + ], +) + +rpm( + name = "libpng-devel-2__1.6.37-12.el9.x86_64", + sha256 = "2b40cfc1167db99a7703b2e17548b826b72808dff829ec93b57211660b33fb26", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libpng-devel-1.6.37-12.el9.x86_64.rpm", + ], +) + +rpm( + name = "libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64", + sha256 = "360fba78adaa83fa504c9a65b30f13ed90c197b28a189bb371b8a1425ab31a0b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libproxy-webkitgtk4-0.4.15-35.el9.x86_64.rpm", + ], +) + +rpm( + name = "librados2-2__16.2.4-5.el9.x86_64", + sha256 = "6786852b684ea584343d560c7e0a7303790f1129d320b493df3c45a73850d073", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librados2-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "librbd1-2__16.2.4-5.el9.x86_64", + sha256 = "d4d1549eb600af4efc546630fc89170905e8b2c174d8528315d36451879eacc9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/librbd1-16.2.4-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsbc-0__1.4-9.el9.x86_64", + sha256 = "495ad3d92df325809734618b970a470cba020ded1fda8019ba17f835a7ff5db9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsbc-1.4-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libselinux-devel-0__3.6-3.el9.x86_64", + sha256 = "6a8f4b682da2bb46f64ae5332e8753fd189c43d8c1d942a78289c12fb0bee71c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libselinux-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsepol-devel-0__3.6-3.el9.x86_64", + sha256 = "f8f1f7a6c04b28c4ad596a486d34cc3f4675d00f05994b4cd6f27cffd2603d12", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsepol-devel-3.6-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libsndfile-0__1.0.31-9.el9.x86_64", + sha256 = "5495f858a549940da30d5c8d807dbc3ef27ae3de9ffb93119c10614ea3df3b6e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libsndfile-1.0.31-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libstemmer-0__0-18.585svn.el9.x86_64", + sha256 = "4edc1f498e8602e77761a54f98138ef6831ff7d3d32f1725b87465511eeafdcd", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libstemmer-0-18.585svn.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-0__0.1.28-8.el9.x86_64", + sha256 = "1f58c89d65f57dadd49a927c0005bfd4dad36f0b6060cd30d5fd6831ded957ca", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libthai-devel-0__0.1.28-8.el9.x86_64", + sha256 = "f5a94d1f0b203ddadfacaf5f35669862658519807f1bebd8aba650271a83785a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libthai-devel-0.1.28-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-0__4.4.0-13.el9.x86_64", + sha256 = "56c8fd8d0a498f4079cb5a9e43a1ef5dc2feecfc283d4c642b6fb087f20bd1c3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtiff-devel-0__4.4.0-13.el9.x86_64", + sha256 = "c85898a1d9d8ce308f1451b97ee99104d1deeaf2e84269facb9301714ecfa618", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtiff-devel-4.4.0-13.el9.x86_64.rpm", + ], +) + +rpm( + name = "libtracker-sparql-0__3.1.2-3.el9.x86_64", + sha256 = "f2206284f482dec85efc50f329ddd441eb6acb937d2ee6b5d8ba3311cd6ff1f5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libtracker-sparql-3.1.2-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "libvorbis-1__1.3.7-5.el9.x86_64", + sha256 = "b6566ca8045af971aa48ca65327e183a7bc4f6ec59f36db2de26a6caa2f87074", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libvorbis-1.3.7-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-client-0__1.21.0-1.el9.x86_64", + sha256 = "2b4a3e9acef0b0967f962e960f0c87f6f7cd51aa04262ab2ecf2ab58173d80c6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-client-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-cursor-0__1.21.0-1.el9.x86_64", + sha256 = "583bf4b6238e38abcd08b4925dda13e371f5b4a68b5e860bf351fdeff4860493", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-cursor-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-egl-0__1.21.0-1.el9.x86_64", + sha256 = "cb8aaac077968b8d869e0f178274d3ee86b16bed9bcfaf73e3220c7254ce337a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-egl-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwayland-server-0__1.21.0-1.el9.x86_64", + sha256 = "ebd8ae6e3ce81c785ab72d60b5317b8b376340a0bf5be460be3245368465d619", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwayland-server-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libwebp-0__1.2.0-8.el9.x86_64", + sha256 = "9010f71b826f720a8d16ac20e144187ffa47b163c64933e1c68cb4add2c7946d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libwebp-1.2.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-0__1.13.1-9.el9.x86_64", + sha256 = "569018774aeb89760ade7d49c35bc1489ed0fdc3ddd6a2858f7a56811485c93f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxcb-devel-0__1.13.1-9.el9.x86_64", + sha256 = "c40c68abf168ec900bdb1492fd444fe5442d41a74480e900ae9c66626b413cc1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxcb-devel-1.13.1-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-0__1.5.3-1.el9.x86_64", + sha256 = "aec3b6a1459018ac7993f843b595b9b0548b4457ab5b87adea3b3c23e35462d7", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxdp-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxdp-devel-0__1.5.3-1.el9.x86_64", + sha256 = "aed70eb627e572b4ef3648993b9c9d512d1915a98f793602a7ad1478fc6e599e", + urls = [ + "http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/Packages/libxdp-devel-1.5.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-0__1.0.3-4.el9.x86_64", + sha256 = "240837601b4cb9260b28f66e39ad45c889e27902b4a80b36a25532c0a19ccf14", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxkbcommon-devel-0__1.0.3-4.el9.x86_64", + sha256 = "d27298c194096fc236ab2163bd971ba06484c3ead58d26cd8bde3eaa9db4b8f2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxkbcommon-devel-1.0.3-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxshmfence-0__1.3-10.el9.x86_64", + sha256 = "a9681af3e5e80d7f099641ac7a37bdb36d929e897152a6490856f5461831cd5e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxshmfence-1.3-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "libxml2-devel-0__2.9.13-9.el9.x86_64", + sha256 = "f98f3688a0303007bff3ec562df8b6b0d700549ca59ca91422ee152c222d461b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libxml2-devel-2.9.13-9.el9.x86_64.rpm", + ], +) + +rpm( + name = "libzstd-devel-0__1.5.5-1.el9.x86_64", + sha256 = "7bb2aac4e8480aaa589626b202a098bc17bec3b5fbfc64c741f8d69e2b2b99bb", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/libzstd-devel-1.5.5-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-filesystem-0__20.1.8-3.el9.x86_64", + sha256 = "f202993b0c11cc64cad0d2f8e4c6da50aeda05e8ee64eacde9944a41de4dd784", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-filesystem-20.1.8-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "llvm-libs-0__20.1.8-3.el9.x86_64", + sha256 = "e46752cae898bc92d8b7cd3984f294f1b958e950a0afd63a37f444b223927533", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/llvm-libs-20.1.8-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-dri-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "85a691ca4773d283c9c7929dd63eece1e430d4b14abf2b63b7793289c1da477f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-dri-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-filesystem-0__24.2.8-2.el9.x86_64", + sha256 = "915ec77d7cf42c403095bd006adb75968883e515654d7bbb0de3278e00cf2827", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-filesystem-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libEGL-0__24.2.8-2.el9.x86_64", + sha256 = "db5a7f9c9b5476ec5c173a30a9e042a076c74f4ba4143402ed6ee7e6dc18be62", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libEGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libGL-0__24.2.8-2.el9.x86_64", + sha256 = "eb9cf4f7b8f32033a42d657e4ca4c4b2cff18b610f52b0203909740a2900828a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libGL-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-0__24.2.8-2.el9.x86_64", + sha256 = "7840459f296af4e98ecbc671d8fee083dd9708426dc06ccdfcde997091dde1a5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libgbm-devel-0__24.2.8-2.el9.x86_64", + sha256 = "397a54364c6344b1dd7bfb26c326c54738e81fd3129d019df554acd9482a1fb9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libgbm-devel-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-libglapi-0__24.2.8-2.el9.x86_64", + sha256 = "ef1ab98c5305f5d421db001828ab9c6d737314f0e8e740d29384f8b2884aa16e", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-libglapi-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64", + sha256 = "1af3ad02c088a0ed981298ac73609b6c2da5fea70782ec4c04de14acbc854127", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mesa-vulkan-drivers-24.2.8-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "mkfontscale-0__1.2.1-3.el9.x86_64", + sha256 = "a7f013da35ef80879e3f327ebf2fb31d8fd8f0811572693153d470842788068f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/mkfontscale-1.2.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "openjpeg2-0__2.4.0-8.el9.x86_64", + sha256 = "ed25f681305664429a0202ce98305e42972d0096ba957358c94856b012bb4379", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/openjpeg2-2.4.0-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "opus-0__1.3.1-10.el9.x86_64", + sha256 = "d194718353f0874b9f85327821fc45adba85f646474b473d1b455b9075a77ae1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/opus-1.3.1-10.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-0__1.48.7-3.el9.x86_64", + sha256 = "d366f6b4ce6f1714ff880b0afa3ebcb004f245bf578937709db6417aa88f1fee", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pango-devel-0__1.48.7-3.el9.x86_64", + sha256 = "497fd93cea696fce84b38e69efa17df149cb3ba49268ec513aa2d49b3ab0fe86", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pango-devel-1.48.7-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-cpp-0__8.44-4.el9.x86_64", + sha256 = "0e459d7742ef54bd7c4d9d4e75bee253a95370e074c221f402b05f14fe274459", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-cpp-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-devel-0__8.44-4.el9.x86_64", + sha256 = "87005c24261e0d6f9908180323135a13a8761b1ddd0303a3052aa1f4ab156d7c", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-devel-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf16-0__8.44-4.el9.x86_64", + sha256 = "9590a2fed0802ffa2c563742aaf20356547f3c96bc7c1ab1c257f6ca9abcba27", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf16-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre-utf32-0__8.44-4.el9.x86_64", + sha256 = "5eda4debda2b7a87dcc6b1afa0577c1e77f162509a80438f403bebd871b50bed", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre-utf32-8.44-4.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-devel-0__10.40-6.el9.x86_64", + sha256 = "32bc7fa49398097a0b7ad6ab5281a718bc91558953636fd536b7bbef189defce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-devel-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf16-0__10.40-6.el9.x86_64", + sha256 = "d5e028330f87b51930ffc9d0dd5668673563d4282eeed3a082c546966249bf85", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf16-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pcre2-utf32-0__10.40-6.el9.x86_64", + sha256 = "55a6230c51157596d224737b43d07477c8537e88ae00c561123de317fcc8932a", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pcre2-utf32-10.40-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-0__1.0.1-1.el9.x86_64", + sha256 = "0f3d1760c6bf71e2413c323eff5fdd2b68cedd71e106cba77c58a93aa04a76f1", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-alsa-0__1.0.1-1.el9.x86_64", + sha256 = "5be3439c7d5b108d1fcf0e7654f6639551b1686880bf083ff0b33c541a060164", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-alsa-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64", + sha256 = "5330d9280bbc7b7a9ce4f78ad5ae7997281d75a805c93e28cfc6c4d785cd8e61", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64", + sha256 = "6e2a74bbc6eff6421e3bd078f7b253fac88069e7938b06816fd1565cdf053ba3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-jack-audio-connection-kit-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-libs-0__1.0.1-1.el9.x86_64", + sha256 = "5e510c378847a946683c9eacc2bd9c7fd27e6b1118a5456673da9dbadb609716", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-libs-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-media-session-0__0.3.32-3.el9.x86_64", + sha256 = "10a532cff1ff9502933cb69d3ec7b887da1986321c59bb45dbcf2553b5ce7cd9", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-media-session-0.3.32-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pipewire-pulseaudio-0__1.0.1-1.el9.x86_64", + sha256 = "e4a705cc9513a7fbd0e442b937f2217708b563df37a26ae4743c4e84a81af410", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pipewire-pulseaudio-1.0.1-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "pixman-devel-0__0.40.0-6.el9.x86_64", + sha256 = "b0bd4db0173d65f476dec24cfd5ce7bc196fc88713ee2e5acf5d1b3542c483d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pixman-devel-0.40.0-6.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-0__15.0-3.el9.x86_64", + sha256 = "8d2b4de1bbd733e1c85ed0152fc8439b640f09ac3a5d6792092549bfbe42e7d3", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "pulseaudio-libs-glib2-0__15.0-3.el9.x86_64", + sha256 = "bef7faba9d974349bc52cf5f1499bdd7b986fc1ea4ddfdf6e74d9c54ea5b569f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/pulseaudio-libs-glib2-15.0-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "rtkit-0__0.11-29.el9.x86_64", + sha256 = "e4e19d6b97ab3bbef93fa7d24949e2888f2dbaaf053529e12da1a372db7e8084", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/rtkit-0.11-29.el9.x86_64.rpm", + ], +) + +rpm( + name = "shared-mime-info-0__2.1-5.el9.x86_64", + sha256 = "3c04e67223e1c61dfd06c378d49663c4289d974099b21a472631d94644fec0ac", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/shared-mime-info-2.1-5.el9.x86_64.rpm", + ], +) + +rpm( + name = "sound-theme-freedesktop-0__0.8-17.el9.x86_64", + sha256 = "e7b65924babd215e23e214bcc77f6b2d78764415d31d138db9c2bd23b3a71e24", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sound-theme-freedesktop-0.8-17.el9.noarch.rpm", + ], +) + +rpm( + name = "sysprof-capture-devel-0__3.40.1-3.el9.x86_64", + sha256 = "57ef7ebd2b77a0671a90b6f728e6ba9e72a0c12ac7262b7127f0d13a35eec1ce", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/sysprof-capture-devel-3.40.1-3.el9.x86_64.rpm", + ], +) + +rpm( + name = "usbutils-0__017-1.el9.x86_64", + sha256 = "723291f990fd4c93233e4f4d52995ecb57a7e976074384ec2da3b64c6060bb58", + urls = [ + "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/usbutils-017-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte-profile-0__0.64.2-2.el9.x86_64", + sha256 = "20c7cc4d012677a19ef11a5bf7c89d13bd0462b63a4e570a151384c0d4850f7b", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte-profile-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vte291-0__0.64.2-2.el9.x86_64", + sha256 = "fc5b398115d0988599e9959c5e58ad372961691d67e13e1bea43354dc7f31ae4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vte291-0.64.2-2.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-loader-0__1.4.304.0-1.el9.x86_64", + sha256 = "284a3909148079a2e75a892aafc16dfee651ecdf02e1eb26f2fbd8009569bd2d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-loader-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "vulkan-tools-0__1.4.304.0-1.el9.x86_64", + sha256 = "84871be0f7707cb101fd494b69312279c68ce20643dbe2512bebc7ab80687443", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/vulkan-tools-1.4.304.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "wayland-devel-0__1.21.0-1.el9.x86_64", + sha256 = "c19da9a5052bdd8895f058d20e2a900c2c8029491cae4302bca1901743fda93d", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/wayland-devel-1.21.0-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64", + sha256 = "7e2f0ac1bbc9b58b34cdda0caa169a39a304c43a4345823356c3c973f2b65e50", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webkit2gtk3-jsc-2.48.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "webrtc-audio-processing-0__0.3.1-8.el9.x86_64", + sha256 = "94819790916299e9326bce0b471f1c317c9574cf67d090700ba6df7bf3206c76", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/webrtc-audio-processing-0.3.1-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "xdg-dbus-proxy-0__0.1.3-1.el9.x86_64", + sha256 = "b960d89bf0aacd8b9d5595bcf55433c819881374f7b43771dbc45887fcb7e5d6", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xdg-dbus-proxy-0.1.3-1.el9.x86_64.rpm", + ], +) + +rpm( + name = "xkeyboard-config-0__2.33-2.el9.x86_64", + sha256 = "ca47ef1bfc9cf8b0996ffad8c423270e84f87fb2a32386b03edadc5d38a2fdf5", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xkeyboard-config-2.33-2.el9.noarch.rpm", + ], +) + +rpm( + name = "xml-common-0__0.6.3-58.el9.x86_64", + sha256 = "f5d8c3fe25e7e46e39bac4a03b1b6c7b9601e6df62af59e4edf34548406d4f95", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xml-common-0.6.3-58.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64", + sha256 = "3a9c430034883be724a7d9d7492594d3637d34d410170d47300d32a2edf630c2", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-fonts-ISO8859-1-100dpi-7.5-33.el9.noarch.rpm", + ], +) + +rpm( + name = "xorg-x11-proto-devel-0__2024.1-1.el9.x86_64", + sha256 = "8a41299cd4bbc6e4671aa4e4069cef8888689351062101de9966981bcc766900", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xorg-x11-proto-devel-2024.1-1.el9.noarch.rpm", + ], +) + +rpm( + name = "xz-devel-0__5.2.5-8.el9.x86_64", + sha256 = "b04077515f5bea9a46adaf85a5217cec0f7eaa2a1286c5147310aedfc57bf94f", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/xz-devel-5.2.5-8.el9.x86_64.rpm", + ], +) + +rpm( + name = "zlib-devel-0__1.2.11-41.el9.x86_64", + sha256 = "f41f5fc4a53f5b84e06b815dd3402847eb0415bf74bfb77ce490d9920fab91b4", + urls = [ + "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/zlib-devel-1.2.11-41.el9.x86_64.rpm", + ], +) +# EDV dependency - END diff --git a/kubevirt-patch/v1.8.2/cmd-virtlauncher-BUILD.bazel b/kubevirt-patch/v1.8.2/cmd-virtlauncher-BUILD.bazel new file mode 100644 index 0000000..f68ccbb --- /dev/null +++ b/kubevirt-patch/v1.8.2/cmd-virtlauncher-BUILD.bazel @@ -0,0 +1,270 @@ +load("@bazeldnf//bazeldnf:defs.bzl", "xattrs") +load("@io_bazel_rules_docker//contrib:group.bzl", "group_entry", "group_file") +load("@io_bazel_rules_docker//contrib:passwd.bzl", "passwd_entry", "passwd_file") +load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") +load("@rules_oci//oci:defs.bzl", "oci_image") +load("@rules_pkg//:pkg.bzl", "pkg_tar") +load("//staging/src/kubevirt.io/client-go/version:def.bzl", "version_x_defs") + +go_library( + name = "go_default_library", + srcs = ["virt-launcher.go"], + importpath = "kubevirt.io/kubevirt/cmd/virt-launcher", + visibility = ["//visibility:private"], + deps = [ + "//pkg/apimachinery/wait:go_default_library", + "//pkg/cloud-init:go_default_library", + "//pkg/config:go_default_library", + "//pkg/container-disk:go_default_library", + "//pkg/downwardmetrics:go_default_library", + "//pkg/ephemeral-disk:go_default_library", + "//pkg/hooks:go_default_library", + "//pkg/hotplug-disk:go_default_library", + "//pkg/ignition:go_default_library", + "//pkg/util:go_default_library", + "//pkg/virt-config:go_default_library", + "//pkg/virt-handler/cmd-client:go_default_library", + "//pkg/virt-launcher:go_default_library", + "//pkg/virt-launcher/metadata:go_default_library", + "//pkg/virt-launcher/notify-client:go_default_library", + "//pkg/virt-launcher/premigration-hook-server:go_default_library", + "//pkg/virt-launcher/premigration-hook-server/cpuhook:go_default_library", + "//pkg/virt-launcher/premigration-hook-server/network:go_default_library", + "//pkg/virt-launcher/standalone:go_default_library", + "//pkg/virt-launcher/virtwrap:go_default_library", + "//pkg/virt-launcher/virtwrap/agent-poller:go_default_library", + "//pkg/virt-launcher/virtwrap/api:go_default_library", + "//pkg/virt-launcher/virtwrap/cli:go_default_library", + "//pkg/virt-launcher/virtwrap/cmd-server:go_default_library", + "//pkg/virt-launcher/virtwrap/util:go_default_library", + "//staging/src/kubevirt.io/api/core/v1:go_default_library", + "//staging/src/kubevirt.io/client-go/log:go_default_library", + "//vendor/github.com/spf13/pflag:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", + "//vendor/libvirt.org/go/libvirt:go_default_library", + ], +) + +go_binary( + name = "virt-launcher", + embed = [":go_default_library"], + visibility = ["//visibility:public"], + x_defs = version_x_defs(), +) + +pkg_tar( + name = "virt-launcher-tar", + srcs = [ + "node-labeller/node-labeller.sh", + ":virt-launcher", + "//cmd/container-disk-v2alpha:container-disk", + "//cmd/virt-freezer", + "//cmd/virt-launcher-monitor", + "//cmd/virt-probe", + "//cmd/virt-tail", + ], + package_dir = "/usr/bin", +) + +xattrs( + name = "setcaps", + capabilities = { + "/usr/bin/virt-launcher-monitor": [ + "cap_net_bind_service", + ], + }, + tar = ":virt-launcher-tar", +) + +passwd_entry( + name = "root-user", + gid = 0, + home = "/root", + info = "root", + shell = "/bin/bash", + uid = 0, + username = "root", +) + +group_entry( + name = "qemu-group", + gid = 107, + groupname = "qemu", +) + +group_entry( + name = "root-group", + gid = 0, + groupname = "root", +) + +group_file( + name = "group", + entries = [ + ":qemu-group", + ":root-group", + ], +) + +passwd_entry( + name = "qemu-user", + gid = 107, + home = "/home/qemu", + shell = "/bin/bash", + uid = 107, + username = "qemu", +) + +passwd_file( + name = "passwd", + entries = [ + ":qemu-user", + ":root-user", + ], +) + +pkg_tar( + name = "libvirt-config", + srcs = [ + ":qemu.conf", + ":virtqemud.conf", + ], + package_dir = "/etc/libvirt", +) + +pkg_tar( + name = "passwd-tar", + srcs = [ + ":group", + ":passwd", + ], + mode = "0644", + package_dir = "etc", + visibility = ["//visibility:public"], +) + +pkg_tar( + name = "nsswitch-tar", + srcs = [ + ":nsswitch.conf", + ], + mode = "0644", + package_dir = "/etc", +) + +pkg_tar( + name = "qemu-hook-tar", + srcs = [ + ":qemu", + ], + mode = "0755", + owner = "107.107", + package_dir = "/etc/libvirt/hooks", +) + +# Symlink /var/run -> ../run for compatibility with libvirt socket paths +# In CentOS Stream 10+, libvirt creates sockets in /run/libvirt/ but +# KubeVirt expects them at /var/run/libvirt/ +# IMPORTANT: Must use relative symlink (../run) not absolute (/run) because +# virt-handler accesses the container's filesystem via /proc//root/var/run. +# With an absolute symlink, the kernel would resolve /run relative to +# virt-handler's root, not the container's root. +pkg_tar( + name = "var-run-symlink-tar", + symlinks = { + "/var/run": "../run", + }, +) + +# Go binary for advanced qemu hook (used when LibvirtHooksServerAndClient is enabled) +# This binary is placed in /usr/bin and replaces /etc/libvirt/hooks/qemu at runtime +pkg_tar( + name = "libvirt-hook-client-tar", + srcs = [ + "//cmd/virt-launcher/libvirt-hook-client", + ], + package_dir = "/usr/bin", +) + +# Workaround for https://github.com/moby/moby/issues/44106 +# Need to create the directory upfront, otherwise it gets assigned wrong +# permissions when unpacked. +pkg_tar( + name = "qemu-kvm-modules-dir-tar", + empty_dirs = [ + "usr/lib64/qemu-kvm", + ], + mode = "0755", + owner = "0.0", +) + +pkg_tar( + name = "get-version-tar", + srcs = ["//:get-version"], + package_dir = "/", +) + +# EDV dependency - START +pkg_tar( + name = "custom-qemu-build", + srcs = ["@custom-qemu//file"], + mode = "0755", + owner = "0.0", + package_dir = "/usr/libexec", + visibility = ["//visibility:public"], +) +# EDV dependency - END + +oci_image( + name = "version-container", + base = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": "@go_image_base_aarch64", + "@io_bazel_rules_go//go/platform:linux_s390x": "@go_image_base_s390x", + "//conditions:default": "@go_image_base", + }), + tars = select({ + "@io_bazel_rules_go//go/platform:linux_arm64": [ + "//rpm:launcherbase_aarch64", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":libvirt-hook-client-tar", + ":qemu-kvm-modules-dir-tar", + ":var-run-symlink-tar", + ], + "@io_bazel_rules_go//go/platform:linux_s390x": [ + "//rpm:launcherbase_s390x", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":libvirt-hook-client-tar", + ":qemu-kvm-modules-dir-tar", + ":var-run-symlink-tar", + ], + "//conditions:default": [ + "//rpm:launcherbase_x86_64", + ":get-version-tar", + ":libvirt-config", + ":passwd-tar", + ":nsswitch-tar", + ":qemu-hook-tar", + ":libvirt-hook-client-tar", + ":qemu-kvm-modules-dir-tar", + ":var-run-symlink-tar", + ":custom-qemu-build", # EDV dependency + ], + }), +) + +oci_image( + name = "virt-launcher-image", + base = ":version-container", + entrypoint = ["/usr/bin/virt-launcher"], + tars = [":setcaps"], + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/kubevirt-patch/v1.8.2/rpm-BUILD.bazel b/kubevirt-patch/v1.8.2/rpm-BUILD.bazel new file mode 100644 index 0000000..2d0e6b2 --- /dev/null +++ b/kubevirt-patch/v1.8.2/rpm-BUILD.bazel @@ -0,0 +1,8390 @@ +load("@bazeldnf//bazeldnf:defs.bzl", "bazeldnf", "rpm", "rpmtree", "tar2files") +load(":centos_stream.bzl", "centos_stream_alias", "centos_stream_config_settings") + +# Define config settings for CentOS Stream version selection +centos_stream_config_settings() + +# CentOS Stream 9 sandbox targets +bazeldnf( + name = "sandbox_x86_64_cs9", + command = "sandbox", + tar = ":sandboxroot_x86_64_cs9", +) + +bazeldnf( + name = "sandbox_aarch64_cs9", + command = "sandbox", + tar = ":sandboxroot_aarch64_cs9", +) + +bazeldnf( + name = "sandbox_s390x_cs9", + command = "sandbox", + tar = ":sandboxroot_s390x_cs9", +) + +# CentOS Stream 10 sandbox targets +bazeldnf( + name = "sandbox_x86_64_cs10", + command = "sandbox", + tar = ":sandboxroot_x86_64_cs10", +) + +bazeldnf( + name = "sandbox_aarch64_cs10", + command = "sandbox", + tar = ":sandboxroot_aarch64_cs10", +) + +bazeldnf( + name = "sandbox_s390x_cs10", + command = "sandbox", + tar = ":sandboxroot_s390x_cs10", +) + +# CentOS Stream 9 ldd targets +bazeldnf( + name = "ldd_x86_64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_x86_64_cs9", + rulename = "libvirt-libs_x86_64_cs9", +) + +bazeldnf( + name = "ldd_aarch64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_aarch64_cs9", + rulename = "libvirt-libs_aarch64_cs9", +) + +bazeldnf( + name = "ldd_s390x_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_s390x_cs9", + rulename = "libvirt-libs_s390x_cs9", +) + +# CentOS Stream 10 ldd targets +bazeldnf( + name = "ldd_x86_64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libfido2.so.1", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_x86_64_cs10", + rulename = "libvirt-libs_x86_64_cs10", +) + +bazeldnf( + name = "ldd_aarch64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libfido2.so.1", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_aarch64_cs10", + rulename = "libvirt-libs_aarch64_cs10", +) + +bazeldnf( + name = "ldd_s390x_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libvirt-admin.so.0", + "/usr/lib64/libvirt-lxc.so.0", + "/usr/lib64/libvirt-qemu.so.0", + "/usr/lib64/libvirt.so.0", + "/usr/lib64/libfido2.so.1", + "/usr/lib64/libkrb5support.so.0", + "/usr/lib64/libkeyutils.so.1", + "/usr/lib64/liblz4.so.1", + "/usr/lib64/libmount.so.1", + ], + rpmtree = ":libvirt-devel_s390x_cs10", + rulename = "libvirt-libs_s390x_cs10", +) + +# CentOS Stream 9 ldd targets for libnbd +bazeldnf( + name = "ldd_libnbd_x86_64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_x86_64_cs9", + rulename = "libnbd-libs_x86_64_cs9", +) + +bazeldnf( + name = "ldd_libnbd_aarch64_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_aarch64_cs9", + rulename = "libnbd-libs_aarch64_cs9", +) + +bazeldnf( + name = "ldd_libnbd_s390x_cs9", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_s390x_cs9", + rulename = "libnbd-libs_s390x_cs9", +) + +# CentOS Stream 10 ldd targets for libnbd +bazeldnf( + name = "ldd_libnbd_x86_64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_x86_64_cs10", + rulename = "libnbd-libs_x86_64_cs10", +) + +bazeldnf( + name = "ldd_libnbd_aarch64_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_aarch64_cs10", + rulename = "libnbd-libs_aarch64_cs10", +) + +bazeldnf( + name = "ldd_libnbd_s390x_cs10", + command = "ldd", + libs = [ + "/usr/lib64/libnbd.so.0", + ], + rpmtree = ":libnbd-devel_s390x_cs10", + rulename = "libnbd-libs_s390x_cs10", +) + +# CentOS Stream version-selecting aliases +# Auto-generated by hack/rpm-deps-aliases.sh - do not edit manually + +centos_stream_alias( + name = "testimage_x86_64", + cs10_target = ":testimage_x86_64_cs10", + cs9_target = ":testimage_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "testimage_aarch64", + cs10_target = ":testimage_aarch64_cs10", + cs9_target = ":testimage_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "testimage_s390x", + cs10_target = ":testimage_s390x_cs10", + cs9_target = ":testimage_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-devel_x86_64", + cs10_target = ":libvirt-devel_x86_64_cs10", + cs9_target = ":libvirt-devel_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-devel_aarch64", + cs10_target = ":libvirt-devel_aarch64_cs10", + cs9_target = ":libvirt-devel_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-devel_s390x", + cs10_target = ":libvirt-devel_s390x_cs10", + cs9_target = ":libvirt-devel_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_x86_64", + cs10_target = ":libvirt-libs_x86_64_cs10", + cs9_target = ":libvirt-libs_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_aarch64", + cs10_target = ":libvirt-libs_aarch64_cs10", + cs9_target = ":libvirt-libs_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_s390x", + cs10_target = ":libvirt-libs_s390x_cs10", + cs9_target = ":libvirt-libs_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sandboxroot_x86_64", + cs10_target = ":sandboxroot_x86_64_cs10", + cs9_target = ":sandboxroot_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sandboxroot_aarch64", + cs10_target = ":sandboxroot_aarch64_cs10", + cs9_target = ":sandboxroot_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sandboxroot_s390x", + cs10_target = ":sandboxroot_s390x_cs10", + cs9_target = ":sandboxroot_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "launcherbase_x86_64", + cs10_target = ":launcherbase_x86_64_cs10", + cs9_target = ":launcherbase_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "launcherbase_aarch64", + cs10_target = ":launcherbase_aarch64_cs10", + cs9_target = ":launcherbase_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "launcherbase_s390x", + cs10_target = ":launcherbase_s390x_cs10", + cs9_target = ":launcherbase_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "handlerbase_x86_64", + cs10_target = ":handlerbase_x86_64_cs10", + cs9_target = ":handlerbase_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "handlerbase_aarch64", + cs10_target = ":handlerbase_aarch64_cs10", + cs9_target = ":handlerbase_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "handlerbase_s390x", + cs10_target = ":handlerbase_s390x_cs10", + cs9_target = ":handlerbase_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "passt_tree_x86_64", + cs10_target = ":passt_tree_x86_64_cs10", + cs9_target = ":passt_tree_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "passt_tree_aarch64", + cs10_target = ":passt_tree_aarch64_cs10", + cs9_target = ":passt_tree_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "passt_tree_s390x", + cs10_target = ":passt_tree_s390x_cs10", + cs9_target = ":passt_tree_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libguestfs-tools_x86_64", + cs10_target = ":libguestfs-tools_x86_64_cs10", + cs9_target = ":libguestfs-tools_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libguestfs-tools_s390x", + cs10_target = ":libguestfs-tools_s390x_cs10", + cs9_target = ":libguestfs-tools_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "exportserverbase_x86_64", + cs10_target = ":exportserverbase_x86_64_cs10", + cs9_target = ":exportserverbase_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "exportserverbase_aarch64", + cs10_target = ":exportserverbase_aarch64_cs10", + cs9_target = ":exportserverbase_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "exportserverbase_s390x", + cs10_target = ":exportserverbase_s390x_cs10", + cs9_target = ":exportserverbase_s390x_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "pr-helper_x86_64", + cs10_target = ":pr-helper_x86_64_cs10", + cs9_target = ":pr-helper_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "pr-helper_aarch64", + cs10_target = ":pr-helper_aarch64_cs10", + cs9_target = ":pr-helper_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sidecar-shim_x86_64", + cs10_target = ":sidecar-shim_x86_64_cs10", + cs9_target = ":sidecar-shim_x86_64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sidecar-shim_aarch64", + cs10_target = ":sidecar-shim_aarch64_cs10", + cs9_target = ":sidecar-shim_aarch64_cs9", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "sidecar-shim_s390x", + cs10_target = ":sidecar-shim_s390x_cs10", + cs9_target = ":sidecar-shim_s390x_cs9", + visibility = ["//visibility:public"], +) + +# Path-based aliases for libvirt-libs tar2files outputs +centos_stream_alias( + name = "libvirt-libs_x86_64/usr/lib64", + cs10_target = ":libvirt-libs_x86_64_cs10/usr/lib64", + cs9_target = ":libvirt-libs_x86_64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_x86_64/usr/include/libvirt", + cs10_target = ":libvirt-libs_x86_64_cs10/usr/include/libvirt", + cs9_target = ":libvirt-libs_x86_64_cs9/usr/include/libvirt", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_aarch64/usr/lib64", + cs10_target = ":libvirt-libs_aarch64_cs10/usr/lib64", + cs9_target = ":libvirt-libs_aarch64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_aarch64/usr/include/libvirt", + cs10_target = ":libvirt-libs_aarch64_cs10/usr/include/libvirt", + cs9_target = ":libvirt-libs_aarch64_cs9/usr/include/libvirt", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_s390x/usr/lib64", + cs10_target = ":libvirt-libs_s390x_cs10/usr/lib64", + cs9_target = ":libvirt-libs_s390x_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libvirt-libs_s390x/usr/include/libvirt", + cs10_target = ":libvirt-libs_s390x_cs10/usr/include/libvirt", + cs9_target = ":libvirt-libs_s390x_cs9/usr/include/libvirt", + visibility = ["//visibility:public"], +) + +# Path-based aliases for libnbd-libs tar2files outputs +centos_stream_alias( + name = "libnbd-libs_x86_64/usr/lib64", + cs10_target = ":libnbd-libs_x86_64_cs10/usr/lib64", + cs9_target = ":libnbd-libs_x86_64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_x86_64/usr/include", + cs10_target = ":libnbd-libs_x86_64_cs10/usr/include", + cs9_target = ":libnbd-libs_x86_64_cs9/usr/include", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_aarch64/usr/lib64", + cs10_target = ":libnbd-libs_aarch64_cs10/usr/lib64", + cs9_target = ":libnbd-libs_aarch64_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_aarch64/usr/include", + cs10_target = ":libnbd-libs_aarch64_cs10/usr/include", + cs9_target = ":libnbd-libs_aarch64_cs9/usr/include", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_s390x/usr/lib64", + cs10_target = ":libnbd-libs_s390x_cs10/usr/lib64", + cs9_target = ":libnbd-libs_s390x_cs9/usr/lib64", + visibility = ["//visibility:public"], +) + +centos_stream_alias( + name = "libnbd-libs_s390x/usr/include", + cs10_target = ":libnbd-libs_s390x_cs10/usr/include", + cs9_target = ":libnbd-libs_s390x_cs9/usr/include", + visibility = ["//visibility:public"], +) + +# CentOS Stream 10 rpmtree targets +rpmtree( + name = "exportserverbase_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +# CentOS Stream 9 rpmtree targets +rpmtree( + name = "exportserverbase_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "exportserverbase_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@authselect-0__1.5.2-1.el10.aarch64//rpm", + "@authselect-libs-0__1.5.2-1.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cracklib-0__2.9.11-8.el10.aarch64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@diffutils-0__3.10-8.el10.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-1__1.23-14.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@gzip-0__1.13-3.el10.aarch64//rpm", + "@iproute-0__6.17.0-1.el10.aarch64//rpm", + "@iptables-libs-0__1.8.11-12.el10.aarch64//rpm", + "@jansson-0__2.14-3.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libbpf-2__1.7.0-1.el10.aarch64//rpm", + "@libburn-0__1.5.6-6.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libisoburn-0__1.5.6-6.el10.aarch64//rpm", + "@libisofs-0__1.5.6-6.el10.aarch64//rpm", + "@libmnl-0__1.0.5-7.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.aarch64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.aarch64//rpm", + "@libnftnl-0__1.3.0-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libpwquality-0__1.4.5-12.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libselinux-utils-0__3.10-1.el10.aarch64//rpm", + "@libsemanage-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libutempter-0__1.2.1-15.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@nftables-1__1.1.5-3.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-0__1.6.1-9.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@policycoreutils-0__3.10-1.el10.aarch64//rpm", + "@popt-0__1.19-8.el10.aarch64//rpm", + "@procps-ng-0__4.0.4-11.el10.aarch64//rpm", + "@psmisc-0__23.6-8.el10.aarch64//rpm", + "@qemu-img-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@selinux-policy-0__42.1.18-1.el10.aarch64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@shadow-utils-2__4.15.0-11.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@util-linux-0__2.40.2-18.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xorriso-0__1.5.6-6.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.17.0-2.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-6.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libbpf-2__1.5.0-3.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-6.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-5.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__10.1.0-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.73-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@diffutils-0__3.10-8.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@iproute-0__6.17.0-1.el10.s390x//rpm", + "@iptables-libs-0__1.8.11-12.el10.s390x//rpm", + "@jansson-0__2.14-3.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libbpf-2__1.7.0-1.el10.s390x//rpm", + "@libburn-0__1.5.6-6.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libisoburn-0__1.5.6-6.el10.s390x//rpm", + "@libisofs-0__1.5.6-6.el10.s390x//rpm", + "@libmnl-0__1.0.5-7.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.s390x//rpm", + "@libnfnetlink-0__1.0.2-3.el10.s390x//rpm", + "@libnftnl-0__1.3.0-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libselinux-utils-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@nftables-1__1.1.5-3.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@policycoreutils-0__3.10-1.el10.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@procps-ng-0__4.0.4-11.el10.s390x//rpm", + "@psmisc-0__23.6-8.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@selinux-policy-0__42.1.18-1.el10.s390x//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xorriso-0__1.5.6-6.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.17.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libbpf-2__1.5.0-3.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-6.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-5.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.73-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@diffutils-0__3.10-8.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@iproute-0__6.17.0-1.el10.x86_64//rpm", + "@iptables-libs-0__1.8.11-12.el10.x86_64//rpm", + "@jansson-0__2.14-3.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libbpf-2__1.7.0-1.el10.x86_64//rpm", + "@libburn-0__1.5.6-6.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libisoburn-0__1.5.6-6.el10.x86_64//rpm", + "@libisofs-0__1.5.6-6.el10.x86_64//rpm", + "@libmnl-0__1.0.5-7.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.x86_64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.x86_64//rpm", + "@libnftnl-0__1.3.0-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libselinux-utils-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@nftables-1__1.1.5-3.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@policycoreutils-0__3.10-1.el10.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@procps-ng-0__4.0.4-11.el10.x86_64//rpm", + "@psmisc-0__23.6-8.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@selinux-policy-0__42.1.18-1.el10.x86_64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xorriso-0__1.5.6-6.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "handlerbase_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.17.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libbpf-2__1.5.0-3.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-6.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-5.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.73-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@authselect-0__1.5.2-1.el10.aarch64//rpm", + "@authselect-libs-0__1.5.2-1.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-0__1.0.8-25.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@capstone-0__5.0.1-6.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cracklib-0__2.9.11-8.el10.aarch64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.aarch64//rpm", + "@dbus-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-broker-0__36-4.el10.aarch64//rpm", + "@dbus-common-1__1.14.10-5.el10.aarch64//rpm", + "@diffutils-0__3.10-8.el10.aarch64//rpm", + "@dmidecode-1__3.6-5.el10.aarch64//rpm", + "@duktape-0__2.7.0-10.el10.aarch64//rpm", + "@edk2-aarch64-0__20251114-4.el10.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-1__1.23-14.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@gettext-0__0.22.5-6.el10.aarch64//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.aarch64//rpm", + "@gettext-libs-0__0.22.5-6.el10.aarch64//rpm", + "@gettext-runtime-0__0.22.5-6.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@gnutls-dane-0__3.8.10-3.el10.aarch64//rpm", + "@gnutls-utils-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@gzip-0__1.13-3.el10.aarch64//rpm", + "@iproute-0__6.17.0-1.el10.aarch64//rpm", + "@iproute-tc-0__6.17.0-1.el10.aarch64//rpm", + "@iptables-libs-0__1.8.11-12.el10.aarch64//rpm", + "@jansson-0__2.14-3.el10.aarch64//rpm", + "@json-c-0__0.18-3.el10.aarch64//rpm", + "@json-glib-0__1.8.0-5.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@kmod-0__31-13.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libbpf-2__1.7.0-1.el10.aarch64//rpm", + "@libburn-0__1.5.6-6.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcbor-0__0.11.0-3.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libevent-0__2.1.12-16.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libfdt-0__1.7.0-12.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libfido2-0__1.14.0-7.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libgomp-0__14.3.1-4.4.el10.aarch64//rpm", + "@libibverbs-0__61.0-1.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libisoburn-0__1.5.6-6.el10.aarch64//rpm", + "@libisofs-0__1.5.6-6.el10.aarch64//rpm", + "@libmnl-0__1.0.5-7.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnbd-0__1.24.1-1.el10.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.aarch64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.aarch64//rpm", + "@libnftnl-0__1.3.0-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libnl3-0__3.11.0-1.el10.aarch64//rpm", + "@libpcap-14__1.10.4-7.el10.aarch64//rpm", + "@libpng-2__1.6.40-10.el10.aarch64//rpm", + "@libpwquality-0__1.4.5-12.el10.aarch64//rpm", + "@libseccomp-0__2.5.6-1.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libselinux-utils-0__3.10-1.el10.aarch64//rpm", + "@libsemanage-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libslirp-0__4.7.0-10.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libssh-0__0.12.0-2.el10.aarch64//rpm", + "@libssh-config-0__0.12.0-2.el10.aarch64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libtirpc-0__1.3.5-1.el10.aarch64//rpm", + "@libtpms-0__0.9.6-11.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libusb1-0__1.0.29-3.el10.aarch64//rpm", + "@libutempter-0__1.2.1-15.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libvirt-client-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libxml2-0__2.12.5-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@lz4-libs-0__1.9.4-8.el10.aarch64//rpm", + "@lzo-0__2.10-14.el10.aarch64//rpm", + "@lzop-0__1.04-16.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@nftables-1__1.1.5-3.el10.aarch64//rpm", + "@nmap-ncat-4__7.92-5.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@numad-0__0.5-50.20251104git.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-0__1.6.1-9.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pixman-0__0.43.4-2.el10.aarch64//rpm", + "@policycoreutils-0__3.10-1.el10.aarch64//rpm", + "@polkit-0__125-4.el10.aarch64//rpm", + "@polkit-libs-0__125-4.el10.aarch64//rpm", + "@popt-0__1.19-8.el10.aarch64//rpm", + "@procps-ng-0__4.0.4-11.el10.aarch64//rpm", + "@protobuf-c-0__1.5.0-6.el10.aarch64//rpm", + "@psmisc-0__23.6-8.el10.aarch64//rpm", + "@qemu-img-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-usb-host-18__10.1.0-13.el10.aarch64//rpm", + "@qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@selinux-policy-0__42.1.18-1.el10.aarch64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@shadow-utils-2__4.15.0-11.el10.aarch64//rpm", + "@snappy-0__1.1.10-7.el10.aarch64//rpm", + "@swtpm-0__0.9.0-2.el10.aarch64//rpm", + "@swtpm-libs-0__0.9.0-2.el10.aarch64//rpm", + "@swtpm-tools-0__0.9.0-2.el10.aarch64//rpm", + "@systemd-0__257-23.el10.aarch64//rpm", + "@systemd-container-0__257-23.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@systemd-pam-0__257-23.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@tpm2-tss-0__4.1.3-6.el10.aarch64//rpm", + "@unbound-libs-0__1.24.2-7.el10.aarch64//rpm", + "@usbredir-0__0.13.0-6.el10.aarch64//rpm", + "@util-linux-0__2.40.2-18.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@virtiofsd-0__1.13.3-1.el10.aarch64//rpm", + "@xorriso-0__1.5.6-6.el10.aarch64//rpm", + "@xz-1__5.6.2-4.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + "@zstd-0__1.5.5-9.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_aarch64_cs9", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-0__1.0.8-11.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@capstone-0__4.0.2-10.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@diffutils-0__3.7-12.el9.aarch64//rpm", + "@dmidecode-1__3.6-2.el9.aarch64//rpm", + "@edk2-aarch64-0__20241117-8.el9.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@fips-provider-next-0__1.2.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@gettext-0__0.21-8.el9.aarch64//rpm", + "@gettext-libs-0__0.21-8.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@gnutls-dane-0__3.8.10-3.el9.aarch64//rpm", + "@gnutls-utils-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iproute-0__6.17.0-2.el9.aarch64//rpm", + "@iproute-tc-0__6.17.0-2.el9.aarch64//rpm", + "@iptables-libs-0__1.8.10-11.el9.aarch64//rpm", + "@jansson-0__2.14-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@json-glib-0__1.6.6-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-0__28-11.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libarchive-0__3.5.3-6.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libbpf-2__1.5.0-3.el9.aarch64//rpm", + "@libburn-0__1.5.4-5.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libevent-0__2.1.12-8.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libfdt-0__1.6.0-7.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgomp-0__11.5.0-14.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__61.0-2.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libisoburn-0__1.5.4-5.el9.aarch64//rpm", + "@libisofs-0__1.5.4-4.el9.aarch64//rpm", + "@libmnl-0__1.0.4-16.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnbd-0__1.20.3-4.el9.aarch64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.aarch64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.aarch64//rpm", + "@libnftnl-0__1.2.6-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpng-2__1.6.37-14.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@librdmacm-0__61.0-2.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libselinux-utils-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libslirp-0__4.4.0-8.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libssh-0__0.10.4-17.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-17.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libtpms-0__0.9.6-11.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libusbx-0__1.0.26-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-client-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lua-libs-0__5.4.4-4.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@lzo-0__2.10-7.el9.aarch64//rpm", + "@lzop-0__1.04-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nftables-1__1.0.9-6.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-5.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@numad-0__0.5-37.20150602git.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pixman-0__0.40.0-6.el9.aarch64//rpm", + "@policycoreutils-0__3.6-5.el9.aarch64//rpm", + "@polkit-0__0.117-14.el9.aarch64//rpm", + "@polkit-libs-0__0.117-14.el9.aarch64//rpm", + "@popt-0__1.18-8.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@protobuf-c-0__1.3.3-13.el9.aarch64//rpm", + "@psmisc-0__23.4-3.el9.aarch64//rpm", + "@qemu-img-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-usb-host-17__10.1.0-10.el9.aarch64//rpm", + "@qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@rpm-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.aarch64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@selinux-policy-0__38.1.73-1.el9.aarch64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@snappy-0__1.1.8-8.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@swtpm-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.aarch64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.aarch64//rpm", + "@systemd-0__252-64.el9.aarch64//rpm", + "@systemd-container-0__252-64.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@systemd-pam-0__252-64.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-64.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@unbound-libs-0__1.24.2-2.el9.aarch64//rpm", + "@usbredir-0__0.13.0-2.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@virtiofsd-0__1.13.0-1.el9.aarch64//rpm", + "@xorriso-0__1.5.4-5.el9.aarch64//rpm", + "@xz-0__5.2.5-8.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + "@zstd-0__1.5.5-1.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-0__1.0.8-25.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@capstone-0__5.0.1-6.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.s390x//rpm", + "@dbus-1__1.14.10-5.el10.s390x//rpm", + "@dbus-broker-0__36-4.el10.s390x//rpm", + "@dbus-common-1__1.14.10-5.el10.s390x//rpm", + "@diffutils-0__3.10-8.el10.s390x//rpm", + "@duktape-0__2.7.0-10.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@gettext-0__0.22.5-6.el10.s390x//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.s390x//rpm", + "@gettext-libs-0__0.22.5-6.el10.s390x//rpm", + "@gettext-runtime-0__0.22.5-6.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@gnutls-dane-0__3.8.10-3.el10.s390x//rpm", + "@gnutls-utils-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@iproute-0__6.17.0-1.el10.s390x//rpm", + "@iproute-tc-0__6.17.0-1.el10.s390x//rpm", + "@iptables-libs-0__1.8.11-12.el10.s390x//rpm", + "@jansson-0__2.14-3.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@json-glib-0__1.8.0-5.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@kmod-0__31-13.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libbpf-2__1.7.0-1.el10.s390x//rpm", + "@libburn-0__1.5.6-6.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcbor-0__0.11.0-3.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libevent-0__2.1.12-16.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libfdt-0__1.7.0-12.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libfido2-0__1.14.0-7.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libgomp-0__14.3.1-4.4.el10.s390x//rpm", + "@libibverbs-0__61.0-1.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libisoburn-0__1.5.6-6.el10.s390x//rpm", + "@libisofs-0__1.5.6-6.el10.s390x//rpm", + "@libmnl-0__1.0.5-7.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnbd-0__1.24.1-1.el10.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.s390x//rpm", + "@libnfnetlink-0__1.0.2-3.el10.s390x//rpm", + "@libnftnl-0__1.3.0-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libpcap-14__1.10.4-7.el10.s390x//rpm", + "@libpng-2__1.6.40-10.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libseccomp-0__2.5.6-1.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libselinux-utils-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libslirp-0__4.7.0-10.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libssh-0__0.12.0-2.el10.s390x//rpm", + "@libssh-config-0__0.12.0-2.el10.s390x//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libtirpc-0__1.3.5-1.el10.s390x//rpm", + "@libtpms-0__0.9.6-11.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libusb1-0__1.0.29-3.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libvirt-client-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-libs-0__11.10.0-4.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@lz4-libs-0__1.9.4-8.el10.s390x//rpm", + "@lzo-0__2.10-14.el10.s390x//rpm", + "@lzop-0__1.04-16.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@nftables-1__1.1.5-3.el10.s390x//rpm", + "@nmap-ncat-4__7.92-5.el10.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pixman-0__0.43.4-2.el10.s390x//rpm", + "@policycoreutils-0__3.10-1.el10.s390x//rpm", + "@polkit-0__125-4.el10.s390x//rpm", + "@polkit-libs-0__125-4.el10.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@procps-ng-0__4.0.4-11.el10.s390x//rpm", + "@protobuf-c-0__1.5.0-6.el10.s390x//rpm", + "@psmisc-0__23.6-8.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-ccw-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-device-usb-host-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@selinux-policy-0__42.1.18-1.el10.s390x//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@snappy-0__1.1.10-7.el10.s390x//rpm", + "@swtpm-0__0.9.0-2.el10.s390x//rpm", + "@swtpm-libs-0__0.9.0-2.el10.s390x//rpm", + "@swtpm-tools-0__0.9.0-2.el10.s390x//rpm", + "@systemd-0__257-23.el10.s390x//rpm", + "@systemd-container-0__257-23.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@systemd-pam-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@tpm2-tss-0__4.1.3-6.el10.s390x//rpm", + "@unbound-libs-0__1.24.2-7.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@virtiofsd-0__1.13.3-1.el10.s390x//rpm", + "@xorriso-0__1.5.6-6.el10.s390x//rpm", + "@xz-1__5.6.2-4.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + "@zstd-0__1.5.5-9.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_s390x_cs9", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-11.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fips-provider-next-0__1.2.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@gnutls-dane-0__3.8.10-3.el9.s390x//rpm", + "@gnutls-utils-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iproute-0__6.17.0-2.el9.s390x//rpm", + "@iproute-tc-0__6.17.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@jansson-0__2.14-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-0__28-11.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libbpf-2__1.5.0-3.el9.s390x//rpm", + "@libburn-0__1.5.4-5.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-14.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__61.0-2.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libisoburn-0__1.5.4-5.el9.s390x//rpm", + "@libisofs-0__1.5.4-4.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnftnl-0__1.2.6-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpng-2__1.6.37-14.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libssh-0__0.10.4-17.el9.s390x//rpm", + "@libssh-config-0__0.10.4-17.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtpms-0__0.9.6-11.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-client-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-libs-0__11.9.0-1.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nftables-1__1.0.9-6.el9.s390x//rpm", + "@nmap-ncat-3__7.92-5.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-5.el9.s390x//rpm", + "@polkit-0__0.117-14.el9.s390x//rpm", + "@polkit-libs-0__0.117-14.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@protobuf-c-0__1.3.3-13.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-device-display-virtio-gpu-ccw-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-device-usb-host-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.73-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@swtpm-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-libs-0__0.8.0-2.el9.s390x//rpm", + "@swtpm-tools-0__0.8.0-2.el9.s390x//rpm", + "@systemd-0__252-64.el9.s390x//rpm", + "@systemd-container-0__252-64.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@systemd-pam-0__252-64.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@unbound-libs-0__1.24.2-2.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@virtiofsd-0__1.13.0-1.el9.s390x//rpm", + "@xorriso-0__1.5.4-5.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-0__1.0.8-25.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@capstone-0__5.0.1-6.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.x86_64//rpm", + "@dbus-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-broker-0__36-4.el10.x86_64//rpm", + "@dbus-common-1__1.14.10-5.el10.x86_64//rpm", + "@diffutils-0__3.10-8.el10.x86_64//rpm", + "@dmidecode-1__3.6-5.el10.x86_64//rpm", + "@duktape-0__2.7.0-10.el10.x86_64//rpm", + "@edk2-ovmf-0__20251114-4.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@fips-provider-next-0__1.2.0-3.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@gettext-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-libs-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-runtime-0__0.22.5-6.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@gnutls-dane-0__3.8.10-3.el10.x86_64//rpm", + "@gnutls-utils-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@iproute-0__6.17.0-1.el10.x86_64//rpm", + "@iproute-tc-0__6.17.0-1.el10.x86_64//rpm", + "@iptables-libs-0__1.8.11-12.el10.x86_64//rpm", + "@ipxe-roms-qemu-0__20240119-5.gitde8a0821.el10.x86_64//rpm", + "@jansson-0__2.14-3.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@json-glib-0__1.8.0-5.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@kmod-0__31-13.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libbpf-2__1.7.0-1.el10.x86_64//rpm", + "@libburn-0__1.5.6-6.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcbor-0__0.11.0-3.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libevent-0__2.1.12-16.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libfdt-0__1.7.0-12.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libfido2-0__1.14.0-7.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgomp-0__14.3.1-4.4.el10.x86_64//rpm", + "@libibverbs-0__61.0-1.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libisoburn-0__1.5.6-6.el10.x86_64//rpm", + "@libisofs-0__1.5.6-6.el10.x86_64//rpm", + "@libmnl-0__1.0.5-7.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnbd-0__1.24.1-1.el10.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.x86_64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.x86_64//rpm", + "@libnftnl-0__1.3.0-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libpcap-14__1.10.4-7.el10.x86_64//rpm", + "@libpng-2__1.6.40-10.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libselinux-utils-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libslirp-0__4.7.0-10.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libssh-0__0.12.0-2.el10.x86_64//rpm", + "@libssh-config-0__0.12.0-2.el10.x86_64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libtirpc-0__1.3.5-1.el10.x86_64//rpm", + "@libtpms-0__0.9.6-11.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libusb1-0__1.0.29-3.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libvirt-client-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@lz4-libs-0__1.9.4-8.el10.x86_64//rpm", + "@lzo-0__2.10-14.el10.x86_64//rpm", + "@lzop-0__1.04-16.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@nftables-1__1.1.5-3.el10.x86_64//rpm", + "@nmap-ncat-4__7.92-5.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@numad-0__0.5-50.20251104git.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pixman-0__0.43.4-2.el10.x86_64//rpm", + "@policycoreutils-0__3.10-1.el10.x86_64//rpm", + "@polkit-0__125-4.el10.x86_64//rpm", + "@polkit-libs-0__125-4.el10.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@procps-ng-0__4.0.4-11.el10.x86_64//rpm", + "@protobuf-c-0__1.5.0-6.el10.x86_64//rpm", + "@psmisc-0__23.6-8.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-display-virtio-vga-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-usb-host-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-device-usb-redirect-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@seabios-0__1.17.0-1.el10.x86_64//rpm", + "@seabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@seavgabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@selinux-policy-0__42.1.18-1.el10.x86_64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@snappy-0__1.1.10-7.el10.x86_64//rpm", + "@swtpm-0__0.9.0-2.el10.x86_64//rpm", + "@swtpm-libs-0__0.9.0-2.el10.x86_64//rpm", + "@swtpm-tools-0__0.9.0-2.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-container-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@tpm2-tss-0__4.1.3-6.el10.x86_64//rpm", + "@unbound-libs-0__1.24.2-7.el10.x86_64//rpm", + "@usbredir-0__0.13.0-6.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@virtiofsd-0__1.13.3-1.el10.x86_64//rpm", + "@xorriso-0__1.5.6-6.el10.x86_64//rpm", + "@xz-1__5.6.2-4.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + "@zstd-0__1.5.5-9.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "launcherbase_x86_64_cs9", + capabilities = { + "/usr/libexec/qemu-kvm": [ + "cap_net_bind_service", + ], + }, + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-11.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__82-1.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-2.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-8.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@gnutls-dane-0__3.8.10-3.el9.x86_64//rpm", + "@gnutls-utils-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iproute-0__6.17.0-2.el9.x86_64//rpm", + "@iproute-tc-0__6.17.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@jansson-0__2.14-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-0__28-11.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libbpf-2__1.5.0-3.el9.x86_64//rpm", + "@libburn-0__1.5.4-5.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-14.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__61.0-2.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libisoburn-0__1.5.4-5.el9.x86_64//rpm", + "@libisofs-0__1.5.4-4.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnftnl-0__1.2.6-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-14.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__61.0-2.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libssh-0__0.10.4-17.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-17.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtpms-0__0.9.6-11.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-client-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__82-1.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nftables-1__1.0.9-6.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-5.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-5.el9.x86_64//rpm", + "@polkit-0__0.117-14.el9.x86_64//rpm", + "@polkit-libs-0__0.117-14.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@protobuf-c-0__1.3.3-13.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-gpu-pci-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-display-virtio-vga-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-usb-host-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-device-usb-redirect-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.73-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@swtpm-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-libs-0__0.8.0-2.el9.x86_64//rpm", + "@swtpm-tools-0__0.8.0-2.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-container-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@unbound-libs-0__1.24.2-2.el9.x86_64//rpm", + "@usbredir-0__0.13.0-2.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@virtiofsd-0__1.13.0-1.el9.x86_64//rpm", + "@xorriso-0__1.5.4-5.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + + # EDV dependency - START + "@SDL2-0__2.26.0-1.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@adwaita-cursor-theme-0__40.1.1-3.el9.x86_64//rpm", + "@adwaita-icon-theme-0__40.1.1-3.el9.x86_64//rpm", + "@alsa-lib-0__1.2.13-2.el9.x86_64//rpm", + "@at-spi2-atk-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-atk-devel-0__2.38.0-4.el9.x86_64//rpm", + "@at-spi2-core-0__2.40.3-1.el9.x86_64//rpm", + "@at-spi2-core-devel-0__2.40.3-1.el9.x86_64//rpm", + "@atk-0__2.36.0-5.el9.x86_64//rpm", + "@atk-devel-0__2.36.0-5.el9.x86_64//rpm", + "@avahi-libs-0__0.8-22.el9.x86_64//rpm", + "@bluez-libs-0__5.72-4.el9.x86_64//rpm", + "@boost-iostreams-0__1.75.0-11.el9.x86_64//rpm", + "@boost-system-0__1.75.0-11.el9.x86_64//rpm", + "@boost-thread-0__1.75.0-11.el9.x86_64//rpm", + "@brlapi-0__0.8.2-4.el9.x86_64//rpm", + "@brotli-0__1.0.9-7.el9.x86_64//rpm", + "@brotli-devel-0__1.0.9-7.el9.x86_64//rpm", + "@bzip2-devel-0__1.0.8-10.el9.x86_64//rpm", + "@cairo-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-0__1.17.4-7.el9.x86_64//rpm", + "@cairo-gobject-devel-0__1.17.4-7.el9.x86_64//rpm", + "@cmake-filesystem-0__3.26.5-2.el9.x86_64//rpm", + "@colord-libs-0__1.4.5-4.el9.x86_64//rpm", + "@cryptsetup-libs-0__2.7.2-4.el9.x86_64//rpm", + "@cups-libs-1__2.3.3op2-33.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@dbus-devel-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@dejavu-sans-fonts-0__2.37-18.el9.x86_64//rpm", + "@elfutils-libelf-devel-0__0.193-1.el9.x86_64//rpm", + "@fdk-aac-free-0__2.0.0-8.el9.x86_64//rpm", + "@flac-libs-0__1.3.3-12.el9.x86_64//rpm", + "@fontconfig-0__2.14.0-2.el9.x86_64//rpm", + "@fontconfig-devel-0__2.14.0-2.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@freetype-0__2.10.4-11.el9.x86_64//rpm", + "@freetype-devel-0__2.10.4-11.el9.x86_64//rpm", + "@fribidi-0__1.0.10-6.el9.2.x86_64//rpm", + "@fribidi-devel-0__1.0.10-6.el9.2.x86_64//rpm", + "@fuse3-libs-0__3.10.2-9.el9.x86_64//rpm", + "@gdk-pixbuf2-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-devel-0__2.42.6-4.el9.x86_64//rpm", + "@gdk-pixbuf2-modules-0__2.42.6-4.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-devel-0__2.68.4-16.el9.x86_64//rpm", + "@graphite2-0__1.3.14-9.el9.x86_64//rpm", + "@graphite2-devel-0__1.3.14-9.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@gsm-0__1.0.19-6.el9.x86_64//rpm", + "@gtk-update-icon-cache-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-0__3.24.31-5.el9.x86_64//rpm", + "@gtk3-devel-0__3.24.31-5.el9.x86_64//rpm", + "@harfbuzz-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-devel-0__2.7.4-10.el9.x86_64//rpm", + "@harfbuzz-icu-0__2.7.4-10.el9.x86_64//rpm", + "@hicolor-icon-theme-0__0.17-13.el9.x86_64//rpm", + "@hwdata-0__0.348-9.22.el9.x86_64//rpm", + "@jbigkit-libs-0__2.1-23.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-686.el9.x86_64//rpm", + "@langpacks-core-font-en-0__3.0-16.el9.x86_64//rpm", + "@lcms2-0__2.12-3.el9.x86_64//rpm", + "@libX11-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-common-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-devel-0__1.7.0-11.el9.x86_64//rpm", + "@libX11-xcb-0__1.7.0-11.el9.x86_64//rpm", + "@libXau-0__1.0.9-8.el9.x86_64//rpm", + "@libXau-devel-0__1.0.9-8.el9.x86_64//rpm", + "@libXcomposite-0__0.4.5-7.el9.x86_64//rpm", + "@libXcomposite-devel-0__0.4.5-7.el9.x86_64//rpm", + "@libXcursor-0__1.2.0-7.el9.x86_64//rpm", + "@libXcursor-devel-0__1.2.0-7.el9.x86_64//rpm", + "@libXdamage-0__1.1.5-7.el9.x86_64//rpm", + "@libXdamage-devel-0__1.1.5-7.el9.x86_64//rpm", + "@libXext-0__1.3.4-8.el9.x86_64//rpm", + "@libXext-devel-0__1.3.4-8.el9.x86_64//rpm", + "@libXfixes-0__5.0.3-16.el9.x86_64//rpm", + "@libXfixes-devel-0__5.0.3-16.el9.x86_64//rpm", + "@libXft-0__2.3.3-8.el9.x86_64//rpm", + "@libXft-devel-0__2.3.3-8.el9.x86_64//rpm", + "@libXi-0__1.7.10-8.el9.x86_64//rpm", + "@libXi-devel-0__1.7.10-8.el9.x86_64//rpm", + "@libXinerama-0__1.1.4-10.el9.x86_64//rpm", + "@libXinerama-devel-0__1.1.4-10.el9.x86_64//rpm", + "@libXrandr-0__1.5.2-8.el9.x86_64//rpm", + "@libXrandr-devel-0__1.5.2-8.el9.x86_64//rpm", + "@libXrender-0__0.9.10-16.el9.x86_64//rpm", + "@libXrender-devel-0__0.9.10-16.el9.x86_64//rpm", + "@libXtst-0__1.2.3-16.el9.x86_64//rpm", + "@libXtst-devel-0__1.2.3-16.el9.x86_64//rpm", + "@libXxf86vm-0__1.1.4-18.el9.x86_64//rpm", + "@libasyncns-0__0.8-22.el9.x86_64//rpm", + "@libatomic-0__11.5.0-7.el9.x86_64//rpm", + "@libblkid-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libblkio-0__1.5.0-1.el9.x86_64//rpm", + "@libbpf-devel-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libdatrie-0__0.2.13-4.el9.x86_64//rpm", + "@libdatrie-devel-0__0.2.13-4.el9.x86_64//rpm", + "@libdrm-0__2.4.123-2.el9.x86_64//rpm", + "@libedit-0__3.1-38.20210216cvs.el9.x86_64//rpm", + "@libepoxy-0__1.5.5-4.el9.x86_64//rpm", + "@libepoxy-devel-0__1.5.5-4.el9.x86_64//rpm", + "@libffi-devel-0__3.4.2-8.el9.x86_64//rpm", + "@libfontenc-0__1.1.3-17.el9.x86_64//rpm", + "@libglvnd-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-core-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-devel-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-egl-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-gles-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-glx-1__1.3.4-1.el9.x86_64//rpm", + "@libglvnd-opengl-1__1.3.4-1.el9.x86_64//rpm", + "@libgusb-0__0.3.8-2.el9.x86_64//rpm", + "@libicu-0__67.1-9.el9.x86_64//rpm", + "@libicu-devel-0__67.1-9.el9.x86_64//rpm", + "@libiscsi-0__1.19.0-5.el9.x86_64//rpm", + "@libjpeg-turbo-0__2.0.90-7.el9.x86_64//rpm", + "@libldac-0__2.0.2.3-10.el9.x86_64//rpm", + "@libmount-devel-0__2.37.4-21.el9.x86_64//rpm", + "@libogg-2__1.3.4-6.el9.x86_64//rpm", + "@libpciaccess-0__0.16-7.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpng-devel-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-webkitgtk4-0__0.4.15-35.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@librados2-2__16.2.4-5.el9.x86_64//rpm", + "@librbd1-2__16.2.4-5.el9.x86_64//rpm", + "@libsbc-0__1.4-9.el9.x86_64//rpm", + "@libselinux-devel-0__3.6-3.el9.x86_64//rpm", + "@libsepol-devel-0__3.6-3.el9.x86_64//rpm", + "@libsndfile-0__1.0.31-9.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libstemmer-0__0-18.585svn.el9.x86_64//rpm", + "@libthai-0__0.1.28-8.el9.x86_64//rpm", + "@libthai-devel-0__0.1.28-8.el9.x86_64//rpm", + "@libtiff-0__4.4.0-13.el9.x86_64//rpm", + "@libtiff-devel-0__4.4.0-13.el9.x86_64//rpm", + "@libtracker-sparql-0__3.1.2-3.el9.x86_64//rpm", + "@libvorbis-1__1.3.7-5.el9.x86_64//rpm", + "@libwayland-client-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-cursor-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-egl-0__1.21.0-1.el9.x86_64//rpm", + "@libwayland-server-0__1.21.0-1.el9.x86_64//rpm", + "@libwebp-0__1.2.0-8.el9.x86_64//rpm", + "@libxcb-0__1.13.1-9.el9.x86_64//rpm", + "@libxcb-devel-0__1.13.1-9.el9.x86_64//rpm", + "@libxdp-0__1.5.3-1.el9.x86_64//rpm", + "@libxdp-devel-0__1.5.3-1.el9.x86_64//rpm", + "@libxkbcommon-0__1.0.3-4.el9.x86_64//rpm", + "@libxkbcommon-devel-0__1.0.3-4.el9.x86_64//rpm", + "@libxml2-devel-0__2.9.13-9.el9.x86_64//rpm", + "@libxshmfence-0__1.3-10.el9.x86_64//rpm", + "@libzstd-devel-0__1.5.5-1.el9.x86_64//rpm", + "@llvm-filesystem-0__20.1.8-3.el9.x86_64//rpm", + "@llvm-libs-0__20.1.8-3.el9.x86_64//rpm", + "@mesa-dri-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-filesystem-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libEGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libGL-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libgbm-devel-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-libglapi-0__24.2.8-2.el9.x86_64//rpm", + "@mesa-vulkan-drivers-0__24.2.8-2.el9.x86_64//rpm", + "@mkfontscale-0__1.2.1-3.el9.x86_64//rpm", + "@openjpeg2-0__2.4.0-8.el9.x86_64//rpm", + "@opus-0__1.3.1-10.el9.x86_64//rpm", + "@pango-0__1.48.7-3.el9.x86_64//rpm", + "@pango-devel-0__1.48.7-3.el9.x86_64//rpm", + "@pcre-cpp-0__8.44-4.el9.x86_64//rpm", + "@pcre-devel-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf16-0__8.44-4.el9.x86_64//rpm", + "@pcre-utf32-0__8.44-4.el9.x86_64//rpm", + "@pcre2-devel-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf16-0__10.40-6.el9.x86_64//rpm", + "@pcre2-utf32-0__10.40-6.el9.x86_64//rpm", + "@pipewire-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-alsa-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-jack-audio-connection-kit-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-libs-0__1.0.1-1.el9.x86_64//rpm", + "@pipewire-media-session-0__0.3.32-3.el9.x86_64//rpm", + "@pipewire-pulseaudio-0__1.0.1-1.el9.x86_64//rpm", + "@pixman-devel-0__0.40.0-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@pulseaudio-libs-0__15.0-3.el9.x86_64//rpm", + "@pulseaudio-libs-glib2-0__15.0-3.el9.x86_64//rpm", + "@rtkit-0__0.11-29.el9.x86_64//rpm", + "@shared-mime-info-0__2.1-5.el9.x86_64//rpm", + "@sound-theme-freedesktop-0__0.8-17.el9.x86_64//rpm", + "@sysprof-capture-devel-0__3.40.1-3.el9.x86_64//rpm", + "@usbutils-0__017-1.el9.x86_64//rpm", + "@vte-profile-0__0.64.2-2.el9.x86_64//rpm", + "@vte291-0__0.64.2-2.el9.x86_64//rpm", + "@vulkan-loader-0__1.4.304.0-1.el9.x86_64//rpm", + "@vulkan-tools-0__1.4.304.0-1.el9.x86_64//rpm", + "@wayland-devel-0__1.21.0-1.el9.x86_64//rpm", + "@webkit2gtk3-jsc-0__2.48.3-1.el9.x86_64//rpm", + "@webrtc-audio-processing-0__0.3.1-8.el9.x86_64//rpm", + "@xdg-dbus-proxy-0__0.1.3-1.el9.x86_64//rpm", + "@xkeyboard-config-0__2.33-2.el9.x86_64//rpm", + "@xml-common-0__0.6.3-58.el9.x86_64//rpm", + "@xorg-x11-fonts-ISO8859-1-100dpi-0__7.5-33.el9.x86_64//rpm", + "@xorg-x11-proto-devel-0__2024.1-1.el9.x86_64//rpm", + "@xz-devel-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-devel-0__1.2.11-41.el9.x86_64//rpm", + # EDV dependency - END + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/sbin/iptables": "/usr/sbin/iptables-legacy", + "/usr/bin/nc": "/usr/bin/ncat", + # Create a symlink to OVMF binary with SEV support (edk2 rpm does not do that for unknown reason) + "/usr/share/OVMF/OVMF_CODE.cc.fd": "../edk2/ovmf/OVMF_CODE.cc.fd", + "/usr/share/OVMF/OVMF.amdsev.fd": "../edk2/ovmf/OVMF.amdsev.fd", + "/usr/share/OVMF/OVMF.inteltdx.fd": "../edk2/ovmf/OVMF.inteltdx.fd", + "/usr/share/OVMF/OVMF.inteltdx.secboot.fd": "../edk2/ovmf/OVMF.inteltdx.secboot.fd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-4.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-10.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-10.el9.x86_64//rpm", + "@ca-certificates-0__2024.2.69_v8.0.303-91.4.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-26.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-26.el9.x86_64//rpm", + "@coreutils-single-0__8.32-39.el9.x86_64//rpm", + "@cracklib-0__2.9.6-27.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-27.el9.x86_64//rpm", + "@crypto-policies-0__20250128-1.git5269e22.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__78-2.el9.x86_64//rpm", + "@device-mapper-9__1.02.202-6.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.202-6.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-1.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-2.el9.x86_64//rpm", + "@elfutils-libelf-0__0.192-5.el9.x86_64//rpm", + "@expat-0__2.5.0-4.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-16.el9.x86_64//rpm", + "@glibc-0__2.34-168.el9.x86_64//rpm", + "@glibc-common-0__2.34-168.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-168.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-4.el9.x86_64//rpm", + "@gnutls-0__3.8.3-6.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-6.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-2.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.18.el9.x86_64//rpm", + "@iproute-0__6.11.0-1.el9.x86_64//rpm", + "@iproute-tc-0__6.11.0-1.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-10.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-6.el9.x86_64//rpm", + "@less-0__590-5.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-4.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-21.el9.x86_64//rpm", + "@libbpf-2__1.5.0-1.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-7.el9.x86_64//rpm", + "@libcap-0__2.48-9.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-7.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-31.el9.x86_64//rpm", + "@libdb-0__5.3.28-55.el9.x86_64//rpm", + "@libeconf-0__0.4.1-4.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-21.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-5.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-5.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-3.el9.x86_64//rpm", + "@libibverbs-0__54.0-1.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-21.el9.x86_64//rpm", + "@libnbd-0__1.20.3-1.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-12.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__54.0-1.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-2.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-21.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-13.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-13.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-5.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.5-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-21.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-daemon-log-0__10.10.0-7.el9.x86_64//rpm", + "@libvirt-libs-0__10.10.0-7.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-9.el9.x86_64//rpm", + "@libxslt-0__1.1.34-9.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-7.el9.x86_64//rpm", + "@ncurses-base-0__6.2-10.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-10.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__78-2.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-1.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-4.el9.x86_64//rpm", + "@openssl-1__3.2.2-6.el9.x86_64//rpm", + "@openssl-libs-1__3.2.2-6.el9.x86_64//rpm", + "@osinfo-db-0__20240701-3.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.25.3-3.el9.x86_64//rpm", + "@p11-kit-trust-0__0.25.3-3.el9.x86_64//rpm", + "@pam-0__1.5.1-23.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-2.1.el9.x86_64//rpm", + "@polkit-0__0.117-13.el9.x86_64//rpm", + "@polkit-libs-0__0.117-13.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__9.1.0-15.el9.x86_64//rpm", + "@qemu-kvm-common-17__9.1.0-15.el9.x86_64//rpm", + "@qemu-kvm-core-17__9.1.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-37.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-37.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-37.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.53-2.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.53-2.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-12.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-7.el9.x86_64//rpm", + "@systemd-0__252-51.el9.x86_64//rpm", + "@systemd-container-0__252-51.el9.x86_64//rpm", + "@systemd-libs-0__252-51.el9.x86_64//rpm", + "@systemd-pam-0__252-51.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-51.el9.x86_64//rpm", + "@tar-2__1.34-7.el9.x86_64//rpm", + "@tzdata-0__2025a-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-21.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-21.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-21.el9.x86_64//rpm", + "@which-0__2.21-29.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/qemu-kvm": "/usr/libexec/qemu-kvm", + "/etc/ssl/certs/ca-certificates.crt": "/usr/share/pki/ca-trust-source/ca-bundle.trust.p11-kit", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-0__1.0.8-25.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@capstone-0__5.0.1-6.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.s390x//rpm", + "@device-mapper-10__1.02.210-2.el10.s390x//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.s390x//rpm", + "@diffutils-0__3.10-8.el10.s390x//rpm", + "@duktape-0__2.7.0-10.el10.s390x//rpm", + "@edk2-ovmf-0__20251114-4.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@fuse-0__2.9.9-25.el10.s390x//rpm", + "@fuse-common-0__3.16.2-5.el10.s390x//rpm", + "@fuse-libs-0__2.9.9-25.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@gettext-0__0.22.5-6.el10.s390x//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.s390x//rpm", + "@gettext-libs-0__0.22.5-6.el10.s390x//rpm", + "@gettext-runtime-0__0.22.5-6.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnupg2-0__2.4.5-4.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@guestfs-tools-0__1.54.0-7.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@hexedit-0__1.6-8.el10.s390x//rpm", + "@hivex-libs-0__1.3.24-2.el10.s390x//rpm", + "@hwdata-0__0.379-10.8.el10.s390x//rpm", + "@iproute-0__6.17.0-1.el10.s390x//rpm", + "@iproute-tc-0__6.17.0-1.el10.s390x//rpm", + "@iptables-libs-0__1.8.11-12.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@json-glib-0__1.8.0-5.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@kmod-0__31-13.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@less-0__661-3.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libarchive-0__3.7.7-4.el10.s390x//rpm", + "@libassuan-0__2.5.6-6.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libbpf-2__1.7.0-1.el10.s390x//rpm", + "@libbrotli-0__1.1.0-7.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcbor-0__0.11.0-3.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libconfig-0__1.7.3-10.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libevent-0__2.1.12-16.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libfdt-0__1.7.0-12.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libfido2-0__1.14.0-7.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libgcrypt-0__1.11.0-6.el10.s390x//rpm", + "@libgomp-0__14.3.1-4.4.el10.s390x//rpm", + "@libgpg-error-0__1.50-2.el10.s390x//rpm", + "@libguestfs-1__1.58.1-2.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libksba-0__1.6.7-2.el10.s390x//rpm", + "@libmnl-0__1.0.5-7.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnbd-0__1.24.1-1.el10.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.s390x//rpm", + "@libnfnetlink-0__1.0.2-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libosinfo-0__1.11.0-8.el10.s390x//rpm", + "@libpng-2__1.6.40-10.el10.s390x//rpm", + "@libpsl-0__0.21.5-6.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libseccomp-0__2.5.6-1.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libselinux-utils-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libslirp-0__4.7.0-10.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libsoup3-0__3.6.5-5.el10.s390x//rpm", + "@libssh-0__0.12.0-2.el10.s390x//rpm", + "@libssh-config-0__0.12.0-2.el10.s390x//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libtirpc-0__1.3.5-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libusb1-0__1.0.29-3.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-secret-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-libs-0__11.10.0-4.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@libxslt-0__1.1.39-8.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@lua-libs-0__5.4.6-7.el10.s390x//rpm", + "@lz4-libs-0__1.9.4-8.el10.s390x//rpm", + "@lzo-0__2.10-14.el10.s390x//rpm", + "@lzop-0__1.04-16.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@npth-0__1.6-21.el10.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el10.s390x//rpm", + "@openldap-0__2.6.10-1.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@osinfo-db-0__20250606-1.el10.s390x//rpm", + "@osinfo-db-tools-0__1.11.0-8.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@parted-0__3.6-7.el10.s390x//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pixman-0__0.43.4-2.el10.s390x//rpm", + "@policycoreutils-0__3.10-1.el10.s390x//rpm", + "@polkit-0__125-4.el10.s390x//rpm", + "@polkit-libs-0__125-4.el10.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@psmisc-0__23.6-8.el10.s390x//rpm", + "@publicsuffix-list-dafsa-0__20240107-5.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.s390x//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@rpm-0__4.19.1.1-23.el10.s390x//rpm", + "@rpm-libs-0__4.19.1.1-23.el10.s390x//rpm", + "@rpm-sequoia-0__1.10.1.1-2.el10.s390x//rpm", + "@scrub-0__2.6.1-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@selinux-policy-0__42.1.18-1.el10.s390x//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@snappy-0__1.1.10-7.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@systemd-0__257-23.el10.s390x//rpm", + "@systemd-container-0__257-23.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@systemd-pam-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@tpm2-tss-0__4.1.3-6.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@which-0__2.21-44.el10.s390x//rpm", + "@xz-1__5.6.2-4.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + "@zstd-0__1.5.5-9.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@augeas-libs-0__1.14.1-3.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-0__1.0.8-11.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@capstone-0__4.0.2-10.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@device-mapper-9__1.02.206-2.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.s390x//rpm", + "@diffutils-0__3.7-12.el9.s390x//rpm", + "@edk2-ovmf-0__20241117-8.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.s390x//rpm", + "@fuse-0__2.9.9-17.el9.s390x//rpm", + "@fuse-common-0__3.10.2-9.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@gettext-0__0.21-8.el9.s390x//rpm", + "@gettext-libs-0__0.21-8.el9.s390x//rpm", + "@glib-networking-0__2.68.3-3.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnupg2-0__2.3.3-5.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gsettings-desktop-schemas-0__40.0-8.el9.s390x//rpm", + "@guestfs-tools-0__1.52.2-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@hexedit-0__1.6-1.el9.s390x//rpm", + "@hivex-libs-0__1.3.24-1.el9.s390x//rpm", + "@hwdata-0__0.348-9.22.el9.s390x//rpm", + "@iproute-0__6.17.0-2.el9.s390x//rpm", + "@iproute-tc-0__6.17.0-2.el9.s390x//rpm", + "@iptables-libs-0__1.8.10-11.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@json-glib-0__1.6.6-1.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-0__28-11.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@less-0__590-6.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libarchive-0__3.5.3-6.el9.s390x//rpm", + "@libassuan-0__2.5.5-3.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libbpf-2__1.5.0-3.el9.s390x//rpm", + "@libbrotli-0__1.0.9-9.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libconfig-0__1.7.2-9.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libevent-0__2.1.12-8.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libfdt-0__1.6.0-7.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgomp-0__11.5.0-14.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libguestfs-1__1.54.0-9.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libksba-0__1.5.1-7.el9.s390x//rpm", + "@libmnl-0__1.0.4-16.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.s390x//rpm", + "@libnfnetlink-0__1.0.1-23.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libosinfo-0__1.10.0-1.el9.s390x//rpm", + "@libpng-2__1.6.37-14.el9.s390x//rpm", + "@libproxy-0__0.4.15-35.el9.s390x//rpm", + "@libpsl-0__0.21.1-5.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libselinux-utils-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libslirp-0__4.4.0-8.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libsoup-0__2.72.0-10.el9.s390x//rpm", + "@libssh-0__0.10.4-17.el9.s390x//rpm", + "@libssh-config-0__0.10.4-17.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libusbx-0__1.0.26-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-secret-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-libs-0__11.9.0-1.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@libxslt-0__1.1.34-12.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lua-libs-0__5.4.4-4.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@lzo-0__2.10-7.el9.s390x//rpm", + "@lzop-0__1.04-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@npth-0__1.6-8.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openldap-0__2.6.8-4.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@osinfo-db-0__20250606-1.el9.s390x//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@parted-0__3.5-3.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pixman-0__0.40.0-6.el9.s390x//rpm", + "@policycoreutils-0__3.6-5.el9.s390x//rpm", + "@polkit-0__0.117-14.el9.s390x//rpm", + "@polkit-libs-0__0.117-14.el9.s390x//rpm", + "@popt-0__1.18-8.el9.s390x//rpm", + "@psmisc-0__23.4-3.el9.s390x//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.s390x//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@rpm-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.s390x//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.s390x//rpm", + "@scrub-0__2.6.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@selinux-policy-0__38.1.73-1.el9.s390x//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@snappy-0__1.1.8-8.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@systemd-0__252-64.el9.s390x//rpm", + "@systemd-container-0__252-64.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@systemd-pam-0__252-64.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@which-0__2.21-30.el9.s390x//rpm", + "@xz-0__5.2.5-8.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + "@zstd-0__1.5.5-1.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@augeas-libs-0__1.14.2-0.9.20260120gitf4135e3.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-0__1.0.8-25.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@capstone-0__5.0.1-6.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.x86_64//rpm", + "@device-mapper-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.x86_64//rpm", + "@diffutils-0__3.10-8.el10.x86_64//rpm", + "@dmidecode-1__3.6-5.el10.x86_64//rpm", + "@duktape-0__2.7.0-10.el10.x86_64//rpm", + "@edk2-ovmf-0__20251114-4.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@fuse-0__2.9.9-25.el10.x86_64//rpm", + "@fuse-common-0__3.16.2-5.el10.x86_64//rpm", + "@fuse-libs-0__2.9.9-25.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@gettext-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-envsubst-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-libs-0__0.22.5-6.el10.x86_64//rpm", + "@gettext-runtime-0__0.22.5-6.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnupg2-0__2.4.5-4.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@guestfs-tools-0__1.54.0-7.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@hexedit-0__1.6-8.el10.x86_64//rpm", + "@hivex-libs-0__1.3.24-2.el10.x86_64//rpm", + "@hwdata-0__0.379-10.8.el10.x86_64//rpm", + "@iproute-0__6.17.0-1.el10.x86_64//rpm", + "@iproute-tc-0__6.17.0-1.el10.x86_64//rpm", + "@iptables-libs-0__1.8.11-12.el10.x86_64//rpm", + "@ipxe-roms-qemu-0__20240119-5.gitde8a0821.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@json-glib-0__1.8.0-5.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@kmod-0__31-13.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@less-0__661-3.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libarchive-0__3.7.7-4.el10.x86_64//rpm", + "@libassuan-0__2.5.6-6.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libbpf-2__1.7.0-1.el10.x86_64//rpm", + "@libbrotli-0__1.1.0-7.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcbor-0__0.11.0-3.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libconfig-0__1.7.3-10.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libevent-0__2.1.12-16.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libfdt-0__1.7.0-12.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libfido2-0__1.14.0-7.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgcrypt-0__1.11.0-6.el10.x86_64//rpm", + "@libgomp-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgpg-error-0__1.50-2.el10.x86_64//rpm", + "@libguestfs-1__1.58.1-2.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libksba-0__1.6.7-2.el10.x86_64//rpm", + "@libmnl-0__1.0.5-7.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnbd-0__1.24.1-1.el10.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-12.el10.x86_64//rpm", + "@libnfnetlink-0__1.0.2-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libosinfo-0__1.11.0-8.el10.x86_64//rpm", + "@libpng-2__1.6.40-10.el10.x86_64//rpm", + "@libpsl-0__0.21.5-6.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libselinux-utils-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libslirp-0__4.7.0-10.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libsoup3-0__3.6.5-5.el10.x86_64//rpm", + "@libssh-0__0.12.0-2.el10.x86_64//rpm", + "@libssh-config-0__0.12.0-2.el10.x86_64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libtirpc-0__1.3.5-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libusb1-0__1.0.29-3.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libvirt-daemon-common-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-daemon-log-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@libxslt-0__1.1.39-8.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@lua-libs-0__5.4.6-7.el10.x86_64//rpm", + "@lz4-libs-0__1.9.4-8.el10.x86_64//rpm", + "@lzo-0__2.10-14.el10.x86_64//rpm", + "@lzop-0__1.04-16.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@npth-0__1.6-21.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@numad-0__0.5-50.20251104git.el10.x86_64//rpm", + "@openldap-0__2.6.10-1.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@osinfo-db-0__20250606-1.el10.x86_64//rpm", + "@osinfo-db-tools-0__1.11.0-8.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@parted-0__3.6-7.el10.x86_64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pixman-0__0.43.4-2.el10.x86_64//rpm", + "@policycoreutils-0__3.10-1.el10.x86_64//rpm", + "@polkit-0__125-4.el10.x86_64//rpm", + "@polkit-libs-0__125-4.el10.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@psmisc-0__23.6-8.el10.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20240107-5.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-common-18__10.1.0-13.el10.x86_64//rpm", + "@qemu-kvm-core-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@rpm-0__4.19.1.1-23.el10.x86_64//rpm", + "@rpm-libs-0__4.19.1.1-23.el10.x86_64//rpm", + "@rpm-sequoia-0__1.10.1.1-2.el10.x86_64//rpm", + "@scrub-0__2.6.1-11.el10.x86_64//rpm", + "@seabios-0__1.17.0-1.el10.x86_64//rpm", + "@seabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@seavgabios-bin-0__1.17.0-1.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@selinux-policy-0__42.1.18-1.el10.x86_64//rpm", + "@selinux-policy-targeted-0__42.1.18-1.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@snappy-0__1.1.10-7.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-container-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@tpm2-tss-0__4.1.3-6.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@which-0__2.21-44.el10.x86_64//rpm", + "@xz-1__5.6.2-4.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + "@zstd-0__1.5.5-9.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libguestfs-tools_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@adobe-source-code-pro-fonts-0__2.030.1.050-12.el9.1.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@augeas-libs-0__1.14.1-3.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-0__1.0.8-11.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@capstone-0__4.0.2-10.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@daxctl-libs-0__82-1.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@diffutils-0__3.7-12.el9.x86_64//rpm", + "@dmidecode-1__3.6-2.el9.x86_64//rpm", + "@edk2-ovmf-0__20241117-8.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@fips-provider-next-0__1.2.0-7.el9.x86_64//rpm", + "@fonts-filesystem-1__2.0.5-7.el9.1.x86_64//rpm", + "@fuse-0__2.9.9-17.el9.x86_64//rpm", + "@fuse-common-0__3.10.2-9.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@gettext-0__0.21-8.el9.x86_64//rpm", + "@gettext-libs-0__0.21-8.el9.x86_64//rpm", + "@glib-networking-0__2.68.3-3.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnupg2-0__2.3.3-5.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gsettings-desktop-schemas-0__40.0-8.el9.x86_64//rpm", + "@guestfs-tools-0__1.52.2-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@hexedit-0__1.6-1.el9.x86_64//rpm", + "@hivex-libs-0__1.3.24-1.el9.x86_64//rpm", + "@hwdata-0__0.348-9.22.el9.x86_64//rpm", + "@iproute-0__6.17.0-2.el9.x86_64//rpm", + "@iproute-tc-0__6.17.0-2.el9.x86_64//rpm", + "@iptables-libs-0__1.8.10-11.el9.x86_64//rpm", + "@ipxe-roms-qemu-0__20200823-9.git4bd064de.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@json-glib-0__1.6.6-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-0__28-11.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@less-0__590-6.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libarchive-0__3.5.3-6.el9.x86_64//rpm", + "@libassuan-0__2.5.5-3.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libbpf-2__1.5.0-3.el9.x86_64//rpm", + "@libbrotli-0__1.0.9-9.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libconfig-0__1.7.2-9.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libevent-0__2.1.12-8.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libfdt-0__1.6.0-7.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgomp-0__11.5.0-14.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libguestfs-1__1.54.0-9.el9.x86_64//rpm", + "@libibverbs-0__61.0-2.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libksba-0__1.5.1-7.el9.x86_64//rpm", + "@libmnl-0__1.0.4-16.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnetfilter_conntrack-0__1.0.9-1.el9.x86_64//rpm", + "@libnfnetlink-0__1.0.1-23.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libosinfo-0__1.10.0-1.el9.x86_64//rpm", + "@libpmem-0__1.12.1-1.el9.x86_64//rpm", + "@libpng-2__1.6.37-14.el9.x86_64//rpm", + "@libproxy-0__0.4.15-35.el9.x86_64//rpm", + "@libpsl-0__0.21.1-5.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@librdmacm-0__61.0-2.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libselinux-utils-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libslirp-0__4.4.0-8.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libsoup-0__2.72.0-10.el9.x86_64//rpm", + "@libssh-0__0.10.4-17.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-17.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libtool-ltdl-0__2.4.6-46.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libusbx-0__1.0.26-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-daemon-common-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-qemu-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-secret-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-driver-storage-core-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-daemon-log-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@libxslt-0__1.1.34-12.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lua-libs-0__5.4.4-4.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@lzo-0__2.10-7.el9.x86_64//rpm", + "@lzop-0__1.04-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@ndctl-libs-0__82-1.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@npth-0__1.6-8.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@numad-0__0.5-37.20150602git.el9.x86_64//rpm", + "@openldap-0__2.6.8-4.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@osinfo-db-0__20250606-1.el9.x86_64//rpm", + "@osinfo-db-tools-0__1.10.0-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@parted-0__3.5-3.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pixman-0__0.40.0-6.el9.x86_64//rpm", + "@policycoreutils-0__3.6-5.el9.x86_64//rpm", + "@polkit-0__0.117-14.el9.x86_64//rpm", + "@polkit-libs-0__0.117-14.el9.x86_64//rpm", + "@popt-0__1.18-8.el9.x86_64//rpm", + "@psmisc-0__23.4-3.el9.x86_64//rpm", + "@publicsuffix-list-dafsa-0__20210518-3.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-common-17__10.1.0-10.el9.x86_64//rpm", + "@qemu-kvm-core-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@rpm-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-libs-0__4.16.1.3-40.el9.x86_64//rpm", + "@rpm-plugin-selinux-0__4.16.1.3-40.el9.x86_64//rpm", + "@scrub-0__2.6.1-4.el9.x86_64//rpm", + "@seabios-0__1.16.3-4.el9.x86_64//rpm", + "@seabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@seavgabios-bin-0__1.16.3-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@selinux-policy-0__38.1.73-1.el9.x86_64//rpm", + "@selinux-policy-targeted-0__38.1.73-1.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@snappy-0__1.1.8-8.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-container-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@which-0__2.21-30.el9.x86_64//rpm", + "@xz-0__5.2.5-8.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + "@zstd-0__1.5.5-1.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libnbd-0__1.24.1-1.el10.aarch64//rpm", + "@libnbd-devel-0__1.24.1-1.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libpkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxml2-0__2.12.5-10.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libnbd-0__1.20.3-4.el9.aarch64//rpm", + "@libnbd-devel-0__1.20.3-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libnbd-0__1.24.1-1.el10.s390x//rpm", + "@libnbd-devel-0__1.24.1-1.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libpkgconf-0__2.1.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pkgconf-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libnbd-0__1.20.3-4.el9.s390x//rpm", + "@libnbd-devel-0__1.20.3-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libnbd-0__1.24.1-1.el10.x86_64//rpm", + "@libnbd-devel-0__1.24.1-1.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libpkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libnbd-devel_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libnbd-0__1.20.3-4.el9.x86_64//rpm", + "@libnbd-devel-0__1.20.3-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@json-c-0__0.18-3.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcbor-0__0.11.0-3.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libfido2-0__1.14.0-7.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libnl3-0__3.11.0-1.el10.aarch64//rpm", + "@libpkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libssh-0__0.12.0-2.el10.aarch64//rpm", + "@libssh-config-0__0.12.0-2.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libtirpc-0__1.3.5-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libvirt-devel-0__11.10.0-4.el10.aarch64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libxml2-0__2.12.5-10.el10.aarch64//rpm", + "@lz4-libs-0__1.9.4-8.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.aarch64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libssh-0__0.10.4-17.el9.aarch64//rpm", + "@libssh-config-0__0.10.4-17.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libtirpc-0__1.3.3-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libvirt-devel-0__11.9.0-1.el9.aarch64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxml2-0__2.9.13-14.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcbor-0__0.11.0-3.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libfido2-0__1.14.0-7.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libpkgconf-0__2.1.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libssh-0__0.12.0-2.el10.s390x//rpm", + "@libssh-config-0__0.12.0-2.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libtirpc-0__1.3.5-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libvirt-devel-0__11.10.0-4.el10.s390x//rpm", + "@libvirt-libs-0__11.10.0-4.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxml2-0__2.12.5-10.el10.s390x//rpm", + "@lz4-libs-0__1.9.4-8.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pkgconf-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.s390x//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libssh-0__0.10.4-17.el9.s390x//rpm", + "@libssh-config-0__0.10.4-17.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libtirpc-0__1.3.3-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libvirt-devel-0__11.9.0-1.el9.s390x//rpm", + "@libvirt-libs-0__11.9.0-1.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxml2-0__2.9.13-14.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@numactl-libs-0__2.0.19-3.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.28-27.el10.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.28-27.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcbor-0__0.11.0-3.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libfido2-0__1.14.0-7.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libpkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libssh-0__0.12.0-2.el10.x86_64//rpm", + "@libssh-config-0__0.12.0-2.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libtirpc-0__1.3.5-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libvirt-devel-0__11.10.0-4.el10.x86_64//rpm", + "@libvirt-libs-0__11.10.0-4.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxml2-0__2.12.5-10.el10.x86_64//rpm", + "@lz4-libs-0__1.9.4-8.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "libvirt-devel_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@cyrus-sasl-gssapi-0__2.1.27-21.el9.x86_64//rpm", + "@cyrus-sasl-lib-0__2.1.27-21.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@fips-provider-next-0__1.2.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libssh-0__0.10.4-17.el9.x86_64//rpm", + "@libssh-config-0__0.10.4-17.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libtirpc-0__1.3.3-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libvirt-devel-0__11.9.0-1.el9.x86_64//rpm", + "@libvirt-libs-0__11.9.0-1.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxml2-0__2.9.13-14.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_aarch64_cs10", + rpms = [ + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-langpack-es-0__2.39-114.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_aarch64_cs9", + rpms = [ + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-langpack-en-0__2.34-256.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_s390x_cs10", + rpms = [ + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-langpack-ga-0__2.39-114.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_s390x_cs9", + rpms = [ + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-langpack-et-0__2.34-256.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_x86_64_cs10", + rpms = [ + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-langpack-fa-0__2.39-114.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@passt-0__0__caret__20251210.gd04c480-3.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "passt_tree_x86_64_cs9", + rpms = [ + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-langpack-eu-0__2.34-256.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@passt-0__0__caret__20250512.g8ec1341-2.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@dbus-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-broker-0__36-4.el10.aarch64//rpm", + "@dbus-common-1__1.14.10-5.el10.aarch64//rpm", + "@device-mapper-10__1.02.210-2.el10.aarch64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.aarch64//rpm", + "@device-mapper-multipath-libs-0__0.9.9-15.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libseccomp-0__2.5.6-1.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@qemu-pr-helper-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@systemd-0__257-23.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@systemd-pam-0__257-23.el10.aarch64//rpm", + "@userspace-rcu-0__0.14.0-7.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-44.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@qemu-pr-helper-17__10.1.0-14.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@systemd-0__252-64.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@systemd-pam-0__252-64.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-64.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@dbus-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-broker-0__36-4.el10.x86_64//rpm", + "@dbus-common-1__1.14.10-5.el10.x86_64//rpm", + "@device-mapper-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-multipath-libs-0__0.9.9-15.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@qemu-pr-helper-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@userspace-rcu-0__0.14.0-7.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "pr-helper_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-multipath-libs-0__0.8.7-44.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@qemu-pr-helper-17__10.1.0-14.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@userspace-rcu-0__0.12.1-6.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@binutils-0__2.41-63.el10.aarch64//rpm", + "@binutils-gold-0__2.41-63.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cpp-0__14.3.1-4.4.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el10.aarch64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el10.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el10.aarch64//rpm", + "@elfutils-libs-0__0.194-1.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-devel-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@glibc-static-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@jansson-0__2.14-3.el10.aarch64//rpm", + "@json-c-0__0.18-3.el10.aarch64//rpm", + "@kernel-headers-0__6.12.0-211.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libasan-0__14.3.1-4.4.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libgomp-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmpc-0__1.3.1-7.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libpkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsss_idmap-0__2.12.0-1.el10.aarch64//rpm", + "@libsss_nss_idmap-0__2.12.0-1.el10.aarch64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libubsan-0__14.3.1-4.4.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libxcrypt-devel-0__4.4.36-10.el10.aarch64//rpm", + "@libxcrypt-static-0__4.4.36-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@make-1__4.4.1-9.el10.aarch64//rpm", + "@mpdecimal-0__2.5.1-12.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@pkgconf-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.aarch64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.aarch64//rpm", + "@python3-0__3.12.12-3.el10.aarch64//rpm", + "@python3-libs-0__3.12.12-3.el10.aarch64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.aarch64//rpm", + "@sssd-client-0__2.12.0-1.el10.aarch64//rpm", + "@tzdata-0__2025c-1.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@binutils-0__2.35.2-69.el9.aarch64//rpm", + "@binutils-gold-0__2.35.2-69.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cpp-0__11.5.0-14.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el9.aarch64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el9.aarch64//rpm", + "@elfutils-libelf-0__0.194-1.el9.aarch64//rpm", + "@elfutils-libs-0__0.194-1.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gcc-0__11.5.0-14.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-devel-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@glibc-static-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@json-c-0__0.14-11.el9.aarch64//rpm", + "@kernel-headers-0__5.14.0-686.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libasan-0__11.5.0-14.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgomp-0__11.5.0-14.el9.aarch64//rpm", + "@libmpc-0__1.2.1-4.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libpkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsss_idmap-0__2.9.8-1.el9.aarch64//rpm", + "@libsss_nss_idmap-0__2.9.8-1.el9.aarch64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libubsan-0__11.5.0-14.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.aarch64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@make-1__4.3-8.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@pkgconf-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.aarch64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.aarch64//rpm", + "@python3-0__3.9.25-3.el9.aarch64//rpm", + "@python3-libs-0__3.9.25-3.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@sssd-client-0__2.9.8-1.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@binutils-0__2.41-63.el10.s390x//rpm", + "@binutils-gold-0__2.41-63.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cpp-0__14.3.1-4.4.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el10.s390x//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el10.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el10.s390x//rpm", + "@elfutils-libs-0__0.194-1.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gcc-0__14.3.1-4.4.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-devel-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@glibc-static-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@jansson-0__2.14-3.el10.s390x//rpm", + "@json-c-0__0.18-3.el10.s390x//rpm", + "@kernel-headers-0__6.12.0-211.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libasan-0__14.3.1-4.4.el10.s390x//rpm", + "@libatomic-0__14.3.1-4.4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libgomp-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libmpc-0__1.3.1-7.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libpkgconf-0__2.1.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libsss_idmap-0__2.12.0-1.el10.s390x//rpm", + "@libsss_nss_idmap-0__2.12.0-1.el10.s390x//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libubsan-0__14.3.1-4.4.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libxcrypt-devel-0__4.4.36-10.el10.s390x//rpm", + "@libxcrypt-static-0__4.4.36-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@make-1__4.4.1-9.el10.s390x//rpm", + "@mpdecimal-0__2.5.1-12.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@pkgconf-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.s390x//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.s390x//rpm", + "@python3-0__3.12.12-3.el10.s390x//rpm", + "@python3-libs-0__3.12.12-3.el10.s390x//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@sssd-client-0__2.12.0-1.el10.s390x//rpm", + "@tzdata-0__2025c-1.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@binutils-0__2.35.2-69.el9.s390x//rpm", + "@binutils-gold-0__2.35.2-69.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cpp-0__11.5.0-14.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el9.s390x//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el9.s390x//rpm", + "@elfutils-libelf-0__0.194-1.el9.s390x//rpm", + "@elfutils-libs-0__0.194-1.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gcc-0__11.5.0-14.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-devel-0__2.34-256.el9.s390x//rpm", + "@glibc-headers-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@glibc-static-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@json-c-0__0.14-11.el9.s390x//rpm", + "@kernel-headers-0__5.14.0-686.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libasan-0__11.5.0-14.el9.s390x//rpm", + "@libatomic-0__11.5.0-14.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgomp-0__11.5.0-14.el9.s390x//rpm", + "@libmpc-0__1.2.1-4.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libpkgconf-0__1.7.3-10.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsss_idmap-0__2.9.8-1.el9.s390x//rpm", + "@libsss_nss_idmap-0__2.9.8-1.el9.s390x//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libubsan-0__11.5.0-14.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.s390x//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@make-1__4.3-8.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@pkgconf-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.s390x//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.s390x//rpm", + "@python3-0__3.9.25-3.el9.s390x//rpm", + "@python3-libs-0__3.9.25-3.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@sssd-client-0__2.9.8-1.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@binutils-0__2.41-63.el10.x86_64//rpm", + "@binutils-gold-0__2.41-63.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cpp-0__14.3.1-4.4.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el10.x86_64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el10.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el10.x86_64//rpm", + "@elfutils-libs-0__0.194-1.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-devel-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@glibc-static-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@jansson-0__2.14-3.el10.x86_64//rpm", + "@json-c-0__0.18-3.el10.x86_64//rpm", + "@kernel-headers-0__6.12.0-211.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libgomp-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmpc-0__1.3.1-7.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libpkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsss_idmap-0__2.12.0-1.el10.x86_64//rpm", + "@libsss_nss_idmap-0__2.12.0-1.el10.x86_64//rpm", + "@libstdc__plus____plus__-0__14.3.1-4.4.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libxcrypt-devel-0__4.4.36-10.el10.x86_64//rpm", + "@libxcrypt-static-0__4.4.36-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@make-1__4.4.1-9.el10.x86_64//rpm", + "@mpdecimal-0__2.5.1-12.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@pkgconf-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-m4-0__2.1.0-3.el10.x86_64//rpm", + "@pkgconf-pkg-config-0__2.1.0-3.el10.x86_64//rpm", + "@python3-0__3.12.12-3.el10.x86_64//rpm", + "@python3-libs-0__3.12.12-3.el10.x86_64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@sssd-client-0__2.12.0-1.el10.x86_64//rpm", + "@tzdata-0__2025c-1.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sandboxroot_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@binutils-0__2.35.2-69.el9.x86_64//rpm", + "@binutils-gold-0__2.35.2-69.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cpp-0__11.5.0-14.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@elfutils-debuginfod-client-0__0.194-1.el9.x86_64//rpm", + "@elfutils-default-yama-scope-0__0.194-1.el9.x86_64//rpm", + "@elfutils-libelf-0__0.194-1.el9.x86_64//rpm", + "@elfutils-libs-0__0.194-1.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gcc-0__11.5.0-14.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-devel-0__2.34-256.el9.x86_64//rpm", + "@glibc-headers-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@glibc-static-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@json-c-0__0.14-11.el9.x86_64//rpm", + "@kernel-headers-0__5.14.0-686.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgomp-0__11.5.0-14.el9.x86_64//rpm", + "@libmpc-0__1.2.1-4.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libpkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsss_idmap-0__2.9.8-1.el9.x86_64//rpm", + "@libsss_nss_idmap-0__2.9.8-1.el9.x86_64//rpm", + "@libstdc__plus____plus__-0__11.5.0-14.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-devel-0__4.4.18-3.el9.x86_64//rpm", + "@libxcrypt-static-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@make-1__4.3-8.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@pkgconf-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-m4-0__1.7.3-10.el9.x86_64//rpm", + "@pkgconf-pkg-config-0__1.7.3-10.el9.x86_64//rpm", + "@python3-0__3.9.25-3.el9.x86_64//rpm", + "@python3-libs-0__3.9.25-3.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@sssd-client-0__2.9.8-1.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/var/run": "../run", + "/usr/bin/python": "/usr/bin/python3.9", + "/usr/bin/python3": "/usr/bin/python3.9", + "/usr/bin/ld": "/usr/bin/ld.bfd", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@mpdecimal-0__2.5.1-12.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@python3-0__3.12.12-3.el10.aarch64//rpm", + "@python3-libs-0__3.12.12-3.el10.aarch64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.aarch64//rpm", + "@tzdata-0__2025c-1.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@python3-0__3.9.25-3.el9.aarch64//rpm", + "@python3-libs-0__3.9.25-3.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@mpdecimal-0__2.5.1-12.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@python3-0__3.12.12-3.el10.s390x//rpm", + "@python3-libs-0__3.12.12-3.el10.s390x//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@tzdata-0__2025c-1.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@python3-0__3.9.25-3.el9.s390x//rpm", + "@python3-libs-0__3.9.25-3.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@mpdecimal-0__2.5.1-12.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@python3-0__3.12.12-3.el10.x86_64//rpm", + "@python3-libs-0__3.12.12-3.el10.x86_64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@tzdata-0__2025c-1.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "sidecar-shim_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@python3-0__3.9.25-3.el9.x86_64//rpm", + "@python3-libs-0__3.9.25-3.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_aarch64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.aarch64//rpm", + "@alternatives-0__1.30-2.el10.aarch64//rpm", + "@audit-libs-0__4.0.3-5.el10.aarch64//rpm", + "@authselect-0__1.5.2-1.el10.aarch64//rpm", + "@authselect-libs-0__1.5.2-1.el10.aarch64//rpm", + "@basesystem-0__11-22.el10.aarch64//rpm", + "@bash-0__5.2.26-6.el10.aarch64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.aarch64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-release-0__10.0-20.el10.aarch64//rpm", + "@centos-stream-repos-0__10.0-20.el10.aarch64//rpm", + "@coreutils-single-0__9.5-7.el10.aarch64//rpm", + "@cracklib-0__2.9.11-8.el10.aarch64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.aarch64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.aarch64//rpm", + "@curl-0__8.12.1-4.el10.aarch64//rpm", + "@dbus-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-broker-0__36-4.el10.aarch64//rpm", + "@dbus-common-1__1.14.10-5.el10.aarch64//rpm", + "@dbus-libs-1__1.14.10-5.el10.aarch64//rpm", + "@device-mapper-10__1.02.210-2.el10.aarch64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.aarch64//rpm", + "@e2fsprogs-0__1.47.1-5.el10.aarch64//rpm", + "@e2fsprogs-libs-0__1.47.1-5.el10.aarch64//rpm", + "@expat-0__2.7.3-1.el10.aarch64//rpm", + "@filesystem-0__3.18-17.el10.aarch64//rpm", + "@findutils-1__4.10.0-5.el10.aarch64//rpm", + "@fuse3-libs-0__3.16.2-5.el10.aarch64//rpm", + "@gawk-0__5.3.0-6.el10.aarch64//rpm", + "@gdbm-1__1.23-14.el10.aarch64//rpm", + "@gdbm-libs-1__1.23-14.el10.aarch64//rpm", + "@glib2-0__2.80.4-12.el10.aarch64//rpm", + "@glibc-0__2.39-114.el10.aarch64//rpm", + "@glibc-common-0__2.39-114.el10.aarch64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.aarch64//rpm", + "@gmp-1__6.2.1-12.el10.aarch64//rpm", + "@gnutls-0__3.8.10-3.el10.aarch64//rpm", + "@gobject-introspection-0__1.79.1-6.el10.aarch64//rpm", + "@grep-0__3.11-10.el10.aarch64//rpm", + "@gzip-0__1.13-3.el10.aarch64//rpm", + "@iputils-0__20240905-5.el10.aarch64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.aarch64//rpm", + "@kmod-libs-0__31-13.el10.aarch64//rpm", + "@krb5-libs-0__1.21.3-8.el10.aarch64//rpm", + "@libacl-0__2.3.2-4.el10.aarch64//rpm", + "@libaio-0__0.3.111-22.el10.aarch64//rpm", + "@libatomic-0__14.3.1-4.4.el10.aarch64//rpm", + "@libattr-0__2.5.2-5.el10.aarch64//rpm", + "@libblkid-0__2.40.2-18.el10.aarch64//rpm", + "@libcap-0__2.69-7.el10.aarch64//rpm", + "@libcap-ng-0__0.8.4-6.el10.aarch64//rpm", + "@libcom_err-0__1.47.1-5.el10.aarch64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.aarch64//rpm", + "@libeconf-0__0.6.2-4.el10.aarch64//rpm", + "@libfdisk-0__2.40.2-18.el10.aarch64//rpm", + "@libffi-0__3.4.4-10.el10.aarch64//rpm", + "@libgcc-0__14.3.1-4.4.el10.aarch64//rpm", + "@libibverbs-0__61.0-1.el10.aarch64//rpm", + "@libidn2-0__2.3.7-3.el10.aarch64//rpm", + "@libmount-0__2.40.2-18.el10.aarch64//rpm", + "@libnghttp2-0__1.68.0-3.el10.aarch64//rpm", + "@libnl3-0__3.11.0-1.el10.aarch64//rpm", + "@libpcap-14__1.10.4-7.el10.aarch64//rpm", + "@libpwquality-0__1.4.5-12.el10.aarch64//rpm", + "@libseccomp-0__2.5.6-1.el10.aarch64//rpm", + "@libselinux-0__3.10-1.el10.aarch64//rpm", + "@libsemanage-0__3.10-1.el10.aarch64//rpm", + "@libsepol-0__3.10-1.el10.aarch64//rpm", + "@libsmartcols-0__2.40.2-18.el10.aarch64//rpm", + "@libss-0__1.47.1-5.el10.aarch64//rpm", + "@libtasn1-0__4.20.0-1.el10.aarch64//rpm", + "@libunistring-0__1.1-10.el10.aarch64//rpm", + "@liburing-0__2.12-1.el10.aarch64//rpm", + "@libutempter-0__1.2.1-15.el10.aarch64//rpm", + "@libuuid-0__2.40.2-18.el10.aarch64//rpm", + "@libverto-0__0.3.2-10.el10.aarch64//rpm", + "@libxcrypt-0__4.4.36-10.el10.aarch64//rpm", + "@libzstd-0__1.5.5-9.el10.aarch64//rpm", + "@mpdecimal-0__2.5.1-12.el10.aarch64//rpm", + "@mpfr-0__4.2.1-8.el10.aarch64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.aarch64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.aarch64//rpm", + "@nmap-ncat-4__7.92-5.el10.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el10.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el10.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el10.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.aarch64//rpm", + "@pam-0__1.6.1-9.el10.aarch64//rpm", + "@pam-libs-0__1.6.1-9.el10.aarch64//rpm", + "@pcre2-0__10.44-1.el10.3.aarch64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.aarch64//rpm", + "@popt-0__1.19-8.el10.aarch64//rpm", + "@procps-ng-0__4.0.4-11.el10.aarch64//rpm", + "@python3-0__3.12.12-3.el10.aarch64//rpm", + "@python3-configshell-1__1.1.30-9.el10.aarch64//rpm", + "@python3-dbus-0__1.3.2-8.el10.aarch64//rpm", + "@python3-gobject-base-0__3.46.0-7.el10.aarch64//rpm", + "@python3-gobject-base-noarch-0__3.46.0-7.el10.aarch64//rpm", + "@python3-kmod-0__0.9.2-6.el10.aarch64//rpm", + "@python3-libs-0__3.12.12-3.el10.aarch64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.aarch64//rpm", + "@python3-pyparsing-0__3.1.1-7.el10.aarch64//rpm", + "@python3-pyudev-0__0.24.1-10.el10.aarch64//rpm", + "@python3-rtslib-0__2.1.76-12.el10.aarch64//rpm", + "@python3-six-0__1.16.0-16.el10.aarch64//rpm", + "@python3-typing-extensions-0__4.9.0-6.el10.aarch64//rpm", + "@python3-urwid-0__2.5.3-4.el10.aarch64//rpm", + "@python3-wcwidth-0__0.2.6-6.el10.aarch64//rpm", + "@qemu-img-18__10.1.0-13.el10.aarch64//rpm", + "@readline-0__8.2-11.el10.aarch64//rpm", + "@sed-0__4.9-5.el10.aarch64//rpm", + "@setup-0__2.14.5-7.el10.aarch64//rpm", + "@shadow-utils-2__4.15.0-11.el10.aarch64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.aarch64//rpm", + "@systemd-0__257-23.el10.aarch64//rpm", + "@systemd-libs-0__257-23.el10.aarch64//rpm", + "@systemd-pam-0__257-23.el10.aarch64//rpm", + "@tar-2__1.35-11.el10.aarch64//rpm", + "@target-restore-0__2.1.76-12.el10.aarch64//rpm", + "@targetcli-0__2.1.58-5.el10.aarch64//rpm", + "@tzdata-0__2025c-1.el10.aarch64//rpm", + "@util-linux-0__2.40.2-18.el10.aarch64//rpm", + "@util-linux-core-0__2.40.2-18.el10.aarch64//rpm", + "@vim-data-2__9.1.083-8.el10.aarch64//rpm", + "@vim-minimal-2__9.1.083-8.el10.aarch64//rpm", + "@which-0__2.21-44.el10.aarch64//rpm", + "@xz-libs-1__5.6.2-4.el10.aarch64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.aarch64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_aarch64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.aarch64//rpm", + "@alternatives-0__1.24-2.el9.aarch64//rpm", + "@audit-libs-0__3.1.5-8.el9.aarch64//rpm", + "@basesystem-0__11-13.el9.aarch64//rpm", + "@bash-0__5.1.8-9.el9.aarch64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.aarch64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.aarch64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-release-0__9.0-35.el9.aarch64//rpm", + "@centos-stream-repos-0__9.0-35.el9.aarch64//rpm", + "@coreutils-single-0__8.32-40.el9.aarch64//rpm", + "@cracklib-0__2.9.6-28.el9.aarch64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.aarch64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.aarch64//rpm", + "@curl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@dbus-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-broker-0__28-7.el9.aarch64//rpm", + "@dbus-common-1__1.12.20-8.el9.aarch64//rpm", + "@dbus-libs-1__1.12.20-8.el9.aarch64//rpm", + "@device-mapper-9__1.02.206-2.el9.aarch64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.aarch64//rpm", + "@e2fsprogs-0__1.46.5-8.el9.aarch64//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.aarch64//rpm", + "@expat-0__2.5.0-6.el9.aarch64//rpm", + "@filesystem-0__3.16-5.el9.aarch64//rpm", + "@findutils-1__4.8.0-7.el9.aarch64//rpm", + "@fuse-libs-0__2.9.9-17.el9.aarch64//rpm", + "@gawk-0__5.1.0-6.el9.aarch64//rpm", + "@gdbm-libs-1__1.23-1.el9.aarch64//rpm", + "@glib2-0__2.68.4-19.el9.aarch64//rpm", + "@glibc-0__2.34-256.el9.aarch64//rpm", + "@glibc-common-0__2.34-256.el9.aarch64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.aarch64//rpm", + "@gmp-1__6.2.0-13.el9.aarch64//rpm", + "@gnutls-0__3.8.10-3.el9.aarch64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.aarch64//rpm", + "@grep-0__3.6-5.el9.aarch64//rpm", + "@gzip-0__1.12-1.el9.aarch64//rpm", + "@iputils-0__20210202-15.el9.aarch64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.aarch64//rpm", + "@kmod-libs-0__28-11.el9.aarch64//rpm", + "@krb5-libs-0__1.21.1-8.el9.aarch64//rpm", + "@libacl-0__2.3.1-4.el9.aarch64//rpm", + "@libaio-0__0.3.111-13.el9.aarch64//rpm", + "@libatomic-0__11.5.0-14.el9.aarch64//rpm", + "@libattr-0__2.5.1-3.el9.aarch64//rpm", + "@libblkid-0__2.37.4-25.el9.aarch64//rpm", + "@libcap-0__2.48-10.el9.aarch64//rpm", + "@libcap-ng-0__0.8.2-7.el9.aarch64//rpm", + "@libcom_err-0__1.46.5-8.el9.aarch64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.aarch64//rpm", + "@libdb-0__5.3.28-57.el9.aarch64//rpm", + "@libeconf-0__0.4.1-5.el9.aarch64//rpm", + "@libfdisk-0__2.37.4-25.el9.aarch64//rpm", + "@libffi-0__3.4.2-8.el9.aarch64//rpm", + "@libgcc-0__11.5.0-14.el9.aarch64//rpm", + "@libgcrypt-0__1.10.0-11.el9.aarch64//rpm", + "@libgpg-error-0__1.42-5.el9.aarch64//rpm", + "@libibverbs-0__61.0-2.el9.aarch64//rpm", + "@libidn2-0__2.3.0-7.el9.aarch64//rpm", + "@libmount-0__2.37.4-25.el9.aarch64//rpm", + "@libnghttp2-0__1.43.0-6.el9.aarch64//rpm", + "@libnl3-0__3.11.0-1.el9.aarch64//rpm", + "@libpcap-14__1.10.0-4.el9.aarch64//rpm", + "@libpwquality-0__1.4.4-8.el9.aarch64//rpm", + "@libseccomp-0__2.5.2-2.el9.aarch64//rpm", + "@libselinux-0__3.6-3.el9.aarch64//rpm", + "@libsemanage-0__3.6-5.el9.aarch64//rpm", + "@libsepol-0__3.6-3.el9.aarch64//rpm", + "@libsigsegv-0__2.13-4.el9.aarch64//rpm", + "@libsmartcols-0__2.37.4-25.el9.aarch64//rpm", + "@libss-0__1.46.5-8.el9.aarch64//rpm", + "@libtasn1-0__4.16.0-9.el9.aarch64//rpm", + "@libunistring-0__0.9.10-15.el9.aarch64//rpm", + "@liburing-0__2.12-1.el9.aarch64//rpm", + "@libutempter-0__1.2.1-6.el9.aarch64//rpm", + "@libuuid-0__2.37.4-25.el9.aarch64//rpm", + "@libverto-0__0.3.2-3.el9.aarch64//rpm", + "@libxcrypt-0__4.4.18-3.el9.aarch64//rpm", + "@libzstd-0__1.5.5-1.el9.aarch64//rpm", + "@lz4-libs-0__1.9.3-5.el9.aarch64//rpm", + "@mpfr-0__4.1.0-10.el9.aarch64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.aarch64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.aarch64//rpm", + "@nettle-0__3.10.1-1.el9.aarch64//rpm", + "@nmap-ncat-3__7.92-5.el9.aarch64//rpm", + "@numactl-libs-0__2.0.19-3.el9.aarch64//rpm", + "@openssl-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.aarch64//rpm", + "@openssl-libs-1__3.5.5-1.el9.aarch64//rpm", + "@p11-kit-0__0.26.2-1.el9.aarch64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.aarch64//rpm", + "@pam-0__1.5.1-28.el9.aarch64//rpm", + "@pcre-0__8.44-4.el9.aarch64//rpm", + "@pcre2-0__10.40-6.el9.aarch64//rpm", + "@pcre2-syntax-0__10.40-6.el9.aarch64//rpm", + "@procps-ng-0__3.3.17-14.el9.aarch64//rpm", + "@python3-0__3.9.25-3.el9.aarch64//rpm", + "@python3-configshell-1__1.1.30-1.el9.aarch64//rpm", + "@python3-dbus-0__1.2.18-2.el9.aarch64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.aarch64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.aarch64//rpm", + "@python3-kmod-0__0.9-32.el9.aarch64//rpm", + "@python3-libs-0__3.9.25-3.el9.aarch64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.aarch64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.aarch64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.aarch64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.aarch64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.aarch64//rpm", + "@python3-six-0__1.15.0-9.el9.aarch64//rpm", + "@python3-urwid-0__2.1.2-4.el9.aarch64//rpm", + "@qemu-img-17__10.1.0-10.el9.aarch64//rpm", + "@readline-0__8.1-4.el9.aarch64//rpm", + "@sed-0__4.8-9.el9.aarch64//rpm", + "@setup-0__2.13.7-10.el9.aarch64//rpm", + "@sevctl-0__0.1.0-4.el9.aarch64//rpm", + "@shadow-utils-2__4.9-16.el9.aarch64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.aarch64//rpm", + "@systemd-0__252-64.el9.aarch64//rpm", + "@systemd-libs-0__252-64.el9.aarch64//rpm", + "@systemd-pam-0__252-64.el9.aarch64//rpm", + "@systemd-rpm-macros-0__252-64.el9.aarch64//rpm", + "@tar-2__1.34-10.el9.aarch64//rpm", + "@target-restore-0__2.1.76-1.el9.aarch64//rpm", + "@targetcli-0__2.1.57-3.el9.aarch64//rpm", + "@tzdata-0__2025c-1.el9.aarch64//rpm", + "@util-linux-0__2.37.4-25.el9.aarch64//rpm", + "@util-linux-core-0__2.37.4-25.el9.aarch64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.aarch64//rpm", + "@which-0__2.21-30.el9.aarch64//rpm", + "@xz-libs-0__5.2.5-8.el9.aarch64//rpm", + "@zlib-0__1.2.11-41.el9.aarch64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_s390x_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.s390x//rpm", + "@alternatives-0__1.30-2.el10.s390x//rpm", + "@audit-libs-0__4.0.3-5.el10.s390x//rpm", + "@authselect-0__1.5.2-1.el10.s390x//rpm", + "@authselect-libs-0__1.5.2-1.el10.s390x//rpm", + "@basesystem-0__11-22.el10.s390x//rpm", + "@bash-0__5.2.26-6.el10.s390x//rpm", + "@bzip2-libs-0__1.0.8-25.el10.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.s390x//rpm", + "@centos-gpg-keys-0__10.0-20.el10.s390x//rpm", + "@centos-stream-release-0__10.0-20.el10.s390x//rpm", + "@centos-stream-repos-0__10.0-20.el10.s390x//rpm", + "@coreutils-single-0__9.5-7.el10.s390x//rpm", + "@cracklib-0__2.9.11-8.el10.s390x//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.s390x//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.s390x//rpm", + "@curl-0__8.12.1-4.el10.s390x//rpm", + "@dbus-1__1.14.10-5.el10.s390x//rpm", + "@dbus-broker-0__36-4.el10.s390x//rpm", + "@dbus-common-1__1.14.10-5.el10.s390x//rpm", + "@dbus-libs-1__1.14.10-5.el10.s390x//rpm", + "@device-mapper-10__1.02.210-2.el10.s390x//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.s390x//rpm", + "@e2fsprogs-0__1.47.1-5.el10.s390x//rpm", + "@e2fsprogs-libs-0__1.47.1-5.el10.s390x//rpm", + "@expat-0__2.7.3-1.el10.s390x//rpm", + "@filesystem-0__3.18-17.el10.s390x//rpm", + "@findutils-1__4.10.0-5.el10.s390x//rpm", + "@fuse3-libs-0__3.16.2-5.el10.s390x//rpm", + "@gawk-0__5.3.0-6.el10.s390x//rpm", + "@gdbm-1__1.23-14.el10.s390x//rpm", + "@gdbm-libs-1__1.23-14.el10.s390x//rpm", + "@glib2-0__2.80.4-12.el10.s390x//rpm", + "@glibc-0__2.39-114.el10.s390x//rpm", + "@glibc-common-0__2.39-114.el10.s390x//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.s390x//rpm", + "@gmp-1__6.2.1-12.el10.s390x//rpm", + "@gnutls-0__3.8.10-3.el10.s390x//rpm", + "@gobject-introspection-0__1.79.1-6.el10.s390x//rpm", + "@grep-0__3.11-10.el10.s390x//rpm", + "@gzip-0__1.13-3.el10.s390x//rpm", + "@iputils-0__20240905-5.el10.s390x//rpm", + "@keyutils-libs-0__1.6.3-5.el10.s390x//rpm", + "@kmod-libs-0__31-13.el10.s390x//rpm", + "@krb5-libs-0__1.21.3-8.el10.s390x//rpm", + "@libacl-0__2.3.2-4.el10.s390x//rpm", + "@libaio-0__0.3.111-22.el10.s390x//rpm", + "@libattr-0__2.5.2-5.el10.s390x//rpm", + "@libblkid-0__2.40.2-18.el10.s390x//rpm", + "@libcap-0__2.69-7.el10.s390x//rpm", + "@libcap-ng-0__0.8.4-6.el10.s390x//rpm", + "@libcom_err-0__1.47.1-5.el10.s390x//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.s390x//rpm", + "@libeconf-0__0.6.2-4.el10.s390x//rpm", + "@libfdisk-0__2.40.2-18.el10.s390x//rpm", + "@libffi-0__3.4.4-10.el10.s390x//rpm", + "@libgcc-0__14.3.1-4.4.el10.s390x//rpm", + "@libibverbs-0__61.0-1.el10.s390x//rpm", + "@libidn2-0__2.3.7-3.el10.s390x//rpm", + "@libmount-0__2.40.2-18.el10.s390x//rpm", + "@libnghttp2-0__1.68.0-3.el10.s390x//rpm", + "@libnl3-0__3.11.0-1.el10.s390x//rpm", + "@libpcap-14__1.10.4-7.el10.s390x//rpm", + "@libpwquality-0__1.4.5-12.el10.s390x//rpm", + "@libseccomp-0__2.5.6-1.el10.s390x//rpm", + "@libselinux-0__3.10-1.el10.s390x//rpm", + "@libsemanage-0__3.10-1.el10.s390x//rpm", + "@libsepol-0__3.10-1.el10.s390x//rpm", + "@libsmartcols-0__2.40.2-18.el10.s390x//rpm", + "@libss-0__1.47.1-5.el10.s390x//rpm", + "@libtasn1-0__4.20.0-1.el10.s390x//rpm", + "@libunistring-0__1.1-10.el10.s390x//rpm", + "@liburing-0__2.12-1.el10.s390x//rpm", + "@libutempter-0__1.2.1-15.el10.s390x//rpm", + "@libuuid-0__2.40.2-18.el10.s390x//rpm", + "@libverto-0__0.3.2-10.el10.s390x//rpm", + "@libxcrypt-0__4.4.36-10.el10.s390x//rpm", + "@libzstd-0__1.5.5-9.el10.s390x//rpm", + "@mpdecimal-0__2.5.1-12.el10.s390x//rpm", + "@mpfr-0__4.2.1-8.el10.s390x//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.s390x//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.s390x//rpm", + "@nmap-ncat-4__7.92-5.el10.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el10.s390x//rpm", + "@p11-kit-0__0.26.2-1.el10.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.s390x//rpm", + "@pam-0__1.6.1-9.el10.s390x//rpm", + "@pam-libs-0__1.6.1-9.el10.s390x//rpm", + "@pcre2-0__10.44-1.el10.3.s390x//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.s390x//rpm", + "@popt-0__1.19-8.el10.s390x//rpm", + "@procps-ng-0__4.0.4-11.el10.s390x//rpm", + "@python3-0__3.12.12-3.el10.s390x//rpm", + "@python3-configshell-1__1.1.30-9.el10.s390x//rpm", + "@python3-dbus-0__1.3.2-8.el10.s390x//rpm", + "@python3-gobject-base-0__3.46.0-7.el10.s390x//rpm", + "@python3-gobject-base-noarch-0__3.46.0-7.el10.s390x//rpm", + "@python3-kmod-0__0.9.2-6.el10.s390x//rpm", + "@python3-libs-0__3.12.12-3.el10.s390x//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.s390x//rpm", + "@python3-pyparsing-0__3.1.1-7.el10.s390x//rpm", + "@python3-pyudev-0__0.24.1-10.el10.s390x//rpm", + "@python3-rtslib-0__2.1.76-12.el10.s390x//rpm", + "@python3-six-0__1.16.0-16.el10.s390x//rpm", + "@python3-typing-extensions-0__4.9.0-6.el10.s390x//rpm", + "@python3-urwid-0__2.5.3-4.el10.s390x//rpm", + "@python3-wcwidth-0__0.2.6-6.el10.s390x//rpm", + "@qemu-img-18__10.1.0-13.el10.s390x//rpm", + "@readline-0__8.2-11.el10.s390x//rpm", + "@sed-0__4.9-5.el10.s390x//rpm", + "@setup-0__2.14.5-7.el10.s390x//rpm", + "@shadow-utils-2__4.15.0-11.el10.s390x//rpm", + "@sqlite-libs-0__3.46.1-5.el10.s390x//rpm", + "@systemd-0__257-23.el10.s390x//rpm", + "@systemd-libs-0__257-23.el10.s390x//rpm", + "@systemd-pam-0__257-23.el10.s390x//rpm", + "@tar-2__1.35-11.el10.s390x//rpm", + "@target-restore-0__2.1.76-12.el10.s390x//rpm", + "@targetcli-0__2.1.58-5.el10.s390x//rpm", + "@tzdata-0__2025c-1.el10.s390x//rpm", + "@util-linux-0__2.40.2-18.el10.s390x//rpm", + "@util-linux-core-0__2.40.2-18.el10.s390x//rpm", + "@vim-data-2__9.1.083-8.el10.s390x//rpm", + "@vim-minimal-2__9.1.083-8.el10.s390x//rpm", + "@which-0__2.21-44.el10.s390x//rpm", + "@xz-libs-1__5.6.2-4.el10.s390x//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.s390x//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_s390x_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.s390x//rpm", + "@alternatives-0__1.24-2.el9.s390x//rpm", + "@audit-libs-0__3.1.5-8.el9.s390x//rpm", + "@basesystem-0__11-13.el9.s390x//rpm", + "@bash-0__5.1.8-9.el9.s390x//rpm", + "@bzip2-libs-0__1.0.8-11.el9.s390x//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.s390x//rpm", + "@centos-gpg-keys-0__9.0-35.el9.s390x//rpm", + "@centos-stream-release-0__9.0-35.el9.s390x//rpm", + "@centos-stream-repos-0__9.0-35.el9.s390x//rpm", + "@coreutils-single-0__8.32-40.el9.s390x//rpm", + "@cracklib-0__2.9.6-28.el9.s390x//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.s390x//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.s390x//rpm", + "@curl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@dbus-1__1.12.20-8.el9.s390x//rpm", + "@dbus-broker-0__28-7.el9.s390x//rpm", + "@dbus-common-1__1.12.20-8.el9.s390x//rpm", + "@dbus-libs-1__1.12.20-8.el9.s390x//rpm", + "@device-mapper-9__1.02.206-2.el9.s390x//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.s390x//rpm", + "@e2fsprogs-0__1.46.5-8.el9.s390x//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.s390x//rpm", + "@expat-0__2.5.0-6.el9.s390x//rpm", + "@filesystem-0__3.16-5.el9.s390x//rpm", + "@findutils-1__4.8.0-7.el9.s390x//rpm", + "@fuse-libs-0__2.9.9-17.el9.s390x//rpm", + "@gawk-0__5.1.0-6.el9.s390x//rpm", + "@gdbm-libs-1__1.23-1.el9.s390x//rpm", + "@glib2-0__2.68.4-19.el9.s390x//rpm", + "@glibc-0__2.34-256.el9.s390x//rpm", + "@glibc-common-0__2.34-256.el9.s390x//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.s390x//rpm", + "@gmp-1__6.2.0-13.el9.s390x//rpm", + "@gnutls-0__3.8.10-3.el9.s390x//rpm", + "@gobject-introspection-0__1.68.0-11.el9.s390x//rpm", + "@grep-0__3.6-5.el9.s390x//rpm", + "@gzip-0__1.12-1.el9.s390x//rpm", + "@iputils-0__20210202-15.el9.s390x//rpm", + "@keyutils-libs-0__1.6.3-1.el9.s390x//rpm", + "@kmod-libs-0__28-11.el9.s390x//rpm", + "@krb5-libs-0__1.21.1-8.el9.s390x//rpm", + "@libacl-0__2.3.1-4.el9.s390x//rpm", + "@libaio-0__0.3.111-13.el9.s390x//rpm", + "@libattr-0__2.5.1-3.el9.s390x//rpm", + "@libblkid-0__2.37.4-25.el9.s390x//rpm", + "@libcap-0__2.48-10.el9.s390x//rpm", + "@libcap-ng-0__0.8.2-7.el9.s390x//rpm", + "@libcom_err-0__1.46.5-8.el9.s390x//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.s390x//rpm", + "@libdb-0__5.3.28-57.el9.s390x//rpm", + "@libeconf-0__0.4.1-5.el9.s390x//rpm", + "@libfdisk-0__2.37.4-25.el9.s390x//rpm", + "@libffi-0__3.4.2-8.el9.s390x//rpm", + "@libgcc-0__11.5.0-14.el9.s390x//rpm", + "@libgcrypt-0__1.10.0-11.el9.s390x//rpm", + "@libgpg-error-0__1.42-5.el9.s390x//rpm", + "@libibverbs-0__61.0-2.el9.s390x//rpm", + "@libidn2-0__2.3.0-7.el9.s390x//rpm", + "@libmount-0__2.37.4-25.el9.s390x//rpm", + "@libnghttp2-0__1.43.0-6.el9.s390x//rpm", + "@libnl3-0__3.11.0-1.el9.s390x//rpm", + "@libpcap-14__1.10.0-4.el9.s390x//rpm", + "@libpwquality-0__1.4.4-8.el9.s390x//rpm", + "@libseccomp-0__2.5.2-2.el9.s390x//rpm", + "@libselinux-0__3.6-3.el9.s390x//rpm", + "@libsemanage-0__3.6-5.el9.s390x//rpm", + "@libsepol-0__3.6-3.el9.s390x//rpm", + "@libsigsegv-0__2.13-4.el9.s390x//rpm", + "@libsmartcols-0__2.37.4-25.el9.s390x//rpm", + "@libss-0__1.46.5-8.el9.s390x//rpm", + "@libtasn1-0__4.16.0-9.el9.s390x//rpm", + "@libunistring-0__0.9.10-15.el9.s390x//rpm", + "@liburing-0__2.12-1.el9.s390x//rpm", + "@libutempter-0__1.2.1-6.el9.s390x//rpm", + "@libuuid-0__2.37.4-25.el9.s390x//rpm", + "@libverto-0__0.3.2-3.el9.s390x//rpm", + "@libxcrypt-0__4.4.18-3.el9.s390x//rpm", + "@libzstd-0__1.5.5-1.el9.s390x//rpm", + "@lz4-libs-0__1.9.3-5.el9.s390x//rpm", + "@mpfr-0__4.1.0-10.el9.s390x//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.s390x//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.s390x//rpm", + "@nettle-0__3.10.1-1.el9.s390x//rpm", + "@nmap-ncat-3__7.92-5.el9.s390x//rpm", + "@openssl-1__3.5.5-1.el9.s390x//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.s390x//rpm", + "@openssl-libs-1__3.5.5-1.el9.s390x//rpm", + "@p11-kit-0__0.26.2-1.el9.s390x//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.s390x//rpm", + "@pam-0__1.5.1-28.el9.s390x//rpm", + "@pcre-0__8.44-4.el9.s390x//rpm", + "@pcre2-0__10.40-6.el9.s390x//rpm", + "@pcre2-syntax-0__10.40-6.el9.s390x//rpm", + "@procps-ng-0__3.3.17-14.el9.s390x//rpm", + "@python3-0__3.9.25-3.el9.s390x//rpm", + "@python3-configshell-1__1.1.30-1.el9.s390x//rpm", + "@python3-dbus-0__1.2.18-2.el9.s390x//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.s390x//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.s390x//rpm", + "@python3-kmod-0__0.9-32.el9.s390x//rpm", + "@python3-libs-0__3.9.25-3.el9.s390x//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.s390x//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.s390x//rpm", + "@python3-pyudev-0__0.22.0-6.el9.s390x//rpm", + "@python3-rtslib-0__2.1.76-1.el9.s390x//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.s390x//rpm", + "@python3-six-0__1.15.0-9.el9.s390x//rpm", + "@python3-urwid-0__2.1.2-4.el9.s390x//rpm", + "@qemu-img-17__10.1.0-10.el9.s390x//rpm", + "@readline-0__8.1-4.el9.s390x//rpm", + "@sed-0__4.8-9.el9.s390x//rpm", + "@setup-0__2.13.7-10.el9.s390x//rpm", + "@sevctl-0__0.1.0-4.el9.s390x//rpm", + "@shadow-utils-2__4.9-16.el9.s390x//rpm", + "@sqlite-libs-0__3.34.1-9.el9.s390x//rpm", + "@systemd-0__252-64.el9.s390x//rpm", + "@systemd-libs-0__252-64.el9.s390x//rpm", + "@systemd-pam-0__252-64.el9.s390x//rpm", + "@systemd-rpm-macros-0__252-64.el9.s390x//rpm", + "@tar-2__1.34-10.el9.s390x//rpm", + "@target-restore-0__2.1.76-1.el9.s390x//rpm", + "@targetcli-0__2.1.57-3.el9.s390x//rpm", + "@tzdata-0__2025c-1.el9.s390x//rpm", + "@util-linux-0__2.37.4-25.el9.s390x//rpm", + "@util-linux-core-0__2.37.4-25.el9.s390x//rpm", + "@vim-minimal-2__8.2.2637-25.el9.s390x//rpm", + "@which-0__2.21-30.el9.s390x//rpm", + "@xz-libs-0__5.2.5-8.el9.s390x//rpm", + "@zlib-0__1.2.11-41.el9.s390x//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_x86_64_cs10", + rpms = [ + "@acl-0__2.3.2-4.el10.x86_64//rpm", + "@alternatives-0__1.30-2.el10.x86_64//rpm", + "@audit-libs-0__4.0.3-5.el10.x86_64//rpm", + "@authselect-0__1.5.2-1.el10.x86_64//rpm", + "@authselect-libs-0__1.5.2-1.el10.x86_64//rpm", + "@basesystem-0__11-22.el10.x86_64//rpm", + "@bash-0__5.2.26-6.el10.x86_64//rpm", + "@bzip2-libs-0__1.0.8-25.el10.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-102.el10.x86_64//rpm", + "@centos-gpg-keys-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-release-0__10.0-20.el10.x86_64//rpm", + "@centos-stream-repos-0__10.0-20.el10.x86_64//rpm", + "@coreutils-single-0__9.5-7.el10.x86_64//rpm", + "@cracklib-0__2.9.11-8.el10.x86_64//rpm", + "@cracklib-dicts-0__2.9.11-8.el10.x86_64//rpm", + "@crypto-policies-0__20260216-1.git0e54016.el10.x86_64//rpm", + "@curl-0__8.12.1-4.el10.x86_64//rpm", + "@dbus-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-broker-0__36-4.el10.x86_64//rpm", + "@dbus-common-1__1.14.10-5.el10.x86_64//rpm", + "@dbus-libs-1__1.14.10-5.el10.x86_64//rpm", + "@device-mapper-10__1.02.210-2.el10.x86_64//rpm", + "@device-mapper-libs-10__1.02.210-2.el10.x86_64//rpm", + "@e2fsprogs-0__1.47.1-5.el10.x86_64//rpm", + "@e2fsprogs-libs-0__1.47.1-5.el10.x86_64//rpm", + "@expat-0__2.7.3-1.el10.x86_64//rpm", + "@filesystem-0__3.18-17.el10.x86_64//rpm", + "@findutils-1__4.10.0-5.el10.x86_64//rpm", + "@fuse3-libs-0__3.16.2-5.el10.x86_64//rpm", + "@gawk-0__5.3.0-6.el10.x86_64//rpm", + "@gdbm-1__1.23-14.el10.x86_64//rpm", + "@gdbm-libs-1__1.23-14.el10.x86_64//rpm", + "@glib2-0__2.80.4-12.el10.x86_64//rpm", + "@glibc-0__2.39-114.el10.x86_64//rpm", + "@glibc-common-0__2.39-114.el10.x86_64//rpm", + "@glibc-minimal-langpack-0__2.39-114.el10.x86_64//rpm", + "@gmp-1__6.2.1-12.el10.x86_64//rpm", + "@gnutls-0__3.8.10-3.el10.x86_64//rpm", + "@gobject-introspection-0__1.79.1-6.el10.x86_64//rpm", + "@grep-0__3.11-10.el10.x86_64//rpm", + "@gzip-0__1.13-3.el10.x86_64//rpm", + "@iputils-0__20240905-5.el10.x86_64//rpm", + "@keyutils-libs-0__1.6.3-5.el10.x86_64//rpm", + "@kmod-libs-0__31-13.el10.x86_64//rpm", + "@krb5-libs-0__1.21.3-8.el10.x86_64//rpm", + "@libacl-0__2.3.2-4.el10.x86_64//rpm", + "@libaio-0__0.3.111-22.el10.x86_64//rpm", + "@libattr-0__2.5.2-5.el10.x86_64//rpm", + "@libblkid-0__2.40.2-18.el10.x86_64//rpm", + "@libcap-0__2.69-7.el10.x86_64//rpm", + "@libcap-ng-0__0.8.4-6.el10.x86_64//rpm", + "@libcom_err-0__1.47.1-5.el10.x86_64//rpm", + "@libcurl-minimal-0__8.12.1-4.el10.x86_64//rpm", + "@libeconf-0__0.6.2-4.el10.x86_64//rpm", + "@libfdisk-0__2.40.2-18.el10.x86_64//rpm", + "@libffi-0__3.4.4-10.el10.x86_64//rpm", + "@libgcc-0__14.3.1-4.4.el10.x86_64//rpm", + "@libibverbs-0__61.0-1.el10.x86_64//rpm", + "@libidn2-0__2.3.7-3.el10.x86_64//rpm", + "@libmount-0__2.40.2-18.el10.x86_64//rpm", + "@libnghttp2-0__1.68.0-3.el10.x86_64//rpm", + "@libnl3-0__3.11.0-1.el10.x86_64//rpm", + "@libpcap-14__1.10.4-7.el10.x86_64//rpm", + "@libpwquality-0__1.4.5-12.el10.x86_64//rpm", + "@libseccomp-0__2.5.6-1.el10.x86_64//rpm", + "@libselinux-0__3.10-1.el10.x86_64//rpm", + "@libsemanage-0__3.10-1.el10.x86_64//rpm", + "@libsepol-0__3.10-1.el10.x86_64//rpm", + "@libsmartcols-0__2.40.2-18.el10.x86_64//rpm", + "@libss-0__1.47.1-5.el10.x86_64//rpm", + "@libtasn1-0__4.20.0-1.el10.x86_64//rpm", + "@libunistring-0__1.1-10.el10.x86_64//rpm", + "@liburing-0__2.12-1.el10.x86_64//rpm", + "@libutempter-0__1.2.1-15.el10.x86_64//rpm", + "@libuuid-0__2.40.2-18.el10.x86_64//rpm", + "@libverto-0__0.3.2-10.el10.x86_64//rpm", + "@libxcrypt-0__4.4.36-10.el10.x86_64//rpm", + "@libzstd-0__1.5.5-9.el10.x86_64//rpm", + "@mpdecimal-0__2.5.1-12.el10.x86_64//rpm", + "@mpfr-0__4.2.1-8.el10.x86_64//rpm", + "@ncurses-base-0__6.4-14.20240127.el10.x86_64//rpm", + "@ncurses-libs-0__6.4-14.20240127.el10.x86_64//rpm", + "@nmap-ncat-4__7.92-5.el10.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el10.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el10.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el10.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el10.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el10.x86_64//rpm", + "@pam-0__1.6.1-9.el10.x86_64//rpm", + "@pam-libs-0__1.6.1-9.el10.x86_64//rpm", + "@pcre2-0__10.44-1.el10.3.x86_64//rpm", + "@pcre2-syntax-0__10.44-1.el10.3.x86_64//rpm", + "@popt-0__1.19-8.el10.x86_64//rpm", + "@procps-ng-0__4.0.4-11.el10.x86_64//rpm", + "@python3-0__3.12.12-3.el10.x86_64//rpm", + "@python3-configshell-1__1.1.30-9.el10.x86_64//rpm", + "@python3-dbus-0__1.3.2-8.el10.x86_64//rpm", + "@python3-gobject-base-0__3.46.0-7.el10.x86_64//rpm", + "@python3-gobject-base-noarch-0__3.46.0-7.el10.x86_64//rpm", + "@python3-kmod-0__0.9.2-6.el10.x86_64//rpm", + "@python3-libs-0__3.12.12-3.el10.x86_64//rpm", + "@python3-pip-wheel-0__23.3.2-7.el10.x86_64//rpm", + "@python3-pyparsing-0__3.1.1-7.el10.x86_64//rpm", + "@python3-pyudev-0__0.24.1-10.el10.x86_64//rpm", + "@python3-rtslib-0__2.1.76-12.el10.x86_64//rpm", + "@python3-six-0__1.16.0-16.el10.x86_64//rpm", + "@python3-typing-extensions-0__4.9.0-6.el10.x86_64//rpm", + "@python3-urwid-0__2.5.3-4.el10.x86_64//rpm", + "@python3-wcwidth-0__0.2.6-6.el10.x86_64//rpm", + "@qemu-img-18__10.1.0-13.el10.x86_64//rpm", + "@readline-0__8.2-11.el10.x86_64//rpm", + "@sed-0__4.9-5.el10.x86_64//rpm", + "@setup-0__2.14.5-7.el10.x86_64//rpm", + "@sevctl-0__0.4.3-3.el10.x86_64//rpm", + "@shadow-utils-2__4.15.0-11.el10.x86_64//rpm", + "@sqlite-libs-0__3.46.1-5.el10.x86_64//rpm", + "@systemd-0__257-23.el10.x86_64//rpm", + "@systemd-libs-0__257-23.el10.x86_64//rpm", + "@systemd-pam-0__257-23.el10.x86_64//rpm", + "@tar-2__1.35-11.el10.x86_64//rpm", + "@target-restore-0__2.1.76-12.el10.x86_64//rpm", + "@targetcli-0__2.1.58-5.el10.x86_64//rpm", + "@tzdata-0__2025c-1.el10.x86_64//rpm", + "@util-linux-0__2.40.2-18.el10.x86_64//rpm", + "@util-linux-core-0__2.40.2-18.el10.x86_64//rpm", + "@vim-data-2__9.1.083-8.el10.x86_64//rpm", + "@vim-minimal-2__9.1.083-8.el10.x86_64//rpm", + "@which-0__2.21-44.el10.x86_64//rpm", + "@xz-libs-1__5.6.2-4.el10.x86_64//rpm", + "@zlib-ng-compat-0__2.2.3-3.el10.x86_64//rpm", + ], + visibility = ["//visibility:public"], +) + +rpmtree( + name = "testimage_x86_64_cs9", + rpms = [ + "@acl-0__2.3.1-4.el9.x86_64//rpm", + "@alternatives-0__1.24-2.el9.x86_64//rpm", + "@audit-libs-0__3.1.5-8.el9.x86_64//rpm", + "@basesystem-0__11-13.el9.x86_64//rpm", + "@bash-0__5.1.8-9.el9.x86_64//rpm", + "@bzip2-libs-0__1.0.8-11.el9.x86_64//rpm", + "@ca-certificates-0__2025.2.80_v9.0.305-91.el9.x86_64//rpm", + "@centos-gpg-keys-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-release-0__9.0-35.el9.x86_64//rpm", + "@centos-stream-repos-0__9.0-35.el9.x86_64//rpm", + "@coreutils-single-0__8.32-40.el9.x86_64//rpm", + "@cracklib-0__2.9.6-28.el9.x86_64//rpm", + "@cracklib-dicts-0__2.9.6-28.el9.x86_64//rpm", + "@crypto-policies-0__20251126-1.gite9c4db2.el9.x86_64//rpm", + "@curl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@dbus-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-broker-0__28-7.el9.x86_64//rpm", + "@dbus-common-1__1.12.20-8.el9.x86_64//rpm", + "@dbus-libs-1__1.12.20-8.el9.x86_64//rpm", + "@device-mapper-9__1.02.206-2.el9.x86_64//rpm", + "@device-mapper-libs-9__1.02.206-2.el9.x86_64//rpm", + "@e2fsprogs-0__1.46.5-8.el9.x86_64//rpm", + "@e2fsprogs-libs-0__1.46.5-8.el9.x86_64//rpm", + "@expat-0__2.5.0-6.el9.x86_64//rpm", + "@filesystem-0__3.16-5.el9.x86_64//rpm", + "@findutils-1__4.8.0-7.el9.x86_64//rpm", + "@fuse-libs-0__2.9.9-17.el9.x86_64//rpm", + "@gawk-0__5.1.0-6.el9.x86_64//rpm", + "@gdbm-libs-1__1.23-1.el9.x86_64//rpm", + "@glib2-0__2.68.4-19.el9.x86_64//rpm", + "@glibc-0__2.34-256.el9.x86_64//rpm", + "@glibc-common-0__2.34-256.el9.x86_64//rpm", + "@glibc-minimal-langpack-0__2.34-256.el9.x86_64//rpm", + "@gmp-1__6.2.0-13.el9.x86_64//rpm", + "@gnutls-0__3.8.10-3.el9.x86_64//rpm", + "@gobject-introspection-0__1.68.0-11.el9.x86_64//rpm", + "@grep-0__3.6-5.el9.x86_64//rpm", + "@gzip-0__1.12-1.el9.x86_64//rpm", + "@iputils-0__20210202-15.el9.x86_64//rpm", + "@keyutils-libs-0__1.6.3-1.el9.x86_64//rpm", + "@kmod-libs-0__28-11.el9.x86_64//rpm", + "@krb5-libs-0__1.21.1-8.el9.x86_64//rpm", + "@libacl-0__2.3.1-4.el9.x86_64//rpm", + "@libaio-0__0.3.111-13.el9.x86_64//rpm", + "@libattr-0__2.5.1-3.el9.x86_64//rpm", + "@libblkid-0__2.37.4-25.el9.x86_64//rpm", + "@libcap-0__2.48-10.el9.x86_64//rpm", + "@libcap-ng-0__0.8.2-7.el9.x86_64//rpm", + "@libcom_err-0__1.46.5-8.el9.x86_64//rpm", + "@libcurl-minimal-0__7.76.1-40.el9.x86_64//rpm", + "@libdb-0__5.3.28-57.el9.x86_64//rpm", + "@libeconf-0__0.4.1-5.el9.x86_64//rpm", + "@libfdisk-0__2.37.4-25.el9.x86_64//rpm", + "@libffi-0__3.4.2-8.el9.x86_64//rpm", + "@libgcc-0__11.5.0-14.el9.x86_64//rpm", + "@libgcrypt-0__1.10.0-11.el9.x86_64//rpm", + "@libgpg-error-0__1.42-5.el9.x86_64//rpm", + "@libibverbs-0__61.0-2.el9.x86_64//rpm", + "@libidn2-0__2.3.0-7.el9.x86_64//rpm", + "@libmount-0__2.37.4-25.el9.x86_64//rpm", + "@libnghttp2-0__1.43.0-6.el9.x86_64//rpm", + "@libnl3-0__3.11.0-1.el9.x86_64//rpm", + "@libpcap-14__1.10.0-4.el9.x86_64//rpm", + "@libpwquality-0__1.4.4-8.el9.x86_64//rpm", + "@libseccomp-0__2.5.2-2.el9.x86_64//rpm", + "@libselinux-0__3.6-3.el9.x86_64//rpm", + "@libsemanage-0__3.6-5.el9.x86_64//rpm", + "@libsepol-0__3.6-3.el9.x86_64//rpm", + "@libsigsegv-0__2.13-4.el9.x86_64//rpm", + "@libsmartcols-0__2.37.4-25.el9.x86_64//rpm", + "@libss-0__1.46.5-8.el9.x86_64//rpm", + "@libtasn1-0__4.16.0-9.el9.x86_64//rpm", + "@libunistring-0__0.9.10-15.el9.x86_64//rpm", + "@liburing-0__2.12-1.el9.x86_64//rpm", + "@libutempter-0__1.2.1-6.el9.x86_64//rpm", + "@libuuid-0__2.37.4-25.el9.x86_64//rpm", + "@libverto-0__0.3.2-3.el9.x86_64//rpm", + "@libxcrypt-0__4.4.18-3.el9.x86_64//rpm", + "@libzstd-0__1.5.5-1.el9.x86_64//rpm", + "@lz4-libs-0__1.9.3-5.el9.x86_64//rpm", + "@mpfr-0__4.1.0-10.el9.x86_64//rpm", + "@ncurses-base-0__6.2-12.20210508.el9.x86_64//rpm", + "@ncurses-libs-0__6.2-12.20210508.el9.x86_64//rpm", + "@nettle-0__3.10.1-1.el9.x86_64//rpm", + "@nmap-ncat-3__7.92-5.el9.x86_64//rpm", + "@numactl-libs-0__2.0.19-3.el9.x86_64//rpm", + "@openssl-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-fips-provider-1__3.5.5-1.el9.x86_64//rpm", + "@openssl-libs-1__3.5.5-1.el9.x86_64//rpm", + "@p11-kit-0__0.26.2-1.el9.x86_64//rpm", + "@p11-kit-trust-0__0.26.2-1.el9.x86_64//rpm", + "@pam-0__1.5.1-28.el9.x86_64//rpm", + "@pcre-0__8.44-4.el9.x86_64//rpm", + "@pcre2-0__10.40-6.el9.x86_64//rpm", + "@pcre2-syntax-0__10.40-6.el9.x86_64//rpm", + "@procps-ng-0__3.3.17-14.el9.x86_64//rpm", + "@python3-0__3.9.25-3.el9.x86_64//rpm", + "@python3-configshell-1__1.1.30-1.el9.x86_64//rpm", + "@python3-dbus-0__1.2.18-2.el9.x86_64//rpm", + "@python3-gobject-base-0__3.40.1-6.el9.x86_64//rpm", + "@python3-gobject-base-noarch-0__3.40.1-6.el9.x86_64//rpm", + "@python3-kmod-0__0.9-32.el9.x86_64//rpm", + "@python3-libs-0__3.9.25-3.el9.x86_64//rpm", + "@python3-pip-wheel-0__21.3.1-1.el9.x86_64//rpm", + "@python3-pyparsing-0__2.4.7-9.el9.x86_64//rpm", + "@python3-pyudev-0__0.22.0-6.el9.x86_64//rpm", + "@python3-rtslib-0__2.1.76-1.el9.x86_64//rpm", + "@python3-setuptools-wheel-0__53.0.0-15.el9.x86_64//rpm", + "@python3-six-0__1.15.0-9.el9.x86_64//rpm", + "@python3-urwid-0__2.1.2-4.el9.x86_64//rpm", + "@qemu-img-17__10.1.0-10.el9.x86_64//rpm", + "@readline-0__8.1-4.el9.x86_64//rpm", + "@sed-0__4.8-9.el9.x86_64//rpm", + "@setup-0__2.13.7-10.el9.x86_64//rpm", + "@sevctl-0__0.4.2-1.el9.x86_64//rpm", + "@shadow-utils-2__4.9-16.el9.x86_64//rpm", + "@sqlite-libs-0__3.34.1-9.el9.x86_64//rpm", + "@systemd-0__252-64.el9.x86_64//rpm", + "@systemd-libs-0__252-64.el9.x86_64//rpm", + "@systemd-pam-0__252-64.el9.x86_64//rpm", + "@systemd-rpm-macros-0__252-64.el9.x86_64//rpm", + "@tar-2__1.34-10.el9.x86_64//rpm", + "@target-restore-0__2.1.76-1.el9.x86_64//rpm", + "@targetcli-0__2.1.57-3.el9.x86_64//rpm", + "@tzdata-0__2025c-1.el9.x86_64//rpm", + "@util-linux-0__2.37.4-25.el9.x86_64//rpm", + "@util-linux-core-0__2.37.4-25.el9.x86_64//rpm", + "@vim-minimal-2__8.2.2637-25.el9.x86_64//rpm", + "@which-0__2.21-30.el9.x86_64//rpm", + "@xz-libs-0__5.2.5-8.el9.x86_64//rpm", + "@zlib-0__1.2.11-41.el9.x86_64//rpm", + ], + symlinks = { + "/etc/crypto-policies/back-ends/openssl.config": "/usr/share/crypto-policies/DEFAULT/openssl.txt", + "/etc/crypto-policies/back-ends/opensslcnf.config": "/usr/share/crypto-policies/DEFAULT/opensslcnf.txt", + "/var/run": "../run", + "/usr/bin/nc": "/usr/bin/ncat", + }, + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_aarch64_cs10", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.2", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libidn2.so.0", + "libidn2.so.0.4.0", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libnbd-devel_aarch64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_aarch64_cs9", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.0", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libnbd-devel_aarch64_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_s390x_cs10", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.2", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libidn2.so.0", + "libidn2.so.0.4.0", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libnbd-devel_s390x_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_s390x_cs9", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.0", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libnbd-devel_s390x_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_x86_64_cs10", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib64": [ + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.2", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libidn2.so.0", + "libidn2.so.0.4.0", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libnbd-devel_x86_64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libnbd-libs_x86_64_cs9", + files = { + "/usr/include": ["libnbd.h"], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libc.so.6", + "libffi.so.8", + "libffi.so.8.1.0", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libnbd.so.0", + "libnbd.so.0.0.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libnbd-devel_x86_64_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_aarch64_cs10", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2302", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2502", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcap.so.2", + "libcap.so.2.69", + "libcbor.so.0.11", + "libcbor.so.0.11.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.8.0", + "libffi.so.8", + "libffi.so.8.1.2", + "libfido2.so.1", + "libfido2.so.1.14.0", + "libgcc_s-14-20251022.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.8000.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.8000.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.8000.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.8000.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libidn2.so.0", + "libidn2.so.0.4.0", + "libjson-c.so.5", + "libjson-c.so.5.4.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.4", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnghttp2.so.14", + "libnghttp2.so.14.29.2", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre2-8.so.0", + "libpcre2-8.so.0.13.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.11.0", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libudev.so.1", + "libudev.so.1.7.10", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11010.0", + "libvirt.so.0", + "libvirt.so.0.11010.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libvirt-devel_aarch64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_aarch64_cs9", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld-linux-aarch64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11009.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11009.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11009.0", + "libvirt.so.0", + "libvirt.so.0.11009.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_aarch64_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_s390x_cs10", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2302", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2502", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcap.so.2", + "libcap.so.2.69", + "libcbor.so.0.11", + "libcbor.so.0.11.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.8.0", + "libffi.so.8", + "libffi.so.8.1.2", + "libfido2.so.1", + "libfido2.so.1.14.0", + "libgcc_s-14-20251022.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.8000.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.8000.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.8000.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.8000.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libidn2.so.0", + "libidn2.so.0.4.0", + "libjson-c.so.5", + "libjson-c.so.5.4.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.4", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnghttp2.so.14", + "libnghttp2.so.14.29.2", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre2-8.so.0", + "libpcre2-8.so.0.13.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.11.0", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libudev.so.1", + "libudev.so.1.7.10", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11010.0", + "libvirt.so.0", + "libvirt.so.0.11010.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libvirt-devel_s390x_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_s390x_cs9", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib": ["ld64.so.1"], + "/usr/lib64": [ + "libacl.so.1", + "libacl.so.1.1.2301", + "libatomic.so.1", + "libatomic.so.1.2.0", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11009.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11009.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11009.0", + "libvirt.so.0", + "libvirt.so.0.11009.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_s390x_cs9", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_x86_64_cs10", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libacl.so.1", + "libacl.so.1.1.2302", + "libattr.so.1", + "libattr.so.1.1.2502", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcbor.so.0.11", + "libcbor.so.0.11.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.8.0", + "libffi.so.8", + "libffi.so.8.1.2", + "libfido2.so.1", + "libfido2.so.1.14.0", + "libgcc_s-14-20251022.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.8000.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.8000.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.8000.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.8000.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libidn2.so.0", + "libidn2.so.0.4.0", + "libjson-c.so.5", + "libjson-c.so.5.4.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.4", + "liblzma.so.5", + "liblzma.so.5.6.2", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnghttp2.so.14", + "libnghttp2.so.14.29.2", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre2-8.so.0", + "libpcre2-8.so.0.13.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.11.0", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.4", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libudev.so.1", + "libudev.so.1.7.10", + "libunistring.so.5", + "libunistring.so.5.0.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11010.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11010.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11010.0", + "libvirt.so.0", + "libvirt.so.0.11010.0", + "libxml2.so.2", + "libxml2.so.2.12.5", + "libz.so.1", + "libz.so.1.3.1.zlib-ng", + ], + }, + tar = ":libvirt-devel_x86_64_cs10", + visibility = ["//visibility:public"], +) + +tar2files( + name = "libvirt-libs_x86_64_cs9", + files = { + "/usr/include/libvirt": [ + "libvirt-admin.h", + "libvirt-common.h", + "libvirt-domain-checkpoint.h", + "libvirt-domain-snapshot.h", + "libvirt-domain.h", + "libvirt-event.h", + "libvirt-host.h", + "libvirt-interface.h", + "libvirt-lxc.h", + "libvirt-network.h", + "libvirt-nodedev.h", + "libvirt-nwfilter.h", + "libvirt-qemu.h", + "libvirt-secret.h", + "libvirt-storage.h", + "libvirt-stream.h", + "libvirt.h", + "virterror.h", + ], + "/usr/lib64": [ + "ld-linux-x86-64.so.2", + "libacl.so.1", + "libacl.so.1.1.2301", + "libattr.so.1", + "libattr.so.1.1.2501", + "libaudit.so.1", + "libaudit.so.1.0.0", + "libblkid.so.1", + "libblkid.so.1.1.0", + "libc.so.6", + "libcap-ng.so.0", + "libcap-ng.so.0.0.0", + "libcom_err.so.2", + "libcom_err.so.2.1", + "libcrypt.so.2", + "libcrypt.so.2.0.0", + "libcrypto.so.3", + "libcrypto.so.3.5.5", + "libcurl.so.4", + "libcurl.so.4.7.0", + "libffi.so.8", + "libffi.so.8.1.0", + "libgcc_s-11-20240719.so.1", + "libgcc_s.so.1", + "libgio-2.0.so.0", + "libgio-2.0.so.0.6800.4", + "libglib-2.0.so.0", + "libglib-2.0.so.0.6800.4", + "libgmodule-2.0.so.0", + "libgmodule-2.0.so.0.6800.4", + "libgnutls.so.30", + "libgnutls.so.30.40.4", + "libgobject-2.0.so.0", + "libgobject-2.0.so.0.6800.4", + "libgssapi_krb5.so.2", + "libgssapi_krb5.so.2.2", + "libhogweed.so.6", + "libhogweed.so.6.10", + "libidn2.so.0", + "libidn2.so.0.3.7", + "libjson-c.so.5", + "libjson-c.so.5.0.0", + "libk5crypto.so.3", + "libk5crypto.so.3.1", + "libkeyutils.so.1", + "libkeyutils.so.1.10", + "libkrb5.so.3", + "libkrb5.so.3.3", + "libkrb5support.so.0", + "libkrb5support.so.0.1", + "liblz4.so.1", + "liblz4.so.1.9.3", + "liblzma.so.5", + "liblzma.so.5.2.5", + "libm.so.6", + "libmount.so.1", + "libmount.so.1.1.0", + "libnettle.so.8", + "libnettle.so.8.10", + "libnghttp2.so.14", + "libnghttp2.so.14.20.1", + "libnl-3.so.200", + "libnl-3.so.200.26.0", + "libnuma.so.1", + "libnuma.so.1.0.0", + "libp11-kit.so.0", + "libp11-kit.so.0.4.8", + "libpcre.so.1", + "libpcre.so.1.2.12", + "libpcre2-8.so.0", + "libpcre2-8.so.0.11.0", + "libresolv.so.2", + "libsasl2.so.3", + "libsasl2.so.3.0.0", + "libselinux.so.1", + "libssh.so.4", + "libssh.so.4.9.4", + "libssl.so.3", + "libssl.so.3.5.5", + "libtasn1.so.6", + "libtasn1.so.6.6.0", + "libtirpc.so.3", + "libtirpc.so.3.0.0", + "libunistring.so.2", + "libunistring.so.2.1.0", + "libvirt-admin.so.0", + "libvirt-admin.so.0.11009.0", + "libvirt-lxc.so.0", + "libvirt-lxc.so.0.11009.0", + "libvirt-qemu.so.0", + "libvirt-qemu.so.0.11009.0", + "libvirt.so.0", + "libvirt.so.0.11009.0", + "libxml2.so.2", + "libxml2.so.2.9.13", + "libz.so.1", + "libz.so.1.2.11", + ], + }, + tar = ":libvirt-devel_x86_64_cs9", + visibility = ["//visibility:public"], +) \ No newline at end of file diff --git a/sample-application/discrete/sidecar/dp1.yaml b/sample-application/discrete/sidecar/dp1.yaml index c2e6782..db4eb67 100644 --- a/sample-application/discrete/sidecar/dp1.yaml +++ b/sample-application/discrete/sidecar/dp1.yaml @@ -6,7 +6,11 @@ data: my_script.sh: | #!/bin/sh tempFile=`mktemp` - echo $4 > $tempFile + printf '%s\n' "$4" > $tempFile + # Add namespace only if qemu namespace doesn't exist (any version) + if ! grep -q 'xmlns:qemu="[^"]*domain/qemu' $tempFile; then + sed -i 's||/devices> |" $tempFile echo $tempFile > /tmp/t.xml cat $tempFile diff --git a/sample-application/discrete/sidecar/dp3.yaml b/sample-application/discrete/sidecar/dp3.yaml index 525c150..35583d9 100644 --- a/sample-application/discrete/sidecar/dp3.yaml +++ b/sample-application/discrete/sidecar/dp3.yaml @@ -6,7 +6,11 @@ data: my_script.sh: | #!/bin/sh tempFile=`mktemp` - echo $4 > $tempFile + printf '%s\n' "$4" > $tempFile + # Add namespace only if qemu namespace doesn't exist (any version) + if ! grep -q 'xmlns:qemu="[^"]*domain/qemu' $tempFile; then + sed -i 's||/devices> |" $tempFile echo $tempFile > /tmp/t.xml cat $tempFile diff --git a/sample-application/discrete/sidecar/hdmi1.yaml b/sample-application/discrete/sidecar/hdmi1.yaml index 045df61..6879aed 100644 --- a/sample-application/discrete/sidecar/hdmi1.yaml +++ b/sample-application/discrete/sidecar/hdmi1.yaml @@ -6,7 +6,11 @@ data: my_script.sh: | #!/bin/sh tempFile=`mktemp` - echo $4 > $tempFile + printf '%s\n' "$4" > $tempFile + # Add namespace only if qemu namespace doesn't exist (any version) + if ! grep -q 'xmlns:qemu="[^"]*domain/qemu' $tempFile; then + sed -i 's||/devices> |" $tempFile echo $tempFile > /tmp/t.xml cat $tempFile diff --git a/sample-application/discrete/sidecar/hdmi2.yaml b/sample-application/discrete/sidecar/hdmi2.yaml index 8ea8a35..cc1f3d9 100644 --- a/sample-application/discrete/sidecar/hdmi2.yaml +++ b/sample-application/discrete/sidecar/hdmi2.yaml @@ -6,7 +6,11 @@ data: my_script.sh: | #!/bin/sh tempFile=`mktemp` - echo $4 > $tempFile + printf '%s\n' "$4" > $tempFile + # Add namespace only if qemu namespace doesn't exist (any version) + if ! grep -q 'xmlns:qemu="[^"]*domain/qemu' $tempFile; then + sed -i 's||/devices> |" $tempFile echo $tempFile > /tmp/t.xml cat $tempFile