-
Notifications
You must be signed in to change notification settings - Fork 269
/
WORKSPACE
5135 lines (4527 loc) · 215 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
register_toolchains("//:python_toolchain")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
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 = "778197e26c5fbeb07ac2a2c5ae405b30f6cb7ad1f5510ea6fdac03bded96cc6f",
urls = [
"https://github.com/bazelbuild/rules_python/releases/download/0.2.0/rules_python-0.2.0.tar.gz",
"https://storage.googleapis.com/builddeps/778197e26c5fbeb07ac2a2c5ae405b30f6cb7ad1f5510ea6fdac03bded96cc6f",
],
)
load("//third_party:deps.bzl", "deps")
deps()
# 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")
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("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(
go_version = "host",
)
http_archive(
name = "com_google_protobuf",
sha256 = "cd218dc003eacc167e51e3ce856f6c2e607857225ef86b938d95650fcbb2f8e4",
strip_prefix = "protobuf-6d4e7fd7966c989e38024a8ea693db83758944f1",
# version 3.10.0
urls = [
"https://github.com/google/protobuf/archive/6d4e7fd7966c989e38024a8ea693db83758944f1.zip",
"https://storage.googleapis.com/builddeps/cd218dc003eacc167e51e3ce856f6c2e607857225ef86b938d95650fcbb2f8e4",
],
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
# gazelle rules
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",
],
)
load(
"@bazel_gazelle//:deps.bzl",
"gazelle_dependencies",
"go_repository",
)
gazelle_dependencies()
http_archive(
name = "bazeldnf",
sha256 = "6a2af09c6a598a3c4e4fec9af78334fbec2b3c16473f4e2c692fe2e567dc6f56",
strip_prefix = "bazeldnf-0.5.1",
urls = [
"https://github.com/rmohr/bazeldnf/archive/v0.5.1.tar.gz",
"https://storage.googleapis.com/builddeps/6a2af09c6a598a3c4e4fec9af78334fbec2b3c16473f4e2c692fe2e567dc6f56",
],
)
load("@bazeldnf//:deps.bzl", "bazeldnf_dependencies", "rpm")
bazeldnf_dependencies()
#load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies")
#buildifier_dependencies()
# bazel docker rules
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",
],
)
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()
# This is NOT needed when going through the language lang_image
# "repositories" function(s).
load("@io_bazel_rules_docker//repositories:deps.bzl", container_deps = "deps")
container_deps()
# override rules_docker issue with this dependency
# rules_docker 0.16 uses 0.1.4, bit since there the checksum changed, which is very weird, going with 0.1.4.1 to
go_repository(
name = "com_github_google_go_containerregistry",
importpath = "github.com/google/go-containerregistry",
sha256 = "bc0136a33f9c1e4578a700f7afcdaa1241cfff997d6bba695c710d24c5ae26bd",
strip_prefix = "google-go-containerregistry-efb2d62",
type = "tar.gz",
urls = ["https://api.github.com/repos/google/go-containerregistry/tarball/efb2d62d93a7705315b841d0544cb5b13565ff2a"], # v0.1.4.1
)
# RPM rules
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",
],
)
# Pull base image centos:stream9
container_pull(
name = "centos",
registry = "quay.io",
repository = "centos/centos",
tag = "stream9",
)
container_pull(
name = "centos-aarch64",
architecture = "arm64",
registry = "quay.io",
repository = "centos/centos",
tag = "stream9",
)
# Pull base image container registry
container_pull(
name = "registry",
digest = "sha256:5c98b00f91e8daed324cb680661e9d647f09d825778493ffb2618ff36bec2a9e",
registry = "quay.io",
repository = "libpod/registry",
tag = "2.8",
)
container_pull(
name = "registry-aarch64",
digest = "sha256:f4e803a2d37afca6d059961f28d73c57cbe6fdb3a44ba6ae7ad463811f43b81c",
registry = "quay.io",
repository = "libpod/registry",
tag = "2.8",
)
container_pull(
name = "registry-s390x",
digest = "sha256:7e1926b82e5b862a633b83acf8f456e1619be720aff346e1b634db2f843082b7",
registry = "quay.io",
repository = "libpod/registry",
tag = "2.8",
)
http_file(
name = "vcenter-govc-tar",
downloaded_file_path = "govc.tar.gz",
sha256 = "bfad9df590e061e28cfdd2c321583e96abd43e07687980f5897825ec13ff2cb5",
urls = [
"https://github.com/vmware/govmomi/releases/download/v0.26.1/govc_Linux_x86_64.tar.gz",
"https://storage.googleapis.com/builddeps/bfad9df590e061e28cfdd2c321583e96abd43e07687980f5897825ec13ff2cb5",
],
)
http_file(
name = "vcenter-vcsim-tar",
downloaded_file_path = "vcsim.tar.gz",
sha256 = "b844f6f7645c870a503aa1c5bd23d9a3cb4f5c850505073eef521f2f22a5f2b7",
urls = [
"https://github.com/vmware/govmomi/releases/download/v0.26.1/vcsim_Linux_x86_64.tar.gz",
"https://storage.googleapis.com/builddeps/b844f6f7645c870a503aa1c5bd23d9a3cb4f5c850505073eef521f2f22a5f2b7",
],
)
#imageio rpms and dependencies
http_file(
name = "ovirt-imageio-client",
sha256 = "4447b2e6c659f0b486f8db82b415eaa065adb09092b00308eade30632be0c4bf",
urls = ["https://storage.googleapis.com/builddeps/4447b2e6c659f0b486f8db82b415eaa065adb09092b00308eade30632be0c4bf"],
)
http_file(
name = "ovirt-imageio-client-aarch64",
sha256 = "ab2cdec494c6ed22cb718779bf1445d3ede79c051337e506b3c05c77c28f5b2d",
urls = ["https://storage.googleapis.com/builddeps/ab2cdec494c6ed22cb718779bf1445d3ede79c051337e506b3c05c77c28f5b2d"],
)
http_file(
name = "ovirt-imageio-common",
sha256 = "d6562eb701afcbde7ab1f14e1cc5f3a8be3ecc7fa25b9f3b831e342c3e14bc2a",
urls = ["https://storage.googleapis.com/builddeps/d6562eb701afcbde7ab1f14e1cc5f3a8be3ecc7fa25b9f3b831e342c3e14bc2a"],
)
http_file(
name = "ovirt-imageio-common-aarch64",
sha256 = "f8a9273463657244fdf34fef0077f2c79f1216891439472df0543eb5133d7922",
urls = ["https://storage.googleapis.com/builddeps/f8a9273463657244fdf34fef0077f2c79f1216891439472df0543eb5133d7922"],
)
http_file(
name = "ovirt-imageio-daemon",
sha256 = "e0df3d43109769d2745a0d2befc05db8961b7de770047adf8ad60469d6e430f0",
urls = ["https://storage.googleapis.com/builddeps/e0df3d43109769d2745a0d2befc05db8961b7de770047adf8ad60469d6e430f0"],
)
http_file(
name = "ovirt-imageio-daemon-aarch64",
sha256 = "5a6697a4fd9c8d52a8a9ead8a4281b3d208df221e0d87f4377e7a3f6a3a1608d",
urls = ["https://storage.googleapis.com/builddeps/5a6697a4fd9c8d52a8a9ead8a4281b3d208df221e0d87f4377e7a3f6a3a1608d"],
)
rpm(
name = "acl-0__2.3.1-3.el9.aarch64",
sha256 = "151d6542a39243b5f65698b31edfe2d9c59e2fd71a7dcaa237442fc5d1d9de1e",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/acl-2.3.1-3.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/151d6542a39243b5f65698b31edfe2d9c59e2fd71a7dcaa237442fc5d1d9de1e",
],
)
rpm(
name = "acl-0__2.3.1-3.el9.x86_64",
sha256 = "986044c3837eddbc9231d7be5e5fc517e245296978b988a803bc9f9172fe84ea",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/acl-2.3.1-3.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/986044c3837eddbc9231d7be5e5fc517e245296978b988a803bc9f9172fe84ea",
],
)
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 = "alternatives-0__1.20-2.el9.aarch64",
sha256 = "4d9055232088f1ab181e4741358aa188749b8195f184817c04a61447606cdfb5",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/alternatives-1.20-2.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/4d9055232088f1ab181e4741358aa188749b8195f184817c04a61447606cdfb5",
],
)
rpm(
name = "alternatives-0__1.20-2.el9.x86_64",
sha256 = "1851d5f64ebaeac67c5c2d9e4adc1e73aa6433b44a167268a3510c3d056062db",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/alternatives-1.20-2.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/1851d5f64ebaeac67c5c2d9e4adc1e73aa6433b44a167268a3510c3d056062db",
],
)
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-1.el9.aarch64",
sha256 = "ce97ff90c24105c48d6ef29b0643021f366048f10c79c7f3d81e3f0f9483d5e6",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/audit-libs-3.1.5-1.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/ce97ff90c24105c48d6ef29b0643021f366048f10c79c7f3d81e3f0f9483d5e6",
],
)
rpm(
name = "audit-libs-0__3.1.5-1.el9.s390x",
sha256 = "090ef1e4057d3235a050ad72728f40752faa6958a7f3ee6ebd0cd43e5f97d026",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/audit-libs-3.1.5-1.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/090ef1e4057d3235a050ad72728f40752faa6958a7f3ee6ebd0cd43e5f97d026",
],
)
rpm(
name = "audit-libs-0__3.1.5-1.el9.x86_64",
sha256 = "e1998c3847956ad86d846f8b857e5382897ef2f444b4a2ef8e82a0cb8b1aa1ad",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/audit-libs-3.1.5-1.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/e1998c3847956ad86d846f8b857e5382897ef2f444b4a2ef8e82a0cb8b1aa1ad",
],
)
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-4.el9.aarch64",
sha256 = "ae6a63071aea7e9f0213abcced27505cc63b92718d68a9f529b5e3ac041fc1fa",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bash-5.1.8-4.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/ae6a63071aea7e9f0213abcced27505cc63b92718d68a9f529b5e3ac041fc1fa",
],
)
rpm(
name = "bash-0__5.1.8-4.el9.x86_64",
sha256 = "db30bb69faeb5a47da50d4a02639276ad083e49ca0579fbdd38d21dace0497aa",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bash-5.1.8-4.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/db30bb69faeb5a47da50d4a02639276ad083e49ca0579fbdd38d21dace0497aa",
],
)
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 = "buildah-2__1.37.2-1.el9.aarch64",
sha256 = "aa3556b21b45010a374f2cea9a6783d952a47f9f4b6030de1609ef602add0717",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/buildah-1.37.2-1.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/aa3556b21b45010a374f2cea9a6783d952a47f9f4b6030de1609ef602add0717",
],
)
rpm(
name = "buildah-2__1.37.2-1.el9.s390x",
sha256 = "9e160908764b353923bd1ac84cdb843a779f75b9a28ab3cc5218c4b61b7efded",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/buildah-1.37.2-1.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/9e160908764b353923bd1ac84cdb843a779f75b9a28ab3cc5218c4b61b7efded",
],
)
rpm(
name = "buildah-2__1.37.2-1.el9.x86_64",
sha256 = "bd9ca62ee4deb457c71f7d369a502370e6efc98013130582c7f299b6557f5bd7",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/buildah-1.37.2-1.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/bd9ca62ee4deb457c71f7d369a502370e6efc98013130582c7f299b6557f5bd7",
],
)
rpm(
name = "bzip2-libs-0__1.0.8-8.el9.aarch64",
sha256 = "6c20f6f13c274fa2487f95f1e3dddcee9b931ce222abebd2f1d9b3f7eb69fcde",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.8-8.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/6c20f6f13c274fa2487f95f1e3dddcee9b931ce222abebd2f1d9b3f7eb69fcde",
],
)
rpm(
name = "bzip2-libs-0__1.0.8-8.el9.s390x",
sha256 = "187c9275d53ddd209339a5ae7ae7af4d2c80647a054197f7abe39c020a66262d",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/bzip2-libs-1.0.8-8.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/187c9275d53ddd209339a5ae7ae7af4d2c80647a054197f7abe39c020a66262d",
],
)
rpm(
name = "bzip2-libs-0__1.0.8-8.el9.x86_64",
sha256 = "fabd6b5c065c2b9d4a8d39a938ae577d801de2ddc73c8cdf6f7803db29c28d0a",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.8-8.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/fabd6b5c065c2b9d4a8d39a938ae577d801de2ddc73c8cdf6f7803db29c28d0a",
],
)
rpm(
name = "ca-certificates-0__2020.2.50-94.el9.aarch64",
sha256 = "3099471d984fb7d9e1cf42406eb08c154b34b8560742ed1f5eb9139f059c2d09",
urls = ["https://storage.googleapis.com/builddeps/3099471d984fb7d9e1cf42406eb08c154b34b8560742ed1f5eb9139f059c2d09"],
)
rpm(
name = "ca-certificates-0__2020.2.50-94.el9.x86_64",
sha256 = "3099471d984fb7d9e1cf42406eb08c154b34b8560742ed1f5eb9139f059c2d09",
urls = ["https://storage.googleapis.com/builddeps/3099471d984fb7d9e1cf42406eb08c154b34b8560742ed1f5eb9139f059c2d09"],
)
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 = "centos-gpg-keys-0__9.0-12.el9.aarch64",
sha256 = "3af698b9f4dbf5368d1454df4e06cb8ffb75247b7b8385cfb0f7698f3db7d3ab",
urls = ["https://storage.googleapis.com/builddeps/3af698b9f4dbf5368d1454df4e06cb8ffb75247b7b8385cfb0f7698f3db7d3ab"],
)
rpm(
name = "centos-gpg-keys-0__9.0-12.el9.x86_64",
sha256 = "3af698b9f4dbf5368d1454df4e06cb8ffb75247b7b8385cfb0f7698f3db7d3ab",
urls = ["https://storage.googleapis.com/builddeps/3af698b9f4dbf5368d1454df4e06cb8ffb75247b7b8385cfb0f7698f3db7d3ab"],
)
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-logos-httpd-0__90.8-1.el9.aarch64",
sha256 = "97173a26ab3315860acfc806a4547ac967e5bf1d19246de485595aaf8065d13c",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/centos-logos-httpd-90.8-1.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/97173a26ab3315860acfc806a4547ac967e5bf1d19246de485595aaf8065d13c",
],
)
rpm(
name = "centos-logos-httpd-0__90.8-1.el9.s390x",
sha256 = "97173a26ab3315860acfc806a4547ac967e5bf1d19246de485595aaf8065d13c",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/centos-logos-httpd-90.8-1.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/97173a26ab3315860acfc806a4547ac967e5bf1d19246de485595aaf8065d13c",
],
)
rpm(
name = "centos-logos-httpd-0__90.8-1.el9.x86_64",
sha256 = "97173a26ab3315860acfc806a4547ac967e5bf1d19246de485595aaf8065d13c",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/centos-logos-httpd-90.8-1.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/97173a26ab3315860acfc806a4547ac967e5bf1d19246de485595aaf8065d13c",
],
)
rpm(
name = "centos-stream-release-0__9.0-12.el9.aarch64",
sha256 = "400b77fb28443d36a6fa3c25c95e84b843ac9ae17b205651f1e2bea32c7289cc",
urls = ["https://storage.googleapis.com/builddeps/400b77fb28443d36a6fa3c25c95e84b843ac9ae17b205651f1e2bea32c7289cc"],
)
rpm(
name = "centos-stream-release-0__9.0-12.el9.x86_64",
sha256 = "400b77fb28443d36a6fa3c25c95e84b843ac9ae17b205651f1e2bea32c7289cc",
urls = ["https://storage.googleapis.com/builddeps/400b77fb28443d36a6fa3c25c95e84b843ac9ae17b205651f1e2bea32c7289cc"],
)
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-12.el9.aarch64",
sha256 = "d093d9f9021a8edc28843f61059a94bd8aa0109f6a9a865c2a1560cf6602a2ab",
urls = ["https://storage.googleapis.com/builddeps/d093d9f9021a8edc28843f61059a94bd8aa0109f6a9a865c2a1560cf6602a2ab"],
)
rpm(
name = "centos-stream-repos-0__9.0-12.el9.x86_64",
sha256 = "d093d9f9021a8edc28843f61059a94bd8aa0109f6a9a865c2a1560cf6602a2ab",
urls = ["https://storage.googleapis.com/builddeps/d093d9f9021a8edc28843f61059a94bd8aa0109f6a9a865c2a1560cf6602a2ab"],
)
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 = "containers-common-2__1-91.el9.aarch64",
sha256 = "e9802e5400e614c0ac41b3d6d9b7e4ecc8ea02aef0e7b2be064e93ed68b4da02",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/containers-common-1-91.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/e9802e5400e614c0ac41b3d6d9b7e4ecc8ea02aef0e7b2be064e93ed68b4da02",
],
)
rpm(
name = "containers-common-2__1-91.el9.s390x",
sha256 = "01c219b60f01e3c1eb9e35ccd9d8cc189d9433b0a84a9b35b1b2041ee75a8cbf",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/containers-common-1-91.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/01c219b60f01e3c1eb9e35ccd9d8cc189d9433b0a84a9b35b1b2041ee75a8cbf",
],
)
rpm(
name = "containers-common-2__1-91.el9.x86_64",
sha256 = "d8ea0cdba33f4cdb7b9e0fa34cb5c61323146ffaa1e3ea311bbde06d93c9d265",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/containers-common-1-91.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/d8ea0cdba33f4cdb7b9e0fa34cb5c61323146ffaa1e3ea311bbde06d93c9d265",
],
)
rpm(
name = "coreutils-single-0__8.32-31.el9.aarch64",
sha256 = "e2d2e94d4322f41cb7331b0e8c23f937b08f37514826d78fb4ed4d1bbea3ef5b",
urls = ["https://storage.googleapis.com/builddeps/e2d2e94d4322f41cb7331b0e8c23f937b08f37514826d78fb4ed4d1bbea3ef5b"],
)
rpm(
name = "coreutils-single-0__8.32-31.el9.x86_64",
sha256 = "fcae4e00df1cb3d0eb214d166045150aede7262559bd03fc585610fe1ea59c08",
urls = ["https://storage.googleapis.com/builddeps/fcae4e00df1cb3d0eb214d166045150aede7262559bd03fc585610fe1ea59c08"],
)
rpm(
name = "coreutils-single-0__8.32-36.el9.aarch64",
sha256 = "ce8631f44b1f486900e4572f03317d351050b85abd0ec15b098f46ca47b039dd",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/coreutils-single-8.32-36.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/ce8631f44b1f486900e4572f03317d351050b85abd0ec15b098f46ca47b039dd",
],
)
rpm(
name = "coreutils-single-0__8.32-36.el9.s390x",
sha256 = "77705a4b37599f291c31c4160659e35c19546b8b56f1fae372f35cb25f97dabf",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/coreutils-single-8.32-36.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/77705a4b37599f291c31c4160659e35c19546b8b56f1fae372f35cb25f97dabf",
],
)
rpm(
name = "coreutils-single-0__8.32-36.el9.x86_64",
sha256 = "2d42cef83d48e0827ebbfdffe04f39d2f1148bb8228db293b9271579e9f13308",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/coreutils-single-8.32-36.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/2d42cef83d48e0827ebbfdffe04f39d2f1148bb8228db293b9271579e9f13308",
],
)
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 = "crun-0__1.16.1-1.el9.aarch64",
sha256 = "f713f2ae1ef06b06a4a871e0df08f113f7b0d889bdd4cc7ceb447fcab494b4e7",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/crun-1.16.1-1.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/f713f2ae1ef06b06a4a871e0df08f113f7b0d889bdd4cc7ceb447fcab494b4e7",
],
)
rpm(
name = "crun-0__1.16.1-1.el9.s390x",
sha256 = "527a0df933b6324ecec08338bd6275be6cf6217e5225724dd22afedff11da7e5",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/crun-1.16.1-1.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/527a0df933b6324ecec08338bd6275be6cf6217e5225724dd22afedff11da7e5",
],
)
rpm(
name = "crun-0__1.16.1-1.el9.x86_64",
sha256 = "2375a3674fb8e80e14b4722926d71770df1e65bfb5c79f25fc55d74c6fa2331a",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/crun-1.16.1-1.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/2375a3674fb8e80e14b4722926d71770df1e65bfb5c79f25fc55d74c6fa2331a",
],
)
rpm(
name = "crypto-policies-0__20220223-1.git5203b41.el9.aarch64",
sha256 = "9912a52ab2fcb33f39a574a84f5ca6ced9426536d4e025c29702886419a12c8f",
urls = ["https://storage.googleapis.com/builddeps/9912a52ab2fcb33f39a574a84f5ca6ced9426536d4e025c29702886419a12c8f"],
)
rpm(
name = "crypto-policies-0__20220223-1.git5203b41.el9.x86_64",
sha256 = "9912a52ab2fcb33f39a574a84f5ca6ced9426536d4e025c29702886419a12c8f",
urls = ["https://storage.googleapis.com/builddeps/9912a52ab2fcb33f39a574a84f5ca6ced9426536d4e025c29702886419a12c8f"],
)
rpm(
name = "crypto-policies-0__20240822-1.gitbaf3e06.el9.aarch64",
sha256 = "b27b0ad9f9ecb77cabfd03b7e2450bb4ef9413ee0cd7be15bfa0ecf6f2d83b96",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-20240822-1.gitbaf3e06.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/b27b0ad9f9ecb77cabfd03b7e2450bb4ef9413ee0cd7be15bfa0ecf6f2d83b96",
],
)
rpm(
name = "crypto-policies-0__20240822-1.gitbaf3e06.el9.s390x",
sha256 = "b27b0ad9f9ecb77cabfd03b7e2450bb4ef9413ee0cd7be15bfa0ecf6f2d83b96",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-20240822-1.gitbaf3e06.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/b27b0ad9f9ecb77cabfd03b7e2450bb4ef9413ee0cd7be15bfa0ecf6f2d83b96",
],
)
rpm(
name = "crypto-policies-0__20240822-1.gitbaf3e06.el9.x86_64",
sha256 = "b27b0ad9f9ecb77cabfd03b7e2450bb4ef9413ee0cd7be15bfa0ecf6f2d83b96",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-20240822-1.gitbaf3e06.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/b27b0ad9f9ecb77cabfd03b7e2450bb4ef9413ee0cd7be15bfa0ecf6f2d83b96",
],
)
rpm(
name = "crypto-policies-scripts-0__20240822-1.gitbaf3e06.el9.aarch64",
sha256 = "c9f4377cb80598a795ec51f48e6e4f7a9808b4423ad348a5dfd009fdcbc325c7",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-scripts-20240822-1.gitbaf3e06.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/c9f4377cb80598a795ec51f48e6e4f7a9808b4423ad348a5dfd009fdcbc325c7",
],
)
rpm(
name = "crypto-policies-scripts-0__20240822-1.gitbaf3e06.el9.s390x",
sha256 = "c9f4377cb80598a795ec51f48e6e4f7a9808b4423ad348a5dfd009fdcbc325c7",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-scripts-20240822-1.gitbaf3e06.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/c9f4377cb80598a795ec51f48e6e4f7a9808b4423ad348a5dfd009fdcbc325c7",
],
)
rpm(
name = "crypto-policies-scripts-0__20240822-1.gitbaf3e06.el9.x86_64",
sha256 = "c9f4377cb80598a795ec51f48e6e4f7a9808b4423ad348a5dfd009fdcbc325c7",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20240822-1.gitbaf3e06.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/c9f4377cb80598a795ec51f48e6e4f7a9808b4423ad348a5dfd009fdcbc325c7",
],
)
rpm(
name = "curl-0__7.76.1-14.el9.aarch64",
sha256 = "c1ddc1be37854be9c97f0351aa585809e9d2e54c0dcbf77dbb33d85b29bc10e6",
urls = ["https://storage.googleapis.com/builddeps/c1ddc1be37854be9c97f0351aa585809e9d2e54c0dcbf77dbb33d85b29bc10e6"],
)
rpm(
name = "curl-0__7.76.1-14.el9.x86_64",
sha256 = "9fb98bd7ebb8d210b77bca1c70aac00b0f0dfc6f776157e9c7f64fd7339bff3c",
urls = ["https://storage.googleapis.com/builddeps/9fb98bd7ebb8d210b77bca1c70aac00b0f0dfc6f776157e9c7f64fd7339bff3c"],
)
rpm(
name = "curl-0__7.76.1-31.el9.aarch64",
sha256 = "342e768bc4a54dbd45575b607d3e71c3b3011428a7bce0a3074300526f46f51a",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-7.76.1-31.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/342e768bc4a54dbd45575b607d3e71c3b3011428a7bce0a3074300526f46f51a",
],
)
rpm(
name = "curl-0__7.76.1-31.el9.s390x",
sha256 = "ee992346a68e550e38c68144df43d75def522f8d51b8e5aca3eb17d0c160e45a",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-7.76.1-31.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/ee992346a68e550e38c68144df43d75def522f8d51b8e5aca3eb17d0c160e45a",
],
)
rpm(
name = "curl-0__7.76.1-31.el9.x86_64",
sha256 = "7884a48b4198a915ec412bbfd32bedee955f11119ac1c55b4afa82dd269d22dd",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-7.76.1-31.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/7884a48b4198a915ec412bbfd32bedee955f11119ac1c55b4afa82dd269d22dd",
],
)
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 = "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 = "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(