devel/py-grpcio-tools: update to 1.63.0.

This commit is contained in:
Vanilla I. Shu 2024-05-01 23:21:16 +08:00
parent 1d350c6bc3
commit a6b5984bb5
3 changed files with 16 additions and 15 deletions

View file

@ -1,8 +1,9 @@
PORTNAME= grpcio-tools PORTNAME= grpcio-tools
PORTVERSION= 1.62.2 PORTVERSION= 1.63.0
CATEGORIES= devel python CATEGORIES= devel python
MASTER_SITES= PYPI MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= grpcio_tools-${PORTVERSION}
MAINTAINER= vanilla@FreeBSD.org MAINTAINER= vanilla@FreeBSD.org
COMMENT= Protobuf code generator for gRPC COMMENT= Protobuf code generator for gRPC

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1713516977 TIMESTAMP = 1714576305
SHA256 (grpcio-tools-1.62.2.tar.gz) = 5fd5e1582b678e6b941ee5f5809340be5e0724691df5299aae8226640f94e18f SHA256 (grpcio_tools-1.63.0.tar.gz) = 2474cffbc8f29404f0e3a2109c0a0423211ba93fe048b144e734f601ff391fc7
SIZE (grpcio-tools-1.62.2.tar.gz) = 4538350 SIZE (grpcio_tools-1.63.0.tar.gz) = 5026765

View file

@ -1,15 +1,15 @@
--- setup.py.orig 2024-02-20 20:46:14 UTC --- setup.py.orig 2024-04-26 06:29:22 UTC
+++ setup.py +++ setup.py
@@ -145,7 +145,7 @@ if EXTRA_ENV_COMPILE_ARGS is None: @@ -178,7 +178,7 @@ if EXTRA_ENV_COMPILE_ARGS is None:
# We need to statically link the C++ Runtime, only the C runtime is # Reduce the optimization level from O3 (in many cases) to O1 to
# available dynamically # workaround gcc misalignment bug with MOVAPS (internal b/329134877)
EXTRA_ENV_COMPILE_ARGS += " /MT" EXTRA_ENV_COMPILE_ARGS += " -O1"
- elif "linux" in sys.platform or "darwin" in sys.platform: - elif "darwin" in sys.platform:
+ elif "linux" in sys.platform or "darwin" in sys.platform or "freebsd" in sys.platform: + elif "darwin" in sys.platform or "freebsd" in sys.platform:
# GCC & Clang by defaults uses C17 so only C++14 needs to be specified. # AppleClang by defaults uses C17 so only C++14 needs to be specified.
EXTRA_ENV_COMPILE_ARGS += " -std=c++14" EXTRA_ENV_COMPILE_ARGS += " -std=c++14"
EXTRA_ENV_COMPILE_ARGS += " -fno-wrapv -frtti" EXTRA_ENV_COMPILE_ARGS += " -fno-wrapv -frtti"
@@ -174,7 +174,7 @@ if EXTRA_ENV_LINK_ARGS is None: @@ -211,7 +211,7 @@ if EXTRA_ENV_LINK_ARGS is None:
EXTRA_ENV_LINK_ARGS += " -Wl,-exported_symbol,_{}".format( EXTRA_ENV_LINK_ARGS += " -Wl,-exported_symbol,_{}".format(
_EXT_INIT_SYMBOL _EXT_INIT_SYMBOL
) )
@ -18,7 +18,7 @@
EXTRA_ENV_LINK_ARGS += " -lpthread" EXTRA_ENV_LINK_ARGS += " -lpthread"
if check_linker_need_libatomic(): if check_linker_need_libatomic():
EXTRA_ENV_LINK_ARGS += " -latomic" EXTRA_ENV_LINK_ARGS += " -latomic"
@@ -211,7 +211,7 @@ if "win32" in sys.platform: @@ -248,7 +248,7 @@ if "win32" in sys.platform:
) )
if "64bit" in platform.architecture()[0]: if "64bit" in platform.architecture()[0]:
DEFINE_MACROS += (("MS_WIN64", 1),) DEFINE_MACROS += (("MS_WIN64", 1),)
@ -26,4 +26,4 @@
+elif "linux" in sys.platform or "darwin" in sys.platform or "freebsd" in sys.platform: +elif "linux" in sys.platform or "darwin" in sys.platform or "freebsd" in sys.platform:
DEFINE_MACROS += (("HAVE_PTHREAD", 1),) DEFINE_MACROS += (("HAVE_PTHREAD", 1),)
# By default, Python3 setuptools(distutils) enforces compatibility of