Received: by mail.netbsd.org (Postfix, from userid 605) id 3A19C84D76; Wed, 22 May 2019 09:46:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B412484D68 for ; Wed, 22 May 2019 09:46:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id V7tIGIV2_Uj6 for ; Wed, 22 May 2019 09:46:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id F000B84C85 for ; Wed, 22 May 2019 09:46:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E97F1FBB7; Wed, 22 May 2019 09:46:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1558518410113180" MIME-Version: 1.0 Date: Wed, 22 May 2019 09:46:50 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/grpc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190522094650.E97F1FBB7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1558518410113180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed May 22 09:46:50 UTC 2019 Modified Files: pkgsrc/net/grpc: Makefile PLIST distinfo Log Message: grpc: updated to 1.21.0 Release v1.21.0 Core Service Config Changes to set channel in transient failure on invalid service config. Add a backup poller to c-ares resolver to take better advantage of c-ares query timeout/retry logic. Pass WSA_FLAG_NO_HANDLE_INHERIT flag to the WSASocketA() to avoid handle leaking on the Windows in case of using CreateProcess() on the server. Add fallback-at-startup into xds. Retire the GRPC_ARENA_INIT_STRATEGY env variable. Fix gevent segfault with C-Ares as DNS resolver. Explicitly call getsockname after accept for unix sockets to get the sun_path. RBE Windows c-core build. Loosen the dependency on the googleapis-common-protos-types gem. pick_first: don't go into TRANSIENT_FAILURE upon empty update when in IDLE. Add guard to the tv_nsec field of gpr_now return value. Re-enable ALPN check in gRPC C core SSL stack. C++ Global config variables migration. Make cc_grpc_library compatible with native proto_library and cc_proto_library rules. Add alarm in callback streaming test. Make C++ Channel Interceptors work for lame channels. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/grpc/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/grpc/PLIST cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/grpc/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1558518410113180 Content-Disposition: inline Content-Length: 6189 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/grpc/Makefile diff -u pkgsrc/net/grpc/Makefile:1.9 pkgsrc/net/grpc/Makefile:1.10 --- pkgsrc/net/grpc/Makefile:1.9 Sun Apr 28 19:34:53 2019 +++ pkgsrc/net/grpc/Makefile Wed May 22 09:46:50 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2019/04/28 19:34:53 adam Exp $ +# $NetBSD: Makefile,v 1.10 2019/05/22 09:46:50 adam Exp $ -DISTNAME= grpc-1.20.1 +DISTNAME= grpc-1.21.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=grpc/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -14,7 +14,7 @@ USE_CMAKE= yes USE_LANGUAGES+= c c++11 USE_TOOLS+= pkg-config -CMAKE_ARGS+= -DBUILD_SHARED_LIBS=on +CMAKE_ARGS+= -DBUILD_SHARED_LIBS=ON CMAKE_ARGS+= -DgRPC_BENCHMARK_PROVIDER=package CMAKE_ARGS+= -DgRPC_CARES_PROVIDER=package CMAKE_ARGS+= -DgRPC_GFLAGS_PROVIDER=package Index: pkgsrc/net/grpc/PLIST diff -u pkgsrc/net/grpc/PLIST:1.6 pkgsrc/net/grpc/PLIST:1.7 --- pkgsrc/net/grpc/PLIST:1.6 Fri Apr 19 07:15:36 2019 +++ pkgsrc/net/grpc/PLIST Wed May 22 09:46:50 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2019/04/19 07:15:36 adam Exp $ +@comment $NetBSD: PLIST,v 1.7 2019/05/22 09:46:50 adam Exp $ bin/grpc_cpp_plugin bin/grpc_csharp_plugin bin/grpc_node_plugin @@ -142,19 +142,24 @@ include/grpc/support/workaround_list.h include/grpcpp/alarm.h include/grpcpp/alarm_impl.h include/grpcpp/channel.h +include/grpcpp/channel_impl.h include/grpcpp/client_context.h include/grpcpp/completion_queue.h include/grpcpp/create_channel.h +include/grpcpp/create_channel_impl.h include/grpcpp/create_channel_posix.h include/grpcpp/create_channel_posix_impl.h include/grpcpp/ext/channelz_service_plugin.h include/grpcpp/ext/channelz_service_plugin_impl.h include/grpcpp/ext/health_check_service_server_builder_option.h include/grpcpp/ext/proto_server_reflection_plugin.h +include/grpcpp/ext/proto_server_reflection_plugin_impl.h include/grpcpp/generic/async_generic_service.h include/grpcpp/generic/generic_stub.h +include/grpcpp/generic/generic_stub_impl.h include/grpcpp/grpcpp.h include/grpcpp/health_check_service_interface.h +include/grpcpp/health_check_service_interface_impl.h include/grpcpp/impl/call.h include/grpcpp/impl/channel_argument_option.h include/grpcpp/impl/client_unary_call.h @@ -173,6 +178,7 @@ include/grpcpp/impl/codegen/client_conte include/grpcpp/impl/codegen/client_interceptor.h include/grpcpp/impl/codegen/client_unary_call.h include/grpcpp/impl/codegen/completion_queue.h +include/grpcpp/impl/codegen/completion_queue_impl.h include/grpcpp/impl/codegen/completion_queue_tag.h include/grpcpp/impl/codegen/config.h include/grpcpp/impl/codegen/config_protobuf.h @@ -183,6 +189,7 @@ include/grpcpp/impl/codegen/grpc_library include/grpcpp/impl/codegen/intercepted_channel.h include/grpcpp/impl/codegen/interceptor.h include/grpcpp/impl/codegen/interceptor_common.h +include/grpcpp/impl/codegen/message_allocator.h include/grpcpp/impl/codegen/metadata_map.h include/grpcpp/impl/codegen/method_handler_impl.h include/grpcpp/impl/codegen/proto_buffer_reader.h @@ -202,6 +209,7 @@ include/grpcpp/impl/codegen/status.h include/grpcpp/impl/codegen/status_code_enum.h include/grpcpp/impl/codegen/string_ref.h include/grpcpp/impl/codegen/stub_options.h +include/grpcpp/impl/codegen/sync.h include/grpcpp/impl/codegen/sync_stream.h include/grpcpp/impl/codegen/time.h include/grpcpp/impl/grpc_library.h @@ -213,26 +221,36 @@ include/grpcpp/impl/server_builder_optio include/grpcpp/impl/server_builder_option_impl.h include/grpcpp/impl/server_builder_plugin.h include/grpcpp/impl/server_initializer.h +include/grpcpp/impl/server_initializer_impl.h include/grpcpp/impl/service_type.h include/grpcpp/resource_quota.h +include/grpcpp/resource_quota_impl.h include/grpcpp/security/auth_context.h include/grpcpp/security/auth_metadata_processor.h +include/grpcpp/security/auth_metadata_processor_impl.h include/grpcpp/security/credentials.h +include/grpcpp/security/credentials_impl.h include/grpcpp/security/server_credentials.h +include/grpcpp/security/server_credentials_impl.h include/grpcpp/server.h include/grpcpp/server_builder.h +include/grpcpp/server_builder_impl.h include/grpcpp/server_context.h +include/grpcpp/server_impl.h include/grpcpp/server_posix.h include/grpcpp/server_posix_impl.h include/grpcpp/support/async_stream.h include/grpcpp/support/async_unary_call.h include/grpcpp/support/byte_buffer.h include/grpcpp/support/channel_arguments.h +include/grpcpp/support/channel_arguments_impl.h include/grpcpp/support/client_callback.h include/grpcpp/support/client_interceptor.h include/grpcpp/support/config.h include/grpcpp/support/error_details.h +include/grpcpp/support/error_details_impl.h include/grpcpp/support/interceptor.h +include/grpcpp/support/message_allocator.h include/grpcpp/support/proto_buffer_reader.h include/grpcpp/support/proto_buffer_writer.h include/grpcpp/support/server_callback.h Index: pkgsrc/net/grpc/distinfo diff -u pkgsrc/net/grpc/distinfo:1.10 pkgsrc/net/grpc/distinfo:1.11 --- pkgsrc/net/grpc/distinfo:1.10 Sun Apr 28 19:34:53 2019 +++ pkgsrc/net/grpc/distinfo Wed May 22 09:46:50 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.10 2019/04/28 19:34:53 adam Exp $ +$NetBSD: distinfo,v 1.11 2019/05/22 09:46:50 adam Exp $ -SHA1 (grpc-1.20.1.tar.gz) = 52bf6abef08b2ef3db782ff8999632b3aa95719b -RMD160 (grpc-1.20.1.tar.gz) = e6df5481893a5fafcc1915eeeb90b57f99aa87a8 -SHA512 (grpc-1.20.1.tar.gz) = e0dd0318d2b4ec07e0eafffa218938d91b1440c5053a557460ea7fceaab3d76f0cccc1d595abe7de9fa79f068b71cfbc5a28a3b688bc9c1e2737086928149583 -Size (grpc-1.20.1.tar.gz) = 14930355 bytes +SHA1 (grpc-1.21.0.tar.gz) = 3016e9c03c272c9d23745d9d9e734ee54cbc98c0 +RMD160 (grpc-1.21.0.tar.gz) = 10005286ab5e376219dad8b249a9e8564de3aa1f +SHA512 (grpc-1.21.0.tar.gz) = d8d2cd896dfcae4b1b2640414db93ea35b8c463aae263b02970d0f79bf6bb9b7b28f163549de9ac34ba71bfce4aef044fe4293793eb6e448a1412d19c8a9c8e7 +Size (grpc-1.21.0.tar.gz) = 15043085 bytes SHA1 (patch-CMakeLists.txt) = f3cf27ec59109a8a0a6fa8aebd2ffa1871c29442 SHA1 (patch-cmake_benchmark.cmake) = 031873ba9a8cd93d491693feb4d58e52a715cc64 SHA1 (patch-cmake_cares.cmake) = 19324318dce81451bf7a53d0ca5a7e445a751db5 --_----------=_1558518410113180--