Wed Nov 6 17:14:24 2019 UTC ()
grpc: updated to 1.25.0

Release v1.25.0

Core
Change RR to consider a subchannel in TF if it has failed since it was READY.
Fix a use after free in c-ares on Windows.

C++
Honor CARES_ROOT_DIR.
Make cmake grpc.pc depend on openssl too.
Create pkg-config files from CMake.
Add C++ wrapper for SPIFFE credentials v2.
Upgrade bazel to 0.29.1.

Python
Add experimental option to run unary-stream RPCs on a single Python thread.
[AIO] Minimal AsyncIO Server.
Switch to concrete classes in experimental asyncio.
Add manylinux2010_x86 wheels into artifacts.
Release 3.8 binary wheels.
Make grpc_testing's Servicer context abort method stop execution of the servicer handler.
Build Python wheels with tag manylinux2010.
Add experimental support for asyncio unary client.


(adam)
diff -r1.16 -r1.17 pkgsrc/net/grpc/Makefile
diff -r1.11 -r1.12 pkgsrc/net/grpc/PLIST
diff -r1.17 -r1.18 pkgsrc/net/grpc/distinfo
diff -r1.10 -r1.11 pkgsrc/net/py-grpcio/Makefile
diff -r1.3 -r1.4 pkgsrc/net/py-grpcio/PLIST
diff -r1.12 -r1.13 pkgsrc/net/py-grpcio/distinfo
diff -r1.8 -r1.9 pkgsrc/net/py-grpcio-tools/Makefile
diff -r1.8 -r1.9 pkgsrc/net/py-grpcio-tools/distinfo

cvs diff -r1.16 -r1.17 pkgsrc/net/grpc/Makefile (expand / switch to unified diff)

--- pkgsrc/net/grpc/Makefile 2019/10/24 18:24:27 1.16
+++ pkgsrc/net/grpc/Makefile 2019/11/06 17:14:24 1.17
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.16 2019/10/24 18:24:27 adam Exp $ 1# $NetBSD: Makefile,v 1.17 2019/11/06 17:14:24 adam Exp $
2 2
3DISTNAME= grpc-1.24.3 3DISTNAME= grpc-1.25.0
4CATEGORIES= net 4CATEGORIES= net
5MASTER_SITES= ${MASTER_SITE_GITHUB:=grpc/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=grpc/}
6GITHUB_TAG= v${PKGVERSION_NOREV} 6GITHUB_TAG= v${PKGVERSION_NOREV}
7 7
8MAINTAINER= minskim@NetBSD.org 8MAINTAINER= minskim@NetBSD.org
9HOMEPAGE= https://grpc.io/ 9HOMEPAGE= https://grpc.io/
10COMMENT= High performance, open-source universal RPC framework 10COMMENT= High performance, open-source universal RPC framework
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13USE_CMAKE= yes 13USE_CMAKE= yes
14USE_LANGUAGES+= c c++11 14USE_LANGUAGES+= c c++11
15USE_TOOLS+= pkg-config 15USE_TOOLS+= pkg-config
16 16

cvs diff -r1.11 -r1.12 pkgsrc/net/grpc/PLIST (expand / switch to unified diff)

--- pkgsrc/net/grpc/PLIST 2019/10/24 18:24:27 1.11
+++ pkgsrc/net/grpc/PLIST 2019/11/06 17:14:24 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.11 2019/10/24 18:24:27 adam Exp $ 1@comment $NetBSD: PLIST,v 1.12 2019/11/06 17:14:24 adam Exp $
2bin/grpc_cpp_plugin 2bin/grpc_cpp_plugin
3bin/grpc_csharp_plugin 3bin/grpc_csharp_plugin
4bin/grpc_node_plugin 4bin/grpc_node_plugin
5bin/grpc_objective_c_plugin 5bin/grpc_objective_c_plugin
6bin/grpc_php_plugin 6bin/grpc_php_plugin
7bin/grpc_python_plugin 7bin/grpc_python_plugin
8bin/grpc_ruby_plugin 8bin/grpc_ruby_plugin
9include/grpc++/alarm.h 9include/grpc++/alarm.h
10include/grpc++/channel.h 10include/grpc++/channel.h
11include/grpc++/client_context.h 11include/grpc++/client_context.h
12include/grpc++/completion_queue.h 12include/grpc++/completion_queue.h
13include/grpc++/create_channel.h 13include/grpc++/create_channel.h
14include/grpc++/create_channel_posix.h 14include/grpc++/create_channel_posix.h
@@ -187,26 +187,27 @@ include/grpcpp/impl/codegen/completion_q @@ -187,26 +187,27 @@ include/grpcpp/impl/codegen/completion_q
187include/grpcpp/impl/codegen/completion_queue_tag.h 187include/grpcpp/impl/codegen/completion_queue_tag.h
188include/grpcpp/impl/codegen/config.h 188include/grpcpp/impl/codegen/config.h
189include/grpcpp/impl/codegen/config_protobuf.h 189include/grpcpp/impl/codegen/config_protobuf.h
190include/grpcpp/impl/codegen/core_codegen.h 190include/grpcpp/impl/codegen/core_codegen.h
191include/grpcpp/impl/codegen/core_codegen_interface.h 191include/grpcpp/impl/codegen/core_codegen_interface.h
192include/grpcpp/impl/codegen/create_auth_context.h 192include/grpcpp/impl/codegen/create_auth_context.h
193include/grpcpp/impl/codegen/delegating_channel.h 193include/grpcpp/impl/codegen/delegating_channel.h
194include/grpcpp/impl/codegen/grpc_library.h 194include/grpcpp/impl/codegen/grpc_library.h
195include/grpcpp/impl/codegen/intercepted_channel.h 195include/grpcpp/impl/codegen/intercepted_channel.h
196include/grpcpp/impl/codegen/interceptor.h 196include/grpcpp/impl/codegen/interceptor.h
197include/grpcpp/impl/codegen/interceptor_common.h 197include/grpcpp/impl/codegen/interceptor_common.h
198include/grpcpp/impl/codegen/message_allocator.h 198include/grpcpp/impl/codegen/message_allocator.h
199include/grpcpp/impl/codegen/metadata_map.h 199include/grpcpp/impl/codegen/metadata_map.h
 200include/grpcpp/impl/codegen/method_handler.h
200include/grpcpp/impl/codegen/method_handler_impl.h 201include/grpcpp/impl/codegen/method_handler_impl.h
201include/grpcpp/impl/codegen/proto_buffer_reader.h 202include/grpcpp/impl/codegen/proto_buffer_reader.h
202include/grpcpp/impl/codegen/proto_buffer_writer.h 203include/grpcpp/impl/codegen/proto_buffer_writer.h
203include/grpcpp/impl/codegen/proto_utils.h 204include/grpcpp/impl/codegen/proto_utils.h
204include/grpcpp/impl/codegen/rpc_method.h 205include/grpcpp/impl/codegen/rpc_method.h
205include/grpcpp/impl/codegen/rpc_service_method.h 206include/grpcpp/impl/codegen/rpc_service_method.h
206include/grpcpp/impl/codegen/security/auth_context.h 207include/grpcpp/impl/codegen/security/auth_context.h
207include/grpcpp/impl/codegen/serialization_traits.h 208include/grpcpp/impl/codegen/serialization_traits.h
208include/grpcpp/impl/codegen/server_callback.h 209include/grpcpp/impl/codegen/server_callback.h
209include/grpcpp/impl/codegen/server_callback_impl.h 210include/grpcpp/impl/codegen/server_callback_impl.h
210include/grpcpp/impl/codegen/server_context.h 211include/grpcpp/impl/codegen/server_context.h
211include/grpcpp/impl/codegen/server_context_impl.h 212include/grpcpp/impl/codegen/server_context_impl.h
212include/grpcpp/impl/codegen/server_interceptor.h 213include/grpcpp/impl/codegen/server_interceptor.h
@@ -231,26 +232,27 @@ include/grpcpp/impl/server_builder_optio @@ -231,26 +232,27 @@ include/grpcpp/impl/server_builder_optio
231include/grpcpp/impl/server_builder_plugin.h 232include/grpcpp/impl/server_builder_plugin.h
232include/grpcpp/impl/server_initializer.h 233include/grpcpp/impl/server_initializer.h
233include/grpcpp/impl/server_initializer_impl.h 234include/grpcpp/impl/server_initializer_impl.h
234include/grpcpp/impl/service_type.h 235include/grpcpp/impl/service_type.h
235include/grpcpp/resource_quota.h 236include/grpcpp/resource_quota.h
236include/grpcpp/resource_quota_impl.h 237include/grpcpp/resource_quota_impl.h
237include/grpcpp/security/auth_context.h 238include/grpcpp/security/auth_context.h
238include/grpcpp/security/auth_metadata_processor.h 239include/grpcpp/security/auth_metadata_processor.h
239include/grpcpp/security/auth_metadata_processor_impl.h 240include/grpcpp/security/auth_metadata_processor_impl.h
240include/grpcpp/security/credentials.h 241include/grpcpp/security/credentials.h
241include/grpcpp/security/credentials_impl.h 242include/grpcpp/security/credentials_impl.h
242include/grpcpp/security/server_credentials.h 243include/grpcpp/security/server_credentials.h
243include/grpcpp/security/server_credentials_impl.h 244include/grpcpp/security/server_credentials_impl.h
 245include/grpcpp/security/tls_credentials_options.h
244include/grpcpp/server.h 246include/grpcpp/server.h
245include/grpcpp/server_builder.h 247include/grpcpp/server_builder.h
246include/grpcpp/server_builder_impl.h 248include/grpcpp/server_builder_impl.h
247include/grpcpp/server_context.h 249include/grpcpp/server_context.h
248include/grpcpp/server_impl.h 250include/grpcpp/server_impl.h
249include/grpcpp/server_posix.h 251include/grpcpp/server_posix.h
250include/grpcpp/server_posix_impl.h 252include/grpcpp/server_posix_impl.h
251include/grpcpp/support/async_stream.h 253include/grpcpp/support/async_stream.h
252include/grpcpp/support/async_stream_impl.h 254include/grpcpp/support/async_stream_impl.h
253include/grpcpp/support/async_unary_call.h 255include/grpcpp/support/async_unary_call.h
254include/grpcpp/support/async_unary_call_impl.h 256include/grpcpp/support/async_unary_call_impl.h
255include/grpcpp/support/byte_buffer.h 257include/grpcpp/support/byte_buffer.h
256include/grpcpp/support/channel_arguments.h 258include/grpcpp/support/channel_arguments.h
@@ -307,14 +309,19 @@ lib/libgrpc_cronet.so.${PKGVERSION} @@ -307,14 +309,19 @@ lib/libgrpc_cronet.so.${PKGVERSION}
307lib/libgrpc_cronet.so.1 309lib/libgrpc_cronet.so.1
308lib/libgrpc_csharp_ext.so 310lib/libgrpc_csharp_ext.so
309lib/libgrpc_csharp_ext.so.${PKGVERSION} 311lib/libgrpc_csharp_ext.so.${PKGVERSION}
310lib/libgrpc_csharp_ext.so.1 312lib/libgrpc_csharp_ext.so.1
311lib/libgrpc_plugin_support.so 313lib/libgrpc_plugin_support.so
312lib/libgrpc_plugin_support.so.${PKGVERSION} 314lib/libgrpc_plugin_support.so.${PKGVERSION}
313lib/libgrpc_plugin_support.so.1 315lib/libgrpc_plugin_support.so.1
314lib/libgrpc_unsecure.so 316lib/libgrpc_unsecure.so
315lib/libgrpc_unsecure.so.${PKGVERSION} 317lib/libgrpc_unsecure.so.${PKGVERSION}
316lib/libgrpc_unsecure.so.1 318lib/libgrpc_unsecure.so.1
317lib/libgrpcpp_channelz.so 319lib/libgrpcpp_channelz.so
318lib/libgrpcpp_channelz.so.${PKGVERSION} 320lib/libgrpcpp_channelz.so.${PKGVERSION}
319lib/libgrpcpp_channelz.so.1 321lib/libgrpcpp_channelz.so.1
 322lib/pkgconfig/gpr.pc
 323lib/pkgconfig/grpc++.pc
 324lib/pkgconfig/grpc++_unsecure.pc
 325lib/pkgconfig/grpc.pc
 326lib/pkgconfig/grpc_unsecure.pc
320share/grpc/roots.pem 327share/grpc/roots.pem

cvs diff -r1.17 -r1.18 pkgsrc/net/grpc/distinfo (expand / switch to unified diff)

--- pkgsrc/net/grpc/distinfo 2019/10/24 18:24:27 1.17
+++ pkgsrc/net/grpc/distinfo 2019/11/06 17:14:24 1.18
@@ -1,11 +1,11 @@ @@ -1,11 +1,11 @@
1$NetBSD: distinfo,v 1.17 2019/10/24 18:24:27 adam Exp $ 1$NetBSD: distinfo,v 1.18 2019/11/06 17:14:24 adam Exp $
2 2
3SHA1 (grpc-1.24.3.tar.gz) = ba383648d47701ce491b60698b21433110c9d7eb 3SHA1 (grpc-1.25.0.tar.gz) = f44584031c3f4a1b4353766e4173e23c3b0bf1ce
4RMD160 (grpc-1.24.3.tar.gz) = d21b425e20c49390ced9a0d7ec21cb73ef3da54d 4RMD160 (grpc-1.25.0.tar.gz) = 8ad86ac690283830ffde6c5bc4b2a31ecbd5ede4
5SHA512 (grpc-1.24.3.tar.gz) = 19afa8b1fd64c429317c85d8cf42d01af0ac6aec82508740c176e1fd4f92dea9531ea9812523215ed67466bae93a75e14dc34cd9cce5987a13c0104e0313c69c 5SHA512 (grpc-1.25.0.tar.gz) = 7d9e126eafdfefe9b5c2eacf9c082b972115f231a55cff53386305f2df68037e2593eedc3f27fe0eaeb7fbe78b28f6b87607cdeccf59929b9a9b33bf74ab5c92
6Size (grpc-1.24.3.tar.gz) = 15364420 bytes 6Size (grpc-1.25.0.tar.gz) = 16460163 bytes
7SHA1 (patch-CMakeLists.txt) = 0b046300aac3ffb48eca4a8943e5877b6a3a8c55 7SHA1 (patch-CMakeLists.txt) = 0b046300aac3ffb48eca4a8943e5877b6a3a8c55
8SHA1 (patch-cmake_benchmark.cmake) = 031873ba9a8cd93d491693feb4d58e52a715cc64 8SHA1 (patch-cmake_benchmark.cmake) = 031873ba9a8cd93d491693feb4d58e52a715cc64
9SHA1 (patch-include_grpc_impl_codegen_port__platform.h) = b8d07e5bbf04694df00d0d19884844b791eb002c 9SHA1 (patch-include_grpc_impl_codegen_port__platform.h) = b8d07e5bbf04694df00d0d19884844b791eb002c
10SHA1 (patch-src_core_ext_filters_client__channel_resolver_dns_c__ares_grpc__ares__ev__driver__posix.cc) = aff0ff2ff52753c3a169d1f7b939b894dda013f9 10SHA1 (patch-src_core_ext_filters_client__channel_resolver_dns_c__ares_grpc__ares__ev__driver__posix.cc) = aff0ff2ff52753c3a169d1f7b939b894dda013f9
11SHA1 (patch-src_core_lib_iomgr_port.h) = e3c5e6ee071557c717df0a1a61597f9906fbeff5 11SHA1 (patch-src_core_lib_iomgr_port.h) = e3c5e6ee071557c717df0a1a61597f9906fbeff5

cvs diff -r1.10 -r1.11 pkgsrc/net/py-grpcio/Makefile (expand / switch to unified diff)

--- pkgsrc/net/py-grpcio/Makefile 2019/10/24 18:34:17 1.10
+++ pkgsrc/net/py-grpcio/Makefile 2019/11/06 17:14:24 1.11
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.10 2019/10/24 18:34:17 adam Exp $ 1# $NetBSD: Makefile,v 1.11 2019/11/06 17:14:24 adam Exp $
2 2
3DISTNAME= grpcio-1.24.3 3DISTNAME= grpcio-1.25.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= net python 5CATEGORIES= net python
6MASTER_SITES= ${MASTER_SITE_PYPI:=g/grpcio/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=g/grpcio/}
7 7
8MAINTAINER= kethzer.dr@gmail.com 8MAINTAINER= kethzer.dr@gmail.com
9HOMEPAGE= https://grpc.io/ 9HOMEPAGE= https://grpc.io/
10COMMENT= HTTP/2-based RPC framework 10COMMENT= HTTP/2-based RPC framework
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13DEPENDS+= ${PYPKGPREFIX}-protobuf>=3.5.0:../../devel/py-protobuf 13DEPENDS+= ${PYPKGPREFIX}-protobuf>=3.5.0:../../devel/py-protobuf
14DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six 14DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six
15 15
16.include "../../lang/python/pyversion.mk" 16.include "../../lang/python/pyversion.mk"

cvs diff -r1.3 -r1.4 pkgsrc/net/py-grpcio/PLIST (expand / switch to unified diff)

--- pkgsrc/net/py-grpcio/PLIST 2019/05/26 19:50:12 1.3
+++ pkgsrc/net/py-grpcio/PLIST 2019/11/06 17:14:24 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.3 2019/05/26 19:50:12 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2019/11/06 17:14:24 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/requires.txt 5${PYSITELIB}/${EGG_INFODIR}/requires.txt
6${PYSITELIB}/${EGG_INFODIR}/top_level.txt 6${PYSITELIB}/${EGG_INFODIR}/top_level.txt
7${PYSITELIB}/grpc/__init__.py 7${PYSITELIB}/grpc/__init__.py
8${PYSITELIB}/grpc/__init__.pyc 8${PYSITELIB}/grpc/__init__.pyc
9${PYSITELIB}/grpc/__init__.pyo 9${PYSITELIB}/grpc/__init__.pyo
10${PYSITELIB}/grpc/_auth.py 10${PYSITELIB}/grpc/_auth.py
11${PYSITELIB}/grpc/_auth.pyc 11${PYSITELIB}/grpc/_auth.pyc
12${PYSITELIB}/grpc/_auth.pyo 12${PYSITELIB}/grpc/_auth.pyo
13${PYSITELIB}/grpc/_channel.py 13${PYSITELIB}/grpc/_channel.py
14${PYSITELIB}/grpc/_channel.pyc 14${PYSITELIB}/grpc/_channel.pyc
@@ -56,26 +56,35 @@ ${PYSITELIB}/grpc/beta/_server_adaptatio @@ -56,26 +56,35 @@ ${PYSITELIB}/grpc/beta/_server_adaptatio
56${PYSITELIB}/grpc/beta/_server_adaptations.pyo 56${PYSITELIB}/grpc/beta/_server_adaptations.pyo
57${PYSITELIB}/grpc/beta/implementations.py 57${PYSITELIB}/grpc/beta/implementations.py
58${PYSITELIB}/grpc/beta/implementations.pyc 58${PYSITELIB}/grpc/beta/implementations.pyc
59${PYSITELIB}/grpc/beta/implementations.pyo 59${PYSITELIB}/grpc/beta/implementations.pyo
60${PYSITELIB}/grpc/beta/interfaces.py 60${PYSITELIB}/grpc/beta/interfaces.py
61${PYSITELIB}/grpc/beta/interfaces.pyc 61${PYSITELIB}/grpc/beta/interfaces.pyc
62${PYSITELIB}/grpc/beta/interfaces.pyo 62${PYSITELIB}/grpc/beta/interfaces.pyo
63${PYSITELIB}/grpc/beta/utilities.py 63${PYSITELIB}/grpc/beta/utilities.py
64${PYSITELIB}/grpc/beta/utilities.pyc 64${PYSITELIB}/grpc/beta/utilities.pyc
65${PYSITELIB}/grpc/beta/utilities.pyo 65${PYSITELIB}/grpc/beta/utilities.pyo
66${PYSITELIB}/grpc/experimental/__init__.py 66${PYSITELIB}/grpc/experimental/__init__.py
67${PYSITELIB}/grpc/experimental/__init__.pyc 67${PYSITELIB}/grpc/experimental/__init__.pyc
68${PYSITELIB}/grpc/experimental/__init__.pyo 68${PYSITELIB}/grpc/experimental/__init__.pyo
 69${PYSITELIB}/grpc/experimental/aio/__init__.py
 70${PYSITELIB}/grpc/experimental/aio/__init__.pyc
 71${PYSITELIB}/grpc/experimental/aio/__init__.pyo
 72${PYSITELIB}/grpc/experimental/aio/_channel.py
 73${PYSITELIB}/grpc/experimental/aio/_channel.pyc
 74${PYSITELIB}/grpc/experimental/aio/_channel.pyo
 75${PYSITELIB}/grpc/experimental/aio/_server.py
 76${PYSITELIB}/grpc/experimental/aio/_server.pyc
 77${PYSITELIB}/grpc/experimental/aio/_server.pyo
69${PYSITELIB}/grpc/experimental/gevent.py 78${PYSITELIB}/grpc/experimental/gevent.py
70${PYSITELIB}/grpc/experimental/gevent.pyc 79${PYSITELIB}/grpc/experimental/gevent.pyc
71${PYSITELIB}/grpc/experimental/gevent.pyo 80${PYSITELIB}/grpc/experimental/gevent.pyo
72${PYSITELIB}/grpc/experimental/session_cache.py 81${PYSITELIB}/grpc/experimental/session_cache.py
73${PYSITELIB}/grpc/experimental/session_cache.pyc 82${PYSITELIB}/grpc/experimental/session_cache.pyc
74${PYSITELIB}/grpc/experimental/session_cache.pyo 83${PYSITELIB}/grpc/experimental/session_cache.pyo
75${PYSITELIB}/grpc/framework/__init__.py 84${PYSITELIB}/grpc/framework/__init__.py
76${PYSITELIB}/grpc/framework/__init__.pyc 85${PYSITELIB}/grpc/framework/__init__.pyc
77${PYSITELIB}/grpc/framework/__init__.pyo 86${PYSITELIB}/grpc/framework/__init__.pyo
78${PYSITELIB}/grpc/framework/common/__init__.py 87${PYSITELIB}/grpc/framework/common/__init__.py
79${PYSITELIB}/grpc/framework/common/__init__.pyc 88${PYSITELIB}/grpc/framework/common/__init__.pyc
80${PYSITELIB}/grpc/framework/common/__init__.pyo 89${PYSITELIB}/grpc/framework/common/__init__.pyo
81${PYSITELIB}/grpc/framework/common/cardinality.py 90${PYSITELIB}/grpc/framework/common/cardinality.py

cvs diff -r1.12 -r1.13 pkgsrc/net/py-grpcio/distinfo (expand / switch to unified diff)

--- pkgsrc/net/py-grpcio/distinfo 2019/10/24 18:34:17 1.12
+++ pkgsrc/net/py-grpcio/distinfo 2019/11/06 17:14:24 1.13
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.12 2019/10/24 18:34:17 adam Exp $ 1$NetBSD: distinfo,v 1.13 2019/11/06 17:14:24 adam Exp $
2 2
3SHA1 (grpcio-1.24.3.tar.gz) = 14178327f815d95883e00c5ab1cc1ecbad7a6533 3SHA1 (grpcio-1.25.0.tar.gz) = 1dde36eca2fe03747e137c190bbfaaffa3d6605f
4RMD160 (grpcio-1.24.3.tar.gz) = 8185ee2b42573017b19fb90cbb55b1976b841398 4RMD160 (grpcio-1.25.0.tar.gz) = 253563c73d5a3923e9428defeacf2085b44c83e5
5SHA512 (grpcio-1.24.3.tar.gz) = 0dc90de5a06b9af7fa91d3e96117f69813e5fee31499e8e48daac7d164856594f164a434d3dd28d6e0220e417926aadceabb9b7597e86a6bb87d8943e6661dce 5SHA512 (grpcio-1.25.0.tar.gz) = bb0241905bad15d6bd019323f1699b95f7cd047aec227197aed9f0bfbca923788fbf59052ab604718542ad69767877560853ef563613ea0490cee2e9f9e9206d
6Size (grpcio-1.24.3.tar.gz) = 14030592 bytes 6Size (grpcio-1.25.0.tar.gz) = 15358518 bytes
7SHA1 (patch-setup.py) = eb7e9a110711d149bae7cc4f4b08e725ffc25ae5 7SHA1 (patch-setup.py) = eb7e9a110711d149bae7cc4f4b08e725ffc25ae5
8SHA1 (patch-src_core_lib_iomgr_port.h) = 8f088cbf22110c03a684c24c9e17ef5fc64e925a 8SHA1 (patch-src_core_lib_iomgr_port.h) = 8f088cbf22110c03a684c24c9e17ef5fc64e925a

cvs diff -r1.8 -r1.9 pkgsrc/net/py-grpcio-tools/Makefile (expand / switch to unified diff)

--- pkgsrc/net/py-grpcio-tools/Makefile 2019/10/24 18:34:17 1.8
+++ pkgsrc/net/py-grpcio-tools/Makefile 2019/11/06 17:14:24 1.9
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.8 2019/10/24 18:34:17 adam Exp $ 1# $NetBSD: Makefile,v 1.9 2019/11/06 17:14:24 adam Exp $
2 2
3DISTNAME= grpcio-tools-1.24.3 3DISTNAME= grpcio-tools-1.25.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= net python 5CATEGORIES= net python
6MASTER_SITES= ${MASTER_SITE_PYPI:=g/grpcio-tools/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=g/grpcio-tools/}
7 7
8MAINTAINER= minskim@NetBSD.org 8MAINTAINER= minskim@NetBSD.org
9HOMEPAGE= https://grpc.io/ 9HOMEPAGE= https://grpc.io/
10COMMENT= Protobuf code generator for gRPC 10COMMENT= Protobuf code generator for gRPC
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13DEPENDS+= ${PYPKGPREFIX}-grpcio>=1.24.3:../../net/py-grpcio 13DEPENDS+= ${PYPKGPREFIX}-grpcio>=1.24.3:../../net/py-grpcio
14DEPENDS+= ${PYPKGPREFIX}-protobuf>=3.5.1:../../devel/py-protobuf 14DEPENDS+= ${PYPKGPREFIX}-protobuf>=3.5.1:../../devel/py-protobuf
15 15
16USE_LANGUAGES= c c++11 16USE_LANGUAGES= c c++11

cvs diff -r1.8 -r1.9 pkgsrc/net/py-grpcio-tools/distinfo (expand / switch to unified diff)

--- pkgsrc/net/py-grpcio-tools/distinfo 2019/10/24 18:34:17 1.8
+++ pkgsrc/net/py-grpcio-tools/distinfo 2019/11/06 17:14:24 1.9
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.8 2019/10/24 18:34:17 adam Exp $ 1$NetBSD: distinfo,v 1.9 2019/11/06 17:14:24 adam Exp $
2 2
3SHA1 (grpcio-tools-1.24.3.tar.gz) = ebb6654f18aae6bc3eb2f4d68dd7e6083f22b3d4 3SHA1 (grpcio-tools-1.25.0.tar.gz) = c671ef41d35bc03d817afe717316caec4cc171e5
4RMD160 (grpcio-tools-1.24.3.tar.gz) = 1304389b1e3309b64c757f5290a38ba10cc239b9 4RMD160 (grpcio-tools-1.25.0.tar.gz) = ad15e0e5d10ba0df42a0e72860f60c996d4481ce
5SHA512 (grpcio-tools-1.24.3.tar.gz) = 89d12beadead3c68532a769795446a9edca96be495ea2af42bf1934e86cc06d06fc345f7847b17a088d66a2c4390461533be075a93e3d5c255c625da097812ab 5SHA512 (grpcio-tools-1.25.0.tar.gz) = 9f17e1641766537002e595e660e384dab54c5c36f17b2f085348392171bcbcaacbb0a55f77ba6eba50603faef59c5436c784b6c1a0de96597d7701e1bf82710f
6Size (grpcio-tools-1.24.3.tar.gz) = 1984292 bytes 6Size (grpcio-tools-1.25.0.tar.gz) = 1987671 bytes
7SHA1 (patch-setup.py) = 080ba75a31b51631000e79006316e0a2d5ce6cee 7SHA1 (patch-setup.py) = 080ba75a31b51631000e79006316e0a2d5ce6cee