git: fa693a439b4d - main - devel/pecl-grpc: update to 1.68.0.

From: Vanilla I. Shu <vanilla_at_FreeBSD.org>
Date: Tue, 19 Nov 2024 23:55:35 UTC
The branch main has been updated by vanilla:

URL: https://cgit.FreeBSD.org/ports/commit/?id=fa693a439b4d3bb3d9c4f84b10de3e0141a9994c

commit fa693a439b4d3bb3d9c4f84b10de3e0141a9994c
Author:     Vanilla I. Shu <vanilla@FreeBSD.org>
AuthorDate: 2024-11-19 23:36:46 +0000
Commit:     Vanilla I. Shu <vanilla@FreeBSD.org>
CommitDate: 2024-11-19 23:55:28 +0000

    devel/pecl-grpc: update to 1.68.0.
---
 devel/pecl-grpc/Makefile                           |  2 +-
 devel/pecl-grpc/distinfo                           |  6 ++--
 .../patch-src_core_tsi_ssl__transport__security.cc | 10 -------
 ..._party_abseil-cpp_absl_base_internal_sysinfo.cc | 33 ----------------------
 4 files changed, 4 insertions(+), 47 deletions(-)

diff --git a/devel/pecl-grpc/Makefile b/devel/pecl-grpc/Makefile
index 957f6f74e3fc..060ca1f2911c 100644
--- a/devel/pecl-grpc/Makefile
+++ b/devel/pecl-grpc/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	grpc
-PORTVERSION=	1.67.0
+PORTVERSION=	1.68.0
 CATEGORIES=	devel net
 
 MAINTAINER=	vanilla@FreeBSD.org
diff --git a/devel/pecl-grpc/distinfo b/devel/pecl-grpc/distinfo
index c73e51e76c85..941594a35003 100644
--- a/devel/pecl-grpc/distinfo
+++ b/devel/pecl-grpc/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1729326316
-SHA256 (PECL/grpc-1.67.0.tgz) = d76939889eb635a033ddbdf003266b0d273f461962bd54f8b748ff1d62df126a
-SIZE (PECL/grpc-1.67.0.tgz) = 6423734
+TIMESTAMP = 1732058892
+SHA256 (PECL/grpc-1.68.0.tgz) = 4e022e052d5b7997efd42f3b67f1175dbbb772cfd435570852febc0f569065bb
+SIZE (PECL/grpc-1.68.0.tgz) = 6531175
diff --git a/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc b/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc
deleted file mode 100644
index 8221d90c5ea0..000000000000
--- a/devel/pecl-grpc/files/patch-src_core_tsi_ssl__transport__security.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/core/tsi/ssl_transport_security.cc.orig	2020-09-11 19:28:49 UTC
-+++ src/core/tsi/ssl_transport_security.cc
-@@ -20,6 +20,7 @@
- 
- #include "src/core/tsi/ssl_transport_security.h"
- 
-+#include <sys/socket.h>
- #include <limits.h>
- #include <string.h>
- 
diff --git a/devel/pecl-grpc/files/patch-third__party_abseil-cpp_absl_base_internal_sysinfo.cc b/devel/pecl-grpc/files/patch-third__party_abseil-cpp_absl_base_internal_sysinfo.cc
deleted file mode 100644
index 1c4921f8a4dd..000000000000
--- a/devel/pecl-grpc/files/patch-third__party_abseil-cpp_absl_base_internal_sysinfo.cc
+++ /dev/null
@@ -1,33 +0,0 @@
---- third_party/abseil-cpp/absl/base/internal/sysinfo.cc.orig	2023-09-07 04:54:32 UTC
-+++ third_party/abseil-cpp/absl/base/internal/sysinfo.cc
-@@ -34,6 +34,10 @@
- #include <sys/sysctl.h>
- #endif
- 
-+#ifdef __FreeBSD__
-+#include <pthread_np.h>
-+#endif
-+
- #if defined(__myriad2__)
- #include <rtems.h>
- #endif
-@@ -421,14 +425,18 @@ pid_t GetTID() {
-   return tid;
- }
- 
--#elif defined(__APPLE__)
-+#elif defined(__APPLE__) || defined(__FreeBSD__)
- 
- pid_t GetTID() {
-   uint64_t tid;
-   // `nullptr` here implies this thread.  This only fails if the specified
-   // thread is invalid or the pointer-to-tid is null, so we needn't worry about
-   // it.
-+#if __FreeBSD__
-+  tid = pthread_getthreadid_np();
-+#else
-   pthread_threadid_np(nullptr, &tid);
-+#endif
-   return static_cast<pid_t>(tid);
- }
-