pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/grpc
Module Name: pkgsrc
Committed By: wiz
Date: Sun Jan 18 10:43:48 UTC 2026
Modified Files:
pkgsrc/net/grpc: distinfo
Added Files:
pkgsrc/net/grpc/patches:
patch-include_grpc_event__engine_memory__request.h
patch-src_core_channelz_v2tov1_property__list.cc
patch-src_core_util_glob.cc
Log Message:
grpc: fix build
upstream already had the same fixes, add link to commit
To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 pkgsrc/net/grpc/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/net/grpc/patches/patch-include_grpc_event__engine_memory__request.h \
pkgsrc/net/grpc/patches/patch-src_core_channelz_v2tov1_property__list.cc \
pkgsrc/net/grpc/patches/patch-src_core_util_glob.cc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/grpc/distinfo
diff -u pkgsrc/net/grpc/distinfo:1.107 pkgsrc/net/grpc/distinfo:1.108
--- pkgsrc/net/grpc/distinfo:1.107 Mon Oct 27 07:28:02 2025
+++ pkgsrc/net/grpc/distinfo Sun Jan 18 10:43:48 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.107 2025/10/27 07:28:02 adam Exp $
+$NetBSD: distinfo,v 1.108 2026/01/18 10:43:48 wiz Exp $
BLAKE2s (grpc-1.76.0.tar.gz) = 047f86198a4ebc53be72bf91294e989d1c35696ed7abfb293d051fa990db1388
SHA512 (grpc-1.76.0.tar.gz) = 6338448d7c0fc78c38480f1fafd7605d031b600a702df3771a9d1b1236da7bf97a93dbdbc2d93d12d395411dc2f2ac57587ad1b697c4b2a5ac56fb8af1184501
@@ -7,5 +7,8 @@ BLAKE2s (opencensus-proto-0.3.0.tar.gz)
SHA512 (opencensus-proto-0.3.0.tar.gz) = 39231a495dfdccfc8267d1e6af2ac624feea611a8691c10ec570de2194b352e4a9c3b0ce1606414fb98e5d77c66873bed4a9e56512efa12b267b8a91e0c5851e
Size (opencensus-proto-0.3.0.tar.gz) = 163404 bytes
SHA1 (patch-CMakeLists.txt) = 039e65ed5258819379d7d293e83878880e9b82af
+SHA1 (patch-include_grpc_event__engine_memory__request.h) = 48029a1b28fe2e40846bc4433fc8936fe1e4c7c3
SHA1 (patch-include_grpc_event__engine_port.h) = ee0937d5ec59d2f0a462a64145fc63ef68564c17
+SHA1 (patch-src_core_channelz_v2tov1_property__list.cc) = 0608848d6f73aff8cba36dda738c38eb3a7c15eb
SHA1 (patch-src_core_lib_event__engine_cf__engine_cfstream__endpoint.h) = 916a46f3f9e338877a46ea21cd8c6fe5a00ad64e
+SHA1 (patch-src_core_util_glob.cc) = b71c4ae259f98a605710fca6dec3573aaef24f0b
Added files:
Index: pkgsrc/net/grpc/patches/patch-include_grpc_event__engine_memory__request.h
diff -u /dev/null pkgsrc/net/grpc/patches/patch-include_grpc_event__engine_memory__request.h:1.1
--- /dev/null Sun Jan 18 10:43:48 2026
+++ pkgsrc/net/grpc/patches/patch-include_grpc_event__engine_memory__request.h Sun Jan 18 10:43:48 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-include_grpc_event__engine_memory__request.h,v 1.1 2026/01/18 10:43:48 wiz Exp $
+
+error: 'to_string' is not a member of 'std'
+https://github.com/grpc/grpc/commit/d54219b508423f0a2ff6a0b98c16fb6dafd44b84
+
+--- include/grpc/event_engine/memory_request.h.orig 2026-01-18 10:15:33.124706419 +0000
++++ include/grpc/event_engine/memory_request.h
+@@ -16,6 +16,7 @@
+
+ #include <grpc/support/port_platform.h>
+ #include <stddef.h>
++#include <string>
+
+ #include "absl/strings/string_view.h"
+
Index: pkgsrc/net/grpc/patches/patch-src_core_channelz_v2tov1_property__list.cc
diff -u /dev/null pkgsrc/net/grpc/patches/patch-src_core_channelz_v2tov1_property__list.cc:1.1
--- /dev/null Sun Jan 18 10:43:48 2026
+++ pkgsrc/net/grpc/patches/patch-src_core_channelz_v2tov1_property__list.cc Sun Jan 18 10:43:48 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_core_channelz_v2tov1_property__list.cc,v 1.1 2026/01/18 10:43:48 wiz Exp $
+
+error: 'numeric_limits' is not a member of 'std'
+https://github.com/grpc/grpc/commit/d54219b508423f0a2ff6a0b98c16fb6dafd44b84
+
+--- src/core/channelz/v2tov1/property_list.cc.orig 2026-01-18 10:07:31.004738891 +0000
++++ src/core/channelz/v2tov1/property_list.cc
+@@ -15,6 +15,7 @@
+ #include "src/core/channelz/v2tov1/property_list.h"
+
+ #include <cstdint>
++#include <limits>
+ #include <optional>
+ #include <string>
+
Index: pkgsrc/net/grpc/patches/patch-src_core_util_glob.cc
diff -u /dev/null pkgsrc/net/grpc/patches/patch-src_core_util_glob.cc:1.1
--- /dev/null Sun Jan 18 10:43:48 2026
+++ pkgsrc/net/grpc/patches/patch-src_core_util_glob.cc Sun Jan 18 10:43:48 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_core_util_glob.cc,v 1.1 2026/01/18 10:43:48 wiz Exp $
+
+error: 'any_of' is not a member of 'std'
+https://github.com/grpc/grpc/commit/d54219b508423f0a2ff6a0b98c16fb6dafd44b84
+
+--- src/core/util/glob.cc.orig 2026-01-18 10:34:03.246212449 +0000
++++ src/core/util/glob.cc
+@@ -13,6 +13,7 @@
+ // limitations under the License.
+
+ #include "absl/strings/string_view.h"
++#include <algorithm>
+
+ namespace grpc_core {
+
Home |
Main Index |
Thread Index |
Old Index