replace fix_grpconfig_cmake.patch by authentic version

OBS-URL: https://build.opensuse.org/package/show/devel:tools/grpc?expand=0&rev=157
This commit is contained in:
Jan Engelhardt 2023-09-13 11:25:58 +00:00 committed by Git OBS Bridge
parent 8b0dd2b1a2
commit 070343649e
2 changed files with 17 additions and 6 deletions

View File

@ -1,25 +1,27 @@
From 117dc80eb43021dd5619023ef6d02d0d6ec7ae7a Mon Sep 17 00:00:00 2001
From 5c9e4050c1e8c66b1b8b4e93d48b8e23ff1ea818 Mon Sep 17 00:00:00 2001
From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com>
Date: Wed, 7 Jun 2023 13:06:49 +0800
Subject: [PATCH] [Build] fix `gRPCConfig.cmake`
Date: Wed, 6 Sep 2023 03:35:47 +0800
Subject: [PATCH] [Build] fix `gRPCConfig.cmake` (#33361)
Without this change, calling `find_package(gRPC REQUIRED)` errors out
with
CMake Error at /opt/homebrew/lib/cmake/grpc/gRPCConfig.cmake:8 (find_dependency):
CMake Error at /opt/homebrew/lib/cmake/grpc/gRPCConfig.cmake:8
(find_dependency):
Unknown CMake command "find_dependency".
The issue is that `find_dependency` is provided by the
`CMakeFindDependencyMacro` module[^1], so we need to `include` it before
use.
[^1]: https://cmake.org/cmake/help/v3.26/module/CMakeFindDependencyMacro.html
[^1]:
https://cmake.org/cmake/help/v3.26/module/CMakeFindDependencyMacro.html
---
cmake/protobuf.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake/protobuf.cmake b/cmake/protobuf.cmake
index 80181c62186c..fab2eb00e964 100644
index 80181c6218..fab2eb00e9 100644
--- a/cmake/protobuf.cmake
+++ b/cmake/protobuf.cmake
@@ -86,6 +86,6 @@ elseif(gRPC_PROTOBUF_PROVIDER STREQUAL "package")
@ -30,3 +32,6 @@ index 80181c62186c..fab2eb00e964 100644
+ set(_gRPC_FIND_PROTOBUF "include(CMakeFindDependencyMacro)\nfind_dependency(Protobuf CONFIG)")
endif()
endif()
--
2.42.0

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Sep 13 10:49:31 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Add fix_grpconfig_cmake.patch to make find_package(gRPC) in
downstream using packages functional again.
-------------------------------------------------------------------
Wed Sep 6 16:02:40 UTC 2023 - Jan Engelhardt <jengelh@inai.de>