Remove platforms repo, see #263
This commit is contained in:
parent
e7d0d2a5d7
commit
6dd1799084
|
@ -10,14 +10,6 @@ PROTOBUF_VERSION = "21.10" # When updating, also update protobuf-javascript, JS
|
||||||
GRPC_VERSION = "1.54.1" # When updating, also update grpc hash, grpc-java hash, Go repositories.bzl, Ruby requirements and C#/F# requirements
|
GRPC_VERSION = "1.54.1" # When updating, also update grpc hash, grpc-java hash, Go repositories.bzl, Ruby requirements and C#/F# requirements
|
||||||
BUF_VERSION = "v1.9.0"
|
BUF_VERSION = "v1.9.0"
|
||||||
VERSIONS = {
|
VERSIONS = {
|
||||||
"platforms": {
|
|
||||||
"type": "http",
|
|
||||||
"urls": [
|
|
||||||
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.6/platforms-0.0.6.tar.gz",
|
|
||||||
"https://github.com/bazelbuild/platforms/releases/download/0.0.6/platforms-0.0.6.tar.gz",
|
|
||||||
],
|
|
||||||
"sha256": "5308fc1d8865406a49427ba24a9ab53087f17f5266a7aabbfc28823f3916e1ca",
|
|
||||||
},
|
|
||||||
# Core
|
# Core
|
||||||
"rules_proto": {
|
"rules_proto": {
|
||||||
"type": "github",
|
"type": "github",
|
||||||
|
@ -473,7 +465,6 @@ def rules_proto_grpc_repos(**kwargs):
|
||||||
"""Load the rules_proto_grpc common dependencies.""" # buildifier: disable=function-docstring-args
|
"""Load the rules_proto_grpc common dependencies.""" # buildifier: disable=function-docstring-args
|
||||||
check_bazel_minimum_version(MINIMUM_BAZEL_VERSION)
|
check_bazel_minimum_version(MINIMUM_BAZEL_VERSION)
|
||||||
|
|
||||||
platforms(**kwargs)
|
|
||||||
rules_proto(**kwargs)
|
rules_proto(**kwargs)
|
||||||
rules_python(**kwargs)
|
rules_python(**kwargs)
|
||||||
build_bazel_rules_swift(**kwargs)
|
build_bazel_rules_swift(**kwargs)
|
||||||
|
@ -484,9 +475,6 @@ def rules_proto_grpc_repos(**kwargs):
|
||||||
com_github_grpc_grpc(**kwargs)
|
com_github_grpc_grpc(**kwargs)
|
||||||
external_zlib(**kwargs)
|
external_zlib(**kwargs)
|
||||||
|
|
||||||
def platforms(**kwargs):
|
|
||||||
_generic_dependency("platforms", **kwargs)
|
|
||||||
|
|
||||||
def rules_proto(**kwargs):
|
def rules_proto(**kwargs):
|
||||||
_generic_dependency("rules_proto", **kwargs)
|
_generic_dependency("rules_proto", **kwargs)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue