Skip to content

Commit f69e5a5

Browse files
committed
update googleapis SHA
1 parent b995e20 commit f69e5a5

File tree

4 files changed

+27
-17
lines changed

4 files changed

+27
-17
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ bazel_dep(name = "grpc", version = "1.71.0", repo_name = "com_github_grpc_grpc")
5555
bazel_dep(name = "googleapis", version = "0.0.0", repo_name = "com_google_googleapis")
5656
archive_override(
5757
module_name = "googleapis",
58-
integrity = "sha256-WpRQzxrRGHyCorXN/1Pk1YS21FKStfcbUECDrLA619A=",
58+
integrity = "sha256-KnunCHPK1T8u8SUxAAU122G6qmfxADIfA4ZU+fNWXjY=",
5959
patch_strip = 1,
6060
patches = ["//bazel:googleapis.modules.patch"],
61-
strip_prefix = "googleapis-280725e991516d4a0f136268faf5aa6d32d21b54",
61+
strip_prefix = "googleapis-53ca65d540dd1a7cb4746687daa87208dc9ea437",
6262
urls = [
63-
"https://github.com/googleapis/googleapis/archive/280725e991516d4a0f136268faf5aa6d32d21b54.tar.gz",
63+
"https://github.com/googleapis/googleapis/archive/53ca65d540dd1a7cb4746687daa87208dc9ea437.tar.gz",
6464
],
6565
)
6666

bazel/googleapis.modules.patch

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,33 @@
11
diff --git a/BUILD.bazel b/BUILD.bazel
2-
index 95e4c12e5..a901fd573 100644
2+
index 026553f5c7..f3c6b6925c 100644
33
--- a/BUILD.bazel
44
+++ b/BUILD.bazel
5-
@@ -1,8 +1,12 @@
5+
@@ -1,11 +1,13 @@
66
+package(default_visibility = ["//visibility:public"])
77
+
88
+licenses(["notice"]) # Apache 2.0
99
+
1010
genrule(
11-
name = "build_gen",
12-
outs = ["build_gen.sh"],
13-
executable = True,
14-
- srcs = glob(["run_build_gen.sh"]),
11+
- name = "build_gen",
12+
- srcs = glob(
13+
- ["run_build_gen.sh"],
14+
- allow_empty = True,
15+
- ),
16+
- outs = ["build_gen.sh"],
17+
- cmd = """
18+
+ name = "build_gen",
19+
+ outs = ["build_gen.sh"],
20+
+ executable = True,
1521
+ srcs = glob(["run_build_gen.sh"], allow_empty=True),
16-
cmd = """
22+
+ cmd = """
1723
if test -z \"$(SRCS)\"; then
1824
cat <<EOD > $@
19-
@@ -16,3 +20,16 @@ EOD
25+
#!/bin/sh
26+
@@ -17,5 +19,17 @@ EOD
27+
cp $(SRCS) $@
2028
fi
2129
""",
30+
- executable = True,
2231
)
2332
+
2433
+# This build file overlays on top of the BUILD files for the googleapis repo,

bazel/workspace0.bzl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ def gl_cpp_workspace0(name = None):
135135
http_archive,
136136
name = "com_google_googleapis",
137137
urls = [
138-
"https://github.com/googleapis/googleapis/archive/280725e991516d4a0f136268faf5aa6d32d21b54.tar.gz",
138+
"https://github.com/googleapis/googleapis/archive/53ca65d540dd1a7cb4746687daa87208dc9ea437.tar.gz",
139139
],
140-
sha256 = "5a9450cf1ad1187c82a2b5cdff53e4d584b6d45292b5f71b504083acb03ad7d0",
141-
strip_prefix = "googleapis-280725e991516d4a0f136268faf5aa6d32d21b54",
140+
sha256 = "2a7ba70873cad53f2ef12531000535db61baaa67f100321f038654f9f3565e36",
141+
strip_prefix = "googleapis-53ca65d540dd1a7cb4746687daa87208dc9ea437",
142142
build_file = Label("//bazel:googleapis.BUILD"),
143143
# Scaffolding for patching googleapis after download. For example:
144144
# patches = ["googleapis.patch"]
@@ -147,7 +147,8 @@ def gl_cpp_workspace0(name = None):
147147
# committed to the main branch.
148148
patch_tool = "patch",
149149
patch_args = ["-p1", "-l", "-n"],
150-
patches = ["//bazel:googleapis.workspace.patch"],
150+
patches = [],
151+
# patches = ["//bazel:googleapis.workspace.patch"],
151152
)
152153

153154
# Load protobuf.

cmake/GoogleapisConfig.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ set(GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
2727
mark_as_advanced(GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256)
2828

2929
set(_GOOGLE_CLOUD_CPP_GOOGLEAPIS_COMMIT_SHA
30-
"280725e991516d4a0f136268faf5aa6d32d21b54")
30+
"53ca65d540dd1a7cb4746687daa87208dc9ea437")
3131
set(_GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
32-
"5a9450cf1ad1187c82a2b5cdff53e4d584b6d45292b5f71b504083acb03ad7d0")
32+
"2a7ba70873cad53f2ef12531000535db61baaa67f100321f038654f9f3565e36")
3333

3434
set(DOXYGEN_ALIASES
3535
"googleapis_link{2}=\"[\\1](https://github.com/googleapis/googleapis/blob/${_GOOGLE_CLOUD_CPP_GOOGLEAPIS_COMMIT_SHA}/\\2)\""

0 commit comments

Comments
 (0)