mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 17:22:57 +03:00
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
"""
|
|
A repository rule that creates a repo exporting the list of all Cargo manifests
|
|
(excluding the top-level one) as MANIFESTS
|
|
"""
|
|
|
|
def _impl(repository_ctx):
|
|
# Assume a Cargo.toml in the root
|
|
contents = repository_ctx.read(repository_ctx.attr.manifest)
|
|
|
|
repository_ctx.report_progress("Fetching manifests")
|
|
|
|
# Read the Cargo.toml's `members`; does this by reading
|
|
# all lines between 'members = [' and the closing ']'
|
|
[_, contents] = contents.split("members = [\n")
|
|
[contents, _] = contents.split("]", 1)
|
|
packages = contents.splitlines()
|
|
|
|
# turn the manifest path into a Bazel label
|
|
def package_to_label(package):
|
|
[_, rest] = package.split("\"", 1)
|
|
[rest, _] = rest.split("\"", 1)
|
|
return "\"//" + rest + ":Cargo.toml\","
|
|
|
|
labels = [package_to_label(p) for p in packages]
|
|
manifests = "".join(labels)
|
|
repository_ctx.file("BUILD.bazel", content = "\n", executable = False)
|
|
repository_ctx.file("defs.bzl", "MANIFESTS = [ {manifests} ]\n".format(manifests = manifests), executable = False)
|
|
|
|
_manifests = repository_rule(
|
|
implementation = _impl,
|
|
attrs = {
|
|
"manifest": attr.label(mandatory = True),
|
|
},
|
|
)
|
|
|
|
def manifests_repository(name, manifest):
|
|
_manifests(name = name, manifest = manifest)
|