Skip to content

Commit c540993

Browse files
authoredJun 17, 2024··
bazel: Upgrade and fix import issues with envoy_api
Bazel was not updated as part of feab4e5. Also, `(( X++ ))` exits 1 if X is zero. The patch to data-plane-api was upstreamed in envoyproxy/envoy#34759
1 parent 889893d commit c540993

File tree

4 files changed

+58
-5
lines changed

4 files changed

+58
-5
lines changed
 

‎MODULE.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [
4545
]
4646
# GRPC_DEPS_END
4747

48+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
4849
bazel_dep(name = "googleapis", repo_name = "com_google_googleapis", version = "0.0.0-20240326-1c8d509c5")
4950
bazel_dep(name = "grpc", repo_name = "com_github_grpc_grpc", version = "1.56.3.bcr.1")
5051
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf", version = "23.1")
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
From 786c93ccaae9891338f098a5aba60e9987d78bd3 Mon Sep 17 00:00:00 2001
2+
From: "update-envoy[bot]"
3+
<135279899+update-envoy[bot]@users.noreply.github.com>
4+
Date: Mon, 17 Jun 2024 02:25:24 +0000
5+
Subject: [PATCH] bazel: `@envoy_api` should not depend on `@envoy` (#34759)
6+
7+
The extra dependency was introduced in 65273b2a9b. pgv.patch is only
8+
used by envoy_api, so just moving the file avoids the dependency.
9+
10+
Signed-off-by: Eric Anderson <ejona@google.com>
11+
12+
Mirrored from https://github.com/envoyproxy/envoy @ 9fde867399cc7fcf97815995f8466f62172b26f6
13+
---
14+
bazel/pgv.patch | 13 +++++++++++++
15+
bazel/repositories.bzl | 2 +-
16+
2 files changed, 14 insertions(+), 1 deletion(-)
17+
create mode 100644 bazel/pgv.patch
18+
19+
diff --git a/bazel/pgv.patch b/bazel/pgv.patch
20+
new file mode 100644
21+
index 000000000..81e25abfe
22+
--- /dev/null
23+
+++ b/bazel/pgv.patch
24+
@@ -0,0 +1,13 @@
25+
+--- a/templates/cc/register.go 2023-06-22 14:25:05.776175085 +0000
26+
++++ b/templates/cc/register.go 2023-06-22 14:26:33.008090583 +0000
27+
+@@ -116,6 +116,10 @@
28+
+ func (fns CCFuncs) methodName(name interface{}) string {
29+
+ nameStr := fmt.Sprintf("%s", name)
30+
+ switch nameStr {
31+
++ case "concept":
32+
++ return "concept_"
33+
++ case "requires":
34+
++ return "requires_"
35+
+ case "const":
36+
+ return "const_"
37+
+ case "inline":
38+
diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl
39+
index 3e24566a9..7813b0abd 100644
40+
--- a/bazel/repositories.bzl
41+
+++ b/bazel/repositories.bzl
42+
@@ -19,7 +19,7 @@ def api_dependencies():
43+
external_http_archive(
44+
name = "com_envoyproxy_protoc_gen_validate",
45+
patch_args = ["-p1"],
46+
- patches = ["@envoy//bazel:pgv.patch"],
47+
+ patches = ["@envoy_api//bazel:pgv.patch"],
48+
)
49+
external_http_archive(
50+
name = "com_google_googleapis",

‎repositories.bzl

+6-4
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,14 @@ def grpc_java_repositories(bzlmod = False):
142142
if not native.existing_rule("envoy_api"):
143143
http_archive(
144144
name = "envoy_api",
145-
sha256 = "fff067a5d6d776fc88549b5dd4773a6f8f0187b26a859de8b29bd4226a28ee63",
146-
strip_prefix = "data-plane-api-9d6ffa70677c4dbf23f6ed569676206c4e2edff4",
145+
sha256 = "c4c9c43903e413924b0cb08e9747f3c3a0727ad221a3c446a326db32def18c60",
146+
strip_prefix = "data-plane-api-1611a7304794e13efe2d26f8480a2d2473a528c5",
147147
urls = [
148-
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/envoyproxy/data-plane-api/archive/9d6ffa70677c4dbf23f6ed569676206c4e2edff4.tar.gz",
149-
"https://github.com/envoyproxy/data-plane-api/archive/9d6ffa70677c4dbf23f6ed569676206c4e2edff4.tar.gz",
148+
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/envoyproxy/data-plane-api/archive/1611a7304794e13efe2d26f8480a2d2473a528c5.tar.gz",
149+
"https://github.com/envoyproxy/data-plane-api/archive/1611a7304794e13efe2d26f8480a2d2473a528c5.tar.gz",
150150
],
151+
patch_args = ["-p1"],
152+
patches = ["@io_grpc_grpc_java//:buildscripts/data-plane-api-no-envoy.patch"],
151153
)
152154

153155
def com_google_protobuf():

‎xds/third_party/envoy/import.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ COPIED=0
137137
for file in "${FILES[@]}"
138138
do
139139
mkdir -p "$(dirname "${file}")"
140-
cp -p "${tmpdir}/${SOURCE_PROTO_BASE_DIR}/${file}" "${file}" && (( COPIED++ ))
140+
cp -p "${tmpdir}/${SOURCE_PROTO_BASE_DIR}/${file}" "${file}" && (( ++COPIED ))
141141
done
142142
popd > /dev/null
143143

0 commit comments

Comments
 (0)
Please sign in to comment.