blob: b872a69b50bebbf406732ea92064fb8a4ce42cd3 [file] [log] [blame]
Tony Aiuto337e7172020-12-09 10:20:14 -08001# Copyright 2020 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http:#www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14"""List the distribution dependencies we need to build Bazel."""
15
16DIST_DEPS = {
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -080017 ########################################
18 #
19 # Runtime language dependencies
20 #
21 ########################################
Tony Aiutoe973aef2021-01-11 00:32:51 -080022 "platforms": {
John Cater2cff2ac2021-02-26 07:38:37 -080023 "archive": "platforms-0.0.4.tar.gz",
24 "sha256": "079945598e4b6cc075846f7fd6a9d0857c33a7afc0de868c2ccb96405225135d",
Tony Aiutoe973aef2021-01-11 00:32:51 -080025 "urls": [
John Cater2cff2ac2021-02-26 07:38:37 -080026 "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.4/platforms-0.0.4.tar.gz",
27 "https://github.com/bazelbuild/platforms/releases/download/0.0.4/platforms-0.0.4.tar.gz",
Tony Aiutoe973aef2021-01-11 00:32:51 -080028 ],
29 "used_in": [
30 "additional_distfiles",
31 "test_WORKSPACE_files",
32 ],
33 },
Chi Wang26b94ff2021-09-28 23:42:26 -070034 "bazelci_rules": {
35 "archive": "bazelci_rules-1.0.0.tar.gz",
36 "sha256": "eca21884e6f66a88c358e580fd67a6b148d30ab57b1680f62a96c00f9bc6a07e",
37 "strip_prefix": "bazelci_rules-1.0.0",
Tony Aiutoe973aef2021-01-11 00:32:51 -080038 "urls": [
Chi Wang26b94ff2021-09-28 23:42:26 -070039 "https://github.com/bazelbuild/continuous-integration/releases/download/rules-1.0.0/bazelci_rules-1.0.0.tar.gz",
Tony Aiutoe973aef2021-01-11 00:32:51 -080040 ],
41 "used_in": [
42 "additional_distfiles",
43 ],
44 },
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -080045 # Keep in sync with src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/cc_configure.WORKSPACE.
46 # Keep in sync with src/main/java/com/google/devtools/build/lib/bazel/rules/java/jdk.WORKSPACE.
47 # Note: This is not in sync with src/test/java/com/google/devtools/build/lib/blackbox/framework/BlackBoxTestEnvironment.java.
48 # Perhaps it should be.
Tony Aiuto337e7172020-12-09 10:20:14 -080049 "rules_cc": {
50 "archive": "b1c40e1de81913a3c40e5948f78719c28152486d.zip",
51 "sha256": "d0c573b94a6ef20ef6ff20154a23d0efcb409fb0e1ff0979cec318dfe42f0cdd",
52 "strip_prefix": "rules_cc-b1c40e1de81913a3c40e5948f78719c28152486d",
53 "urls": [
54 "https://mirror.bazel.build/github.com/bazelbuild/rules_cc/archive/b1c40e1de81913a3c40e5948f78719c28152486d.zip",
55 "https://github.com/bazelbuild/rules_cc/archive/b1c40e1de81913a3c40e5948f78719c28152486d.zip",
56 ],
Tony Aiutoe973aef2021-01-11 00:32:51 -080057 "used_in": [
58 "additional_distfiles",
59 "test_WORKSPACE_files",
60 ],
Tony Aiuto337e7172020-12-09 10:20:14 -080061 },
Tony Aiutob15a8b42021-01-08 07:42:57 -080062 "rules_java": {
63 "archive": "7cf3cefd652008d0a64a419c34c13bdca6c8f178.zip",
64 "sha256": "bc81f1ba47ef5cc68ad32225c3d0e70b8c6f6077663835438da8d5733f917598",
65 "strip_prefix": "rules_java-7cf3cefd652008d0a64a419c34c13bdca6c8f178",
66 "urls": [
67 "https://mirror.bazel.build/github.com/bazelbuild/rules_java/archive/7cf3cefd652008d0a64a419c34c13bdca6c8f178.zip",
68 "https://github.com/bazelbuild/rules_java/archive/7cf3cefd652008d0a64a419c34c13bdca6c8f178.zip",
69 ],
70 "used_in": [
71 "additional_distfiles",
72 "test_WORKSPACE_files",
73 ],
Tony Aiutob15a8b42021-01-08 07:42:57 -080074 },
Tony Aiuto320bc942021-01-14 07:43:21 -080075 # TODO(aiuto): Update src/test/java/com/google/devtools/build/lib/blackbox/framework/BlackBoxTestEnvironment.java to use
76 # this dynamically.
77 "rules_proto": {
78 "archive": "7e4afce6fe62dbff0a4a03450143146f9f2d7488.tar.gz",
79 "sha256": "8e7d59a5b12b233be5652e3d29f42fba01c7cbab09f6b3a8d0a57ed6d1e9a0da",
80 "strip_prefix": "rules_proto-7e4afce6fe62dbff0a4a03450143146f9f2d7488",
81 "urls": [
82 "https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/7e4afce6fe62dbff0a4a03450143146f9f2d7488.tar.gz",
83 "https://github.com/bazelbuild/rules_proto/archive/7e4afce6fe62dbff0a4a03450143146f9f2d7488.tar.gz",
84 ],
85 "used_in": [
86 "additional_distfiles",
87 "test_WORKSPACE_files",
88 ],
89 },
Tony Aiutoe973aef2021-01-11 00:32:51 -080090 #################################################
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -080091 #
Tony Aiutoe973aef2021-01-11 00:32:51 -080092 # Dependencies which are part of the Bazel binary
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -080093 #
Tony Aiutoe973aef2021-01-11 00:32:51 -080094 #################################################
95 "com_google_protobuf": {
96 "archive": "v3.13.0.tar.gz",
97 "sha256": "9b4ee22c250fe31b16f1a24d61467e40780a3fbb9b91c3b65be2a376ed913a1a",
98 "strip_prefix": "protobuf-3.13.0",
99 "urls": [
100 "https://mirror.bazel.build/github.com/protocolbuffers/protobuf/archive/v3.13.0.tar.gz",
101 "https://github.com/protocolbuffers/protobuf/archive/v3.13.0.tar.gz",
102 ],
103 "patch_args": ["-p1"],
104 "patches": ["//third_party/protobuf:3.13.0.patch"],
105 "used_in": [
106 "additional_distfiles",
107 "test_WORKSPACE_files",
108 ],
109 },
Tony Aiuto320bc942021-01-14 07:43:21 -0800110 "protocolbuffers": {
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700111 "archive": "2de300726a1ba2de9a468468dc5ff9ed17a3215f.tar.gz",
112 "sha256": "6a5f67874af66b239b709c572ac1a5a00fdb1b29beaf13c3e6f79b1ba10dc7c4",
Tony Aiuto320bc942021-01-14 07:43:21 -0800113 "urls": [
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700114 "https://mirror.bazel.build/github.com/protocolbuffers/upb/archive/2de300726a1ba2de9a468468dc5ff9ed17a3215f.tar.gz",
115 "https://github.com/protocolbuffers/upb/archive/2de300726a1ba2de9a468468dc5ff9ed17a3215f.tar.gz",
Tony Aiuto320bc942021-01-14 07:43:21 -0800116 ],
117 "used_in": [
118 "additional_distfiles",
119 "test_WORKSPACE_files",
120 ],
121 },
Tony Aiutoe973aef2021-01-11 00:32:51 -0800122 "com_github_grpc_grpc": {
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700123 "archive": "v1.41.0.tar.gz",
124 "sha256": "e5fb30aae1fa1cffa4ce00aa0bbfab908c0b899fcf0bbc30e268367d660d8656",
125 "strip_prefix": "grpc-1.41.0",
Tony Aiutoe973aef2021-01-11 00:32:51 -0800126 "urls": [
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700127 "https://mirror.bazel.build/github.com/grpc/grpc/archive/v1.41.0.tar.gz",
128 "https://github.com/grpc/grpc/archive/v1.41.0.tar.gz",
Tony Aiutoe973aef2021-01-11 00:32:51 -0800129 ],
130 "patch_args": ["-p1"],
131 "patches": [
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700132 "//third_party/grpc:grpc_1.41.0.patch",
Tony Aiutoe973aef2021-01-11 00:32:51 -0800133 ],
134 "used_in": [
135 "additional_distfiles",
136 "test_WORKSPACE_files",
137 ],
138 },
139 "c-ares": {
140 "archive": "e982924acee7f7313b4baa4ee5ec000c5e373c30.tar.gz",
141 "sha256": "e8c2751ddc70fed9dc6f999acd92e232d5846f009ee1674f8aee81f19b2b915a",
142 "urls": [
143 "https://mirror.bazel.build/github.com/c-ares/c-ares/archive/e982924acee7f7313b4baa4ee5ec000c5e373c30.tar.gz",
144 "https://github.com/c-ares/c-ares/archive/e982924acee7f7313b4baa4ee5ec000c5e373c30.tar.gz",
145 ],
146 "used_in": [
147 "additional_distfiles",
148 "test_WORKSPACE_files",
149 ],
150 },
151 "re2": {
152 "archive": "aecba11114cf1fac5497aeb844b6966106de3eb6.tar.gz",
153 "sha256": "9f385e146410a8150b6f4cb1a57eab7ec806ced48d427554b1e754877ff26c3e",
154 "urls": [
155 "https://mirror.bazel.build/github.com/google/re2/archive/aecba11114cf1fac5497aeb844b6966106de3eb6.tar.gz",
156 "https://github.com/google/re2/archive/aecba11114cf1fac5497aeb844b6966106de3eb6.tar.gz",
157 ],
158 "used_in": [
159 "additional_distfiles",
160 "test_WORKSPACE_files",
161 ],
162 },
163 "abseil-cpp": {
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700164 "archive": "997aaf3a28308eba1b9156aa35ab7bca9688e9f6.tar.gz",
165 "sha256": "35f22ef5cb286f09954b7cc4c85b5a3f6221c9d4df6b8c4a1e9d399555b366ee",
Tony Aiutoe973aef2021-01-11 00:32:51 -0800166 "urls": [
Benjamin Petersonc01219e2021-10-25 02:29:55 -0700167 "https://mirror.bazel.build/github.com/abseil/abseil-cpp/archive/997aaf3a28308eba1b9156aa35ab7bca9688e9f6.tar.gz",
168 "https://github.com/abseil/abseil-cpp/archive/997aaf3a28308eba1b9156aa35ab7bca9688e9f6.tar.gz",
Tony Aiutoe973aef2021-01-11 00:32:51 -0800169 ],
170 "used_in": [
171 "additional_distfiles",
172 "test_WORKSPACE_files",
173 ],
174 },
Alessandro Patti6da80862021-11-11 22:49:37 -0800175 "zstd-jni": {
176 "archive": "v1.5.0-4.zip",
177 "patch_args": ["-p1"],
178 "patches": [
179 "//third_party:zstd-jni/Native.java.patch",
180 ],
181 "sha256": "d320d59b89a163c5efccbe4915ae6a49883ce653cdc670643dfa21c6063108e4",
182 "urls": [
183 "https://mirror.bazel.build/github.com/luben/zstd-jni/archive/v1.5.0-4.zip",
184 "https://github.com/luben/zstd-jni/archive/v1.5.0-4.zip",
185 ],
186 "used_in": [
187 "additional_distfiles",
188 ],
189 },
Tony Aiutoe973aef2021-01-11 00:32:51 -0800190 ###################################################
191 #
192 # Build time dependencies for testing and packaging
193 #
194 ###################################################
Tony Aiuto2b7ec5c2021-01-11 07:50:26 -0800195 "bazel_skylib": {
196 "archive": "bazel-skylib-1.0.3.tar.gz",
197 "sha256": "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c",
198 "urls": [
199 "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
200 "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
201 ],
202 "used_in": [
203 "additional_distfiles",
204 "test_WORKSPACE_files",
205 ],
206 },
207 "io_bazel_skydoc": {
208 "archive": "1ef781ced3b1443dca3ed05dec1989eca1a4e1cd.tar.gz",
209 "sha256": "5a725b777976b77aa122b707d1b6f0f39b6020f66cd427bb111a585599c857b1",
210 "urls": [
211 "https://mirror.bazel.build/github.com/bazelbuild/stardoc/archive/1ef781ced3b1443dca3ed05dec1989eca1a4e1cd.tar.gz",
212 "https://github.com/bazelbuild/stardoc/archive/1ef781ced3b1443dca3ed05dec1989eca1a4e1cd.tar.gz",
213 ],
214 "used_in": [
215 "additional_distfiles",
216 ],
217 "strip_prefix": "stardoc-1ef781ced3b1443dca3ed05dec1989eca1a4e1cd",
218 },
Tony Aiuto337e7172020-12-09 10:20:14 -0800219 "rules_pkg": {
Tony Aiuto99079b32021-04-06 06:41:17 -0700220 "archive": "rules_pkg-0.4.0.tar.gz",
221 "sha256": "038f1caa773a7e35b3663865ffb003169c6a71dc995e39bf4815792f385d837d",
Tony Aiuto337e7172020-12-09 10:20:14 -0800222 "urls": [
Tony Aiuto99079b32021-04-06 06:41:17 -0700223 "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.4.0/rules_pkg-0.4.0.tar.gz",
224 "https://github.com/bazelbuild/rules_pkg/releases/download/0.4.0/rules_pkg-0.4.0.tar.gz",
Tony Aiuto337e7172020-12-09 10:20:14 -0800225 ],
Tony Aiutoe973aef2021-01-11 00:32:51 -0800226 "used_in": [
227 "additional_distfiles",
228 ],
Tony Aiuto337e7172020-12-09 10:20:14 -0800229 },
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -0800230 # for Stardoc
231 "io_bazel_rules_sass": {
232 "archive": "1.25.0.zip",
233 "sha256": "c78be58f5e0a29a04686b628cf54faaee0094322ae0ac99da5a8a8afca59a647",
234 "strip_prefix": "rules_sass-1.25.0",
235 "urls": [
236 "https://mirror.bazel.build/github.com/bazelbuild/rules_sass/archive/1.25.0.zip",
237 "https://github.com/bazelbuild/rules_sass/archive/1.25.0.zip",
238 ],
Tony Aiutoe973aef2021-01-11 00:32:51 -0800239 "used_in": [
240 "additional_distfiles",
241 ],
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -0800242 },
243 # for Stardoc
244 "build_bazel_rules_nodejs": {
245 "archive": "rules_nodejs-2.2.2.tar.gz",
246 "sha256": "f2194102720e662dbf193546585d705e645314319554c6ce7e47d8b59f459e9c",
247 "urls": [
248 "https://mirror.bazel.build/github.com/bazelbuild/rules_nodejs/releases/download/2.2.2/rules_nodejs-2.2.2.tar.gz",
249 "https://github.com/bazelbuild/rules_nodejs/releases/download/2.2.2/rules_nodejs-2.2.2.tar.gz",
250 ],
Tony Aiutoe973aef2021-01-11 00:32:51 -0800251 "used_in": [
252 "additional_distfiles",
253 ],
Tony Aiuto1c9e7ca2021-01-05 08:01:21 -0800254 },
mennyf431b0c2021-01-13 09:18:29 -0800255 "desugar_jdk_libs": {
Menny Even Danan29cfb0b2021-03-31 15:21:30 -0700256 # Commit 5847d6a06302136d95a14b4cbd4b55a9c9f1436e of 2021-03-10
257 "archive": "5847d6a06302136d95a14b4cbd4b55a9c9f1436e.zip",
258 "sha256": "299452e6f4a4981b2e6d22357f7332713382a63e4c137f5fd6b89579f6d610cb",
259 "strip_prefix": "desugar_jdk_libs-5847d6a06302136d95a14b4cbd4b55a9c9f1436e",
mennyf431b0c2021-01-13 09:18:29 -0800260 "urls": [
Menny Even Danan29cfb0b2021-03-31 15:21:30 -0700261 "https://mirror.bazel.build/github.com/google/desugar_jdk_libs/archive/5847d6a06302136d95a14b4cbd4b55a9c9f1436e.zip",
262 "https://github.com/google/desugar_jdk_libs/archive/5847d6a06302136d95a14b4cbd4b55a9c9f1436e.zip",
mennyf431b0c2021-01-13 09:18:29 -0800263 ],
264 "used_in": [
265 "additional_distfiles",
266 ],
267 },
aiutobbeb1da2021-01-15 06:50:56 -0800268 "remote_coverage_tools": {
269 "archive": "coverage_output_generator-v2.5.zip",
270 "sha256": "cd14f1cb4559e4723e63b7e7b06d09fcc3bd7ba58d03f354cdff1439bd936a7d",
271 "urls": [
272 "https://mirror.bazel.build/bazel_coverage_output_generator/releases/coverage_output_generator-v2.5.zip",
273 ],
274 "used_in": [
275 "additional_distfiles",
276 "test_WORKSPACE_files",
277 ],
278 },
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800279 "remote_java_tools": {
John Cater2cff2ac2021-02-26 07:38:37 -0800280 "aliases": [
281 "remote_java_tools_test",
282 "remote_java_tools_for_testing",
283 ],
hvadehrad703b7b2021-11-18 12:24:25 -0800284 "archive": "java_tools-v11.6.zip",
285 "sha256": "a7ac5922ee01e8b8fcb546ffc264ef314d0a0c679328b7fa4c432e5f54a86067",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800286 "urls": [
hvadehrad703b7b2021-11-18 12:24:25 -0800287 "https://mirror.bazel.build/bazel_java_tools/releases/java/v11.6/java_tools-v11.6.zip",
288 "https://github.com/bazelbuild/java_tools/releases/download/java_v11.6/java_tools-v11.6.zip",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800289 ],
290 "used_in": [
291 "additional_distfiles",
292 "test_WORKSPACE_files",
293 ],
294 },
295 "remote_java_tools_linux": {
John Cater2cff2ac2021-02-26 07:38:37 -0800296 "aliases": [
297 "remote_java_tools_test_linux",
298 "remote_java_tools_linux_for_testing",
299 ],
hvadehrad703b7b2021-11-18 12:24:25 -0800300 "archive": "java_tools_linux-v11.6.zip",
301 "sha256": "15da4f84a7d39cd179acf3035d9def638eea6ba89a0ed8f4e8a8e6e1d6c8e328",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800302 "urls": [
hvadehrad703b7b2021-11-18 12:24:25 -0800303 "https://mirror.bazel.build/bazel_java_tools/releases/java/v11.6/java_tools_linux-v11.6.zip",
304 "https://github.com/bazelbuild/java_tools/releases/download/java_v11.6/java_tools_linux-v11.6.zip",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800305 ],
306 "used_in": [
307 "additional_distfiles",
308 "test_WORKSPACE_files",
309 ],
310 },
311 "remote_java_tools_windows": {
John Cater2cff2ac2021-02-26 07:38:37 -0800312 "aliases": [
313 "remote_java_tools_test_windows",
314 "remote_java_tools_windows_for_testing",
315 ],
hvadehrad703b7b2021-11-18 12:24:25 -0800316 "archive": "java_tools_windows-v11.6.zip",
317 "sha256": "939f9d91f0df02851bbad8f5b1d26d24011329394cafe5668c1234e31ac2a1f7",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800318 "urls": [
hvadehrad703b7b2021-11-18 12:24:25 -0800319 "https://mirror.bazel.build/bazel_java_tools/releases/java/v11.6/java_tools_windows-v11.6.zip",
320 "https://github.com/bazelbuild/java_tools/releases/download/java_v11.6/java_tools_windows-v11.6.zip",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800321 ],
322 "used_in": [
323 "additional_distfiles",
324 "test_WORKSPACE_files",
325 ],
326 },
327 "remote_java_tools_darwin": {
John Cater2cff2ac2021-02-26 07:38:37 -0800328 "aliases": [
329 "remote_java_tools_test_darwin",
330 "remote_java_tools_darwin_for_testing",
331 ],
hvadehrad703b7b2021-11-18 12:24:25 -0800332 "archive": "java_tools_darwin-v11.6.zip",
333 "sha256": "f17ee54582b61f1ebd84c8fa2c54df796914cfbaac3cb821fb1286b55b080bc0",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800334 "urls": [
hvadehrad703b7b2021-11-18 12:24:25 -0800335 "https://mirror.bazel.build/bazel_java_tools/releases/java/v11.6/java_tools_darwin-v11.6.zip",
336 "https://github.com/bazelbuild/java_tools/releases/download/java_v11.6/java_tools_darwin-v11.6.zip",
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800337 ],
338 "used_in": [
339 "additional_distfiles",
340 "test_WORKSPACE_files",
341 ],
342 },
Tony Aiuto337e7172020-12-09 10:20:14 -0800343}
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800344
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800345# Add aliased names
346DEPS_BY_NAME = {}
347
348def _create_index():
349 for repo_name in DIST_DEPS:
350 repo = DIST_DEPS[repo_name]
351 DEPS_BY_NAME[repo_name] = repo
352 aliases = repo.get("aliases")
353 if aliases:
354 for alias in aliases:
355 DEPS_BY_NAME[alias] = repo
356
357_create_index()
358
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800359def _gen_workspace_stanza_impl(ctx):
360 if ctx.attr.template and (ctx.attr.preamble or ctx.attr.postamble):
361 fail("Can not use template with either preamble or postamble")
362
Tony Aiutob15a8b42021-01-08 07:42:57 -0800363 if ctx.attr.use_maybe:
364 repo_clause = """
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800365maybe(
366 http_archive,
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800367 name = "{repo}",
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800368 sha256 = "{sha256}",
369 strip_prefix = {strip_prefix},
370 urls = {urls},
371)
372"""
Tony Aiutob15a8b42021-01-08 07:42:57 -0800373 else:
374 repo_clause = """
375http_archive(
376 name = "{repo}",
377 sha256 = "{sha256}",
378 strip_prefix = {strip_prefix},
379 urls = {urls},
380)
381"""
382
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800383 repo_stanzas = {}
384 for repo in ctx.attr.repos:
Tony Aiuto6a3d5f12021-01-12 13:38:32 -0800385 info = DEPS_BY_NAME[repo]
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800386 strip_prefix = info.get("strip_prefix")
387 if strip_prefix:
388 strip_prefix = "\"%s\"" % strip_prefix
389 else:
390 strip_prefix = "None"
391
392 repo_stanzas["{%s}" % repo] = repo_clause.format(
393 repo = repo,
394 archive = info["archive"],
395 sha256 = str(info["sha256"]),
396 strip_prefix = strip_prefix,
397 urls = info["urls"],
398 )
399
400 if ctx.attr.template:
401 ctx.actions.expand_template(
402 output = ctx.outputs.out,
403 template = ctx.file.template,
404 substitutions = repo_stanzas,
405 )
406 else:
407 content = "\n".join([p.strip() for p in ctx.attr.preamble.strip().split("\n")])
408 content += "\n"
409 content += "".join(repo_stanzas.values())
410 content += "\n"
411 content += "\n".join([p.strip() for p in ctx.attr.postamble.strip().split("\n")])
412 content += "\n"
413 ctx.actions.write(ctx.outputs.out, content)
414
415 return [DefaultInfo(files = depset([ctx.outputs.out]))]
416
417gen_workspace_stanza = rule(
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800418 attrs = {
twerth69a0d1a2021-08-12 07:03:10 -0700419 "repos": attr.string_list(doc = "Set of repos to include."),
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800420 "out": attr.output(mandatory = True),
421 "preamble": attr.string(doc = "Preamble."),
twerth69a0d1a2021-08-12 07:03:10 -0700422 "postamble": attr.string(doc = "Set of rules to follow repos."),
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800423 "template": attr.label(
twerth69a0d1a2021-08-12 07:03:10 -0700424 doc = "Template WORKSPACE file. May not be used with preamble or postamble." +
425 "Repo stanzas can be included using the syntax '{repo name}'.",
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800426 allow_single_file = True,
427 mandatory = False,
428 ),
twerth69a0d1a2021-08-12 07:03:10 -0700429 "use_maybe": attr.bool(doc = "Use maybe() invocation instead of http_archive."),
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800430 },
John Cater2cff2ac2021-02-26 07:38:37 -0800431 doc = "Use specifications from DIST_DEPS to generate WORKSPACE http_archive stanzas or to" +
432 "drop them into a template.",
433 implementation = _gen_workspace_stanza_impl,
Tony Aiuto3b2d3102021-01-07 03:40:14 -0800434)