Skip to content

Commit 5027522

Browse files
committed
Bump prebuilt binary references for v0.6.0-rc1
1 parent 6e8f82f commit 5027522

File tree

1 file changed

+7
-36
lines changed

1 file changed

+7
-36
lines changed

bazeldnf/deps.bzl

Lines changed: 7 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,48 @@
1-
"""bazeldnf public dependency for WORKSPACE"""
2-
31
load(
42
"@bazel_tools//tools/build_defs/repo:http.bzl",
5-
"http_archive",
63
"http_file",
74
)
8-
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
9-
load(
10-
"@bazeldnf//internal:rpm.bzl",
11-
_rpm = "rpm",
12-
)
13-
14-
rpm = _rpm
155

166
def bazeldnf_dependencies():
17-
"""bazeldnf dependencies when consuming the repo externally"""
187
http_file(
198
name = "bazeldnf-linux-amd64",
209
executable = True,
2110
sha256 = "7e1035d8bd2f25b787b04843f4d6a05e7cdbd3995926497c2a587e52da6262a8",
22-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-linux-amd64"],
11+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-linux-amd64"],
2312
)
2413
http_file(
2514
name = "bazeldnf-linux-arm64",
2615
executable = True,
2716
sha256 = "d954b785bfd79dbbd66a2f3df02b0d3a51f1fed4508a6d88fda13a9d24c878cc",
28-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-linux-arm64"],
17+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-linux-arm64"],
2918
)
3019
http_file(
3120
name = "bazeldnf-darwin-amd64",
3221
executable = True,
3322
sha256 = "92afc7f6475981adf9ae32b563b051869d433d8d8c9666e28a1c1c6e840394cd",
34-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-darwin-amd64"],
23+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-darwin-amd64"],
3524
)
3625
http_file(
3726
name = "bazeldnf-darwin-arm64",
3827
executable = True,
3928
sha256 = "c5e99ed72448026ee63259a0a28440f8b43a125414fa312edbd569c2976515a3",
40-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-darwin-arm64"],
29+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-darwin-arm64"],
4130
)
4231
http_file(
4332
name = "bazeldnf-linux-ppc64",
4433
executable = True,
4534
sha256 = "9d5337c1afe4bab858742718ac4c230d9ca368299cb97c50078eef14ae180922",
46-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-linux-ppc64"],
35+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-linux-ppc64"],
4736
)
4837
http_file(
4938
name = "bazeldnf-linux-ppc64le",
5039
executable = True,
5140
sha256 = "7ea4db00947914bc1c51e8f042fe220a3167c65815c487eccd0c541ecfa78aa1",
52-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-linux-ppc64le"],
41+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-linux-ppc64le"],
5342
)
5443
http_file(
5544
name = "bazeldnf-linux-s390x",
5645
executable = True,
5746
sha256 = "09aa4abcb1d85da11642889826b982ef90547eb32099fc8177456c92f66a4cfd",
58-
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.5.9/bazeldnf-v0.5.9-linux-s390x"],
59-
)
60-
maybe(
61-
http_archive,
62-
name = "bazel_skylib",
63-
sha256 = "f24ab666394232f834f74d19e2ff142b0af17466ea0c69a3f4c276ee75f6efce",
64-
urls = [
65-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.0/bazel-skylib-1.4.0.tar.gz",
66-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.0/bazel-skylib-1.4.0.tar.gz",
67-
],
68-
)
69-
maybe(
70-
http_archive,
71-
name = "platforms",
72-
urls = [
73-
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz",
74-
"https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz",
75-
],
76-
sha256 = "218efe8ee736d26a3572663b374a253c012b716d8af0c07e842e82f238a0a7ee",
47+
urls = ["https://github.com/rmohr/bazeldnf/releases/download/v0.6.0-rc1/bazeldnf-v0.6.0-rc1-linux-s390x"],
7748
)

0 commit comments

Comments
 (0)