forked from kubevirt/containerized-data-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
5007 lines (4409 loc) · 209 KB
/
Copy pathWORKSPACE
File metadata and controls
5007 lines (4409 loc) · 209 KB
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")
# 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()
load("@buildifier_prebuilt//:defs.bzl", "buildifier_prebuilt_register_toolchains", "buildtools_assets")
buildifier_prebuilt_register_toolchains(
assets = buildtools_assets(
arches = [
"amd64",
"arm64",
"s390x",
],
names = ["buildozer"],
platforms = [
"darwin",
"linux",
"windows",
],
sha256_values = {
"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 = "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("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(
go_version = "host",
)
# gazelle rules
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",
],
)
load(
"@bazel_gazelle//:deps.bzl",
"gazelle_dependencies",
"go_repository",
)
gazelle_dependencies()
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("@bazeldnf//:deps.bzl", "bazeldnf_dependencies", "rpm")
bazeldnf_dependencies()
# bazel-lib rules
http_archive(
name = "aspect_bazel_lib",
sha256 = "f525668442e4b19ae10d77e0b5ad15de5807025f321954dfb7065c0fe2429ec1",
strip_prefix = "bazel-lib-2.21.1",
urls = [
"https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.1/bazel-lib-v2.21.1.tar.gz",
"https://storage.googleapis.com/builddeps/f525668442e4b19ae10d77e0b5ad15de5807025f321954dfb7065c0fe2429ec1",
],
)
http_archive(
name = "tar.bzl",
sha256 = "a0d64064a598d7a1e58196d17de0deed6d3d2d8bfe1407ed9e68b24c31c38e8d",
strip_prefix = "tar.bzl-0.7.0",
urls = [
"https://github.com/bazel-contrib/tar.bzl/releases/download/v0.7.0/tar.bzl-v0.7.0.tar.gz",
"https://storage.googleapis.com/builddeps/a0d64064a598d7a1e58196d17de0deed6d3d2d8bfe1407ed9e68b24c31c38e8d",
],
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
aspect_bazel_lib_dependencies()
aspect_bazel_lib_register_toolchains()
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("@platforms//host:extension.bzl", "host_platform_repo")
maybe(
host_platform_repo,
name = "host_platform",
)
# rules_pkg
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 = "package_metadata",
sha256 = "5bd0cc7594ea528fd28f98d82457f157827d48cc20e07bcfdbb56072f35c8f67",
strip_prefix = "supply-chain-0.0.6/metadata",
urls = [
"https://github.com/bazel-contrib/supply-chain/releases/download/v0.0.6/supply-chain-v0.0.6.tar.gz",
"https://storage.googleapis.com/builddeps/5bd0cc7594ea528fd28f98d82457f157827d48cc20e07bcfdbb56072f35c8f67",
],
)
# bazel oci rules
http_archive(
name = "rules_oci",
sha256 = "e987cab7a35475cb9c9060fc3f338a1fc8896c240295a3272968b217acefd0cb",
strip_prefix = "rules_oci-2.3.0",
urls = [
"https://github.com/bazel-contrib/rules_oci/releases/download/v2.3.0/rules_oci-v2.3.0.tar.gz",
"https://storage.googleapis.com/builddeps/e987cab7a35475cb9c9060fc3f338a1fc8896c240295a3272968b217acefd0cb",
],
)
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")
# Pull base image container registry
oci_pull(
name = "registry",
digest = "sha256:5c98b00f91e8daed324cb680661e9d647f09d825778493ffb2618ff36bec2a9e",
image = "quay.io/libpod/registry",
tag = "2.8",
)
oci_pull(
name = "registry-aarch64",
digest = "sha256:f4e803a2d37afca6d059961f28d73c57cbe6fdb3a44ba6ae7ad463811f43b81c",
image = "quay.io/libpod/registry",
tag = "2.8",
)
oci_pull(
name = "registry-s390x",
digest = "sha256:7e1926b82e5b862a633b83acf8f456e1619be720aff346e1b634db2f843082b7",
image = "quay.io/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",
],
)
rpm(
name = "aardvark-dns-2__1.17.0-1.el9.aarch64",
sha256 = "75dc503a10c47df27a9bda47c2b32153210b1c36bd549007cbf07471895cc3bc",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/aardvark-dns-1.17.0-1.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/75dc503a10c47df27a9bda47c2b32153210b1c36bd549007cbf07471895cc3bc",
],
)
rpm(
name = "aardvark-dns-2__1.17.0-1.el9.s390x",
sha256 = "1906e1fcd1530c689bbed3b5b221de0bdec33ff5d549f6a08861978c90985ff4",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/aardvark-dns-1.17.0-1.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/1906e1fcd1530c689bbed3b5b221de0bdec33ff5d549f6a08861978c90985ff4",
],
)
rpm(
name = "aardvark-dns-2__1.17.0-1.el9.x86_64",
sha256 = "4a1b408cdc00a1647aaa0a51bfaf0b14f40eec702859c59b43ece5191023fa5f",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/aardvark-dns-1.17.0-1.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/4a1b408cdc00a1647aaa0a51bfaf0b14f40eec702859c59b43ece5191023fa5f",
],
)
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-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-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 = "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.41.3-1.el9.aarch64",
sha256 = "6ac92ee095ae030038f8b4f2a2d1c0b2b66d8e2f85dd5b01f5c7b4d44bf7b14f",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/buildah-1.41.3-1.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/6ac92ee095ae030038f8b4f2a2d1c0b2b66d8e2f85dd5b01f5c7b4d44bf7b14f",
],
)
rpm(
name = "buildah-2__1.41.3-1.el9.s390x",
sha256 = "2c8564bf93e03e7acb98bffd2cf22de502d7106efbb457c94661fdf621937143",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/buildah-1.41.3-1.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/2c8564bf93e03e7acb98bffd2cf22de502d7106efbb457c94661fdf621937143",
],
)
rpm(
name = "buildah-2__1.41.3-1.el9.x86_64",
sha256 = "74bc4bc951924f7812c72e2cc51ec200eb11e6725bfaee40c4d741db6e7d89b8",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/buildah-1.41.3-1.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/74bc4bc951924f7812c72e2cc51ec200eb11e6725bfaee40c4d741db6e7d89b8",
],
)
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__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__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 = "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-32.el9.aarch64",
sha256 = "f1e169c5596a4b2d3c860c8a7dfbcebf268455b3b2f01a94c1bb08d3f9a01477",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-gpg-keys-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/f1e169c5596a4b2d3c860c8a7dfbcebf268455b3b2f01a94c1bb08d3f9a01477",
],
)
rpm(
name = "centos-gpg-keys-0__9.0-32.el9.s390x",
sha256 = "f1e169c5596a4b2d3c860c8a7dfbcebf268455b3b2f01a94c1bb08d3f9a01477",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-gpg-keys-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/f1e169c5596a4b2d3c860c8a7dfbcebf268455b3b2f01a94c1bb08d3f9a01477",
],
)
rpm(
name = "centos-gpg-keys-0__9.0-32.el9.x86_64",
sha256 = "f1e169c5596a4b2d3c860c8a7dfbcebf268455b3b2f01a94c1bb08d3f9a01477",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-gpg-keys-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/f1e169c5596a4b2d3c860c8a7dfbcebf268455b3b2f01a94c1bb08d3f9a01477",
],
)
rpm(
name = "centos-logos-httpd-0__90.8-3.el9.aarch64",
sha256 = "43492450e3f69bc51abea804c8eecd649cea09c686eb4259fe9acccd5fde9b24",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/centos-logos-httpd-90.8-3.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/43492450e3f69bc51abea804c8eecd649cea09c686eb4259fe9acccd5fde9b24",
],
)
rpm(
name = "centos-logos-httpd-0__90.8-3.el9.s390x",
sha256 = "43492450e3f69bc51abea804c8eecd649cea09c686eb4259fe9acccd5fde9b24",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/centos-logos-httpd-90.8-3.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/43492450e3f69bc51abea804c8eecd649cea09c686eb4259fe9acccd5fde9b24",
],
)
rpm(
name = "centos-logos-httpd-0__90.8-3.el9.x86_64",
sha256 = "43492450e3f69bc51abea804c8eecd649cea09c686eb4259fe9acccd5fde9b24",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/centos-logos-httpd-90.8-3.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/43492450e3f69bc51abea804c8eecd649cea09c686eb4259fe9acccd5fde9b24",
],
)
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-32.el9.aarch64",
sha256 = "076a9d58d47102918123eac17af083e08e043305b872dd8d7086666b0924a5d2",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-release-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/076a9d58d47102918123eac17af083e08e043305b872dd8d7086666b0924a5d2",
],
)
rpm(
name = "centos-stream-release-0__9.0-32.el9.s390x",
sha256 = "076a9d58d47102918123eac17af083e08e043305b872dd8d7086666b0924a5d2",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-release-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/076a9d58d47102918123eac17af083e08e043305b872dd8d7086666b0924a5d2",
],
)
rpm(
name = "centos-stream-release-0__9.0-32.el9.x86_64",
sha256 = "076a9d58d47102918123eac17af083e08e043305b872dd8d7086666b0924a5d2",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-release-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/076a9d58d47102918123eac17af083e08e043305b872dd8d7086666b0924a5d2",
],
)
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-32.el9.aarch64",
sha256 = "7efda20c86aa3b1af66ecff598f5d800282654908553ba263ad9cdbbc203feab",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/centos-stream-repos-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/7efda20c86aa3b1af66ecff598f5d800282654908553ba263ad9cdbbc203feab",
],
)
rpm(
name = "centos-stream-repos-0__9.0-32.el9.s390x",
sha256 = "7efda20c86aa3b1af66ecff598f5d800282654908553ba263ad9cdbbc203feab",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/centos-stream-repos-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/7efda20c86aa3b1af66ecff598f5d800282654908553ba263ad9cdbbc203feab",
],
)
rpm(
name = "centos-stream-repos-0__9.0-32.el9.x86_64",
sha256 = "7efda20c86aa3b1af66ecff598f5d800282654908553ba263ad9cdbbc203feab",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/centos-stream-repos-9.0-32.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/7efda20c86aa3b1af66ecff598f5d800282654908553ba263ad9cdbbc203feab",
],
)
rpm(
name = "containers-common-4__1-134.el9.aarch64",
sha256 = "47436ef0599b6674790c2490ac38ed04cb5e4d835a59a558092b03a8eb4e7724",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/containers-common-1-134.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/47436ef0599b6674790c2490ac38ed04cb5e4d835a59a558092b03a8eb4e7724",
],
)
rpm(
name = "containers-common-4__1-134.el9.s390x",
sha256 = "e7c359e3bed653c431e863920bbf66d733d5aa0f6e32f927bf5dadca53d085cd",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/containers-common-1-134.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/e7c359e3bed653c431e863920bbf66d733d5aa0f6e32f927bf5dadca53d085cd",
],
)
rpm(
name = "containers-common-4__1-134.el9.x86_64",
sha256 = "a33c56fe5f8939076641d2775b671c5e0240558ec1c74fecafb4117eaa3b97aa",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/containers-common-1-134.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/a33c56fe5f8939076641d2775b671c5e0240558ec1c74fecafb4117eaa3b97aa",
],
)
rpm(
name = "containers-common-extra-4__1-134.el9.aarch64",
sha256 = "de0c2f17d3f51f8b559d26458fe8393726687b3e68e1c26bd3dd3a6cf3d04f1c",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/containers-common-extra-1-134.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/de0c2f17d3f51f8b559d26458fe8393726687b3e68e1c26bd3dd3a6cf3d04f1c",
],
)
rpm(
name = "containers-common-extra-4__1-134.el9.s390x",
sha256 = "328d2715691d6100a30e8248e32ad206d34c55783a26bcdc86f57a91009cee69",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/containers-common-extra-1-134.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/328d2715691d6100a30e8248e32ad206d34c55783a26bcdc86f57a91009cee69",
],
)
rpm(
name = "containers-common-extra-4__1-134.el9.x86_64",
sha256 = "c4609a2786504147ff25acd697404fd48c63e2e111e798f368fcf26c18b5ccda",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/containers-common-extra-1-134.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/c4609a2786504147ff25acd697404fd48c63e2e111e798f368fcf26c18b5ccda",
],
)
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-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 = "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.24-1.el9.aarch64",
sha256 = "37dbbe22d434bf0cf795941f3b92ff8d68f2369fb369b50cde2f4085271cd741",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/aarch64/os/Packages/crun-1.24-1.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/37dbbe22d434bf0cf795941f3b92ff8d68f2369fb369b50cde2f4085271cd741",
],
)
rpm(
name = "crun-0__1.24-1.el9.s390x",
sha256 = "5dcf4766b4de4c2b20d3d88b8569a81c4c82db641687eb095cbedcc42cd4a7f9",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/s390x/os/Packages/crun-1.24-1.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/5dcf4766b4de4c2b20d3d88b8569a81c4c82db641687eb095cbedcc42cd4a7f9",
],
)
rpm(
name = "crun-0__1.24-1.el9.x86_64",
sha256 = "01b2521faaf49ccd04681608f081c8a583617693b4bb3a321e2a648d48619ad7",
urls = [
"http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/crun-1.24-1.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/01b2521faaf49ccd04681608f081c8a583617693b4bb3a321e2a648d48619ad7",
],
)
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__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-scripts-0__20251126-1.gite9c4db2.el9.aarch64",
sha256 = "3e66975146af2b48bdaa9bec11132f4fc8106b78b638c594b30a898a46a9639b",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/crypto-policies-scripts-20251126-1.gite9c4db2.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/3e66975146af2b48bdaa9bec11132f4fc8106b78b638c594b30a898a46a9639b",
],
)
rpm(
name = "crypto-policies-scripts-0__20251126-1.gite9c4db2.el9.s390x",
sha256 = "3e66975146af2b48bdaa9bec11132f4fc8106b78b638c594b30a898a46a9639b",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/crypto-policies-scripts-20251126-1.gite9c4db2.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/3e66975146af2b48bdaa9bec11132f4fc8106b78b638c594b30a898a46a9639b",
],
)
rpm(
name = "crypto-policies-scripts-0__20251126-1.gite9c4db2.el9.x86_64",
sha256 = "3e66975146af2b48bdaa9bec11132f4fc8106b78b638c594b30a898a46a9639b",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20251126-1.gite9c4db2.el9.noarch.rpm",
"https://storage.googleapis.com/builddeps/3e66975146af2b48bdaa9bec11132f4fc8106b78b638c594b30a898a46a9639b",
],
)
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-38.el9.aarch64",
sha256 = "1731bba07b74a8edfbbb121ebe8d57c832783c68b6c297fdd37ba911e98354c2",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-7.76.1-38.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/1731bba07b74a8edfbbb121ebe8d57c832783c68b6c297fdd37ba911e98354c2",
],
)
rpm(
name = "curl-0__7.76.1-38.el9.s390x",
sha256 = "94da9420c536c7240cb37b2a6b895c97ed3afa1384823612755ba2d29dcb12ea",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-7.76.1-38.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/94da9420c536c7240cb37b2a6b895c97ed3afa1384823612755ba2d29dcb12ea",
],
)
rpm(
name = "curl-0__7.76.1-38.el9.x86_64",
sha256 = "5f3f80026be5ee050adfb728b52adac91e2dd81f069cfb6ea811e5fc80423ca8",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/Packages/curl-7.76.1-38.el9.x86_64.rpm",
"https://storage.googleapis.com/builddeps/5f3f80026be5ee050adfb728b52adac91e2dd81f069cfb6ea811e5fc80423ca8",
],
)
rpm(
name = "curl-minimal-0__7.76.1-38.el9.aarch64",
sha256 = "1d3c6c9e7c30fccf05cd480dbc0774d724d68f9f225f0e969be07f9d3d3f1cf2",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/aarch64/os/Packages/curl-minimal-7.76.1-38.el9.aarch64.rpm",
"https://storage.googleapis.com/builddeps/1d3c6c9e7c30fccf05cd480dbc0774d724d68f9f225f0e969be07f9d3d3f1cf2",
],
)
rpm(
name = "curl-minimal-0__7.76.1-38.el9.s390x",
sha256 = "02058c1f9a825e6459762cfc33c95e8909a4fc04c6a4d24539fc4881d0754657",
urls = [
"http://mirror.stream.centos.org/9-stream/BaseOS/s390x/os/Packages/curl-minimal-7.76.1-38.el9.s390x.rpm",
"https://storage.googleapis.com/builddeps/02058c1f9a825e6459762cfc33c95e8909a4fc04c6a4d24539fc4881d0754657",
],
)
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",