|
| 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", |
0 commit comments