Index: head/devel/grpc/Makefile =================================================================== --- head/devel/grpc/Makefile (revision 443485) +++ head/devel/grpc/Makefile (revision 443486) @@ -1,40 +1,40 @@ # Created by: vanilla@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.4 DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= vanilla@FreeBSD.org COMMENT= HTTP/2-based RPC framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= go:lang/go LIB_DEPENDS= libgflags.so:devel/gflags \ libprotobuf.so:devel/protobuf \ libcares.so:dns/c-ares USE_GITHUB= yes GH_TUPLE= grpc:grpc:v${PORTVERSION} \ boringssl:boringssl:ebcb5be:boringssl/third_party/boringssl \ google:benchmark:v1.1.0:benchmark/third_party/benchmark USES= cmake perl5 pkgconfig USE_LDCONFIG= yes USE_PERL5= build PLIST_SUB+= SOVERSION=${PORTVERSION} CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lpthread -lcares -lm CMAKE_ARGS= -DgRPC_ZLIB_PROVIDER:STRING="package" \ -DgRPC_PROTOBUF_PROVIDER:STRING="package" \ -DgRPC_GFLAGS_PROVIDER:STRING="package" \ -DgRPC_SSL_PROVIDER:STRING="module" \ -DgRPC_CARES_PROVIDER:STRING="package" \ -DgRPC_BENCHMARK_PROVIDER:STRING="module" \ -DBENCHMARK_USE_LIBCXX=ON \ -DBUILD_SHARED_LIBS=ON .include Index: head/devel/grpc/distinfo =================================================================== --- head/devel/grpc/distinfo (revision 443485) +++ head/devel/grpc/distinfo (revision 443486) @@ -1,7 +1,7 @@ -TIMESTAMP = 1494645576 -SHA256 (grpc-grpc-v1.3.2_GH0.tar.gz) = 6228fb43e6b11b1dec5aa21e66482bb45013b45cb70c1ca062f4848469d1ab99 -SIZE (grpc-grpc-v1.3.2_GH0.tar.gz) = 4694379 +TIMESTAMP = 1497326729 +SHA256 (grpc-grpc-v1.3.4_GH0.tar.gz) = c12ca2693a3b3d80cadb15f1618d9ca6c83fe8c64a32b058a95ff8dce39b3e82 +SIZE (grpc-grpc-v1.3.4_GH0.tar.gz) = 4803665 SHA256 (boringssl-boringssl-ebcb5be_GH0.tar.gz) = 324b80025f73eba48791fdfcf82e81b4496b8a002fd985d68cca137f31d25e4c SIZE (boringssl-boringssl-ebcb5be_GH0.tar.gz) = 5936046 SHA256 (google-benchmark-v1.1.0_GH0.tar.gz) = e7334dd254434c6668e33a54c8f839194c7c61840d52f4b6258eee28e9f3b20e SIZE (google-benchmark-v1.1.0_GH0.tar.gz) = 87199 Index: head/devel/grpc/files/patch-CMakeLists.txt =================================================================== --- head/devel/grpc/files/patch-CMakeLists.txt (revision 443485) +++ head/devel/grpc/files/patch-CMakeLists.txt (revision 443486) @@ -1,155 +1,187 @@ ---- CMakeLists.txt.orig 2017-04-27 20:59:19 UTC +--- CMakeLists.txt.orig 2017-05-19 23:18:40 UTC +++ CMakeLists.txt +@@ -39,7 +39,7 @@ + cmake_minimum_required(VERSION 2.8) + + set(PACKAGE_NAME "grpc") +-set(PACKAGE_VERSION "1.4.0-dev") ++set(PACKAGE_VERSION "1.3.4") + set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") + set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}") + set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/") @@ -150,7 +150,8 @@ if("${gRPC_CARES_PROVIDER}" STREQUAL "mo message(WARNING "gRPC_CARES_PROVIDER is \"module\" but CARES_ROOT_DIR is wrong") endif() elseif("${gRPC_CARES_PROVIDER}" STREQUAL "package") - find_package(CARES) + find_package(PkgConfig REQUIRED) + pkg_search_module(CARES REQUIRED libcares) if(TARGET CARES::CARES) set(_gRPC_CARES_LIBRARIES CARES::CARES) endif() @@ -177,24 +178,14 @@ if("${gRPC_PROTOBUF_PROVIDER}" STREQUAL if(TARGET libprotoc) set(_gRPC_PROTOBUF_PROTOC_LIBRARIES libprotoc) endif() - if(TARGET protoc) - set(_gRPC_PROTOBUF_PROTOC protoc) - endif() else() message(WARNING "gRPC_PROTOBUF_PROVIDER is \"module\" but PROTOBUF_ROOT_DIR is wrong") endif() elseif("${gRPC_PROTOBUF_PROVIDER}" STREQUAL "package") - find_package(protobuf CONFIG) - if(protobuf_FOUND) - if(TARGET protobuf::${_gRPC_PROTOBUF_LIBRARY_NAME}) - set(_gRPC_PROTOBUF_LIBRARIES protobuf::${_gRPC_PROTOBUF_LIBRARY_NAME}) - endif() - if(TARGET protobuf::libprotoc) - set(_gRPC_PROTOBUF_PROTOC_LIBRARIES protobuf::libprotoc) - endif() - if(TARGET protobuf::protoc) - set(_gRPC_PROTOBUF_PROTOC protobuf::protoc) - endif() + find_library(LIBPROTOBUF protobuf) + if(LIBPROTOBUF) + set(_gRPC_PROTOBUF_LIBRARIES protobuf) + set(_gRPC_PROTOBUF_PROTOC_LIBRARIES protoc) set(_gRPC_FIND_PROTOBUF "if(NOT protobuf_FOUND)\n find_package(protobuf CONFIG)\nendif()") else() find_package(Protobuf MODULE) -@@ -270,7 +261,7 @@ if(NOT MSVC) - endif() - - if(UNIX) -- set(_gRPC_ALLTARGETS_LIBRARIES dl rt m pthread) -+ set(_gRPC_ALLTARGETS_LIBRARIES rt m pthread) - endif() - - if(WIN32 AND MSVC) -@@ -316,7 +307,7 @@ function(protobuf_generate_grpc_cpp) - "${_gRPC_PROTO_GENS_DIR}/${RELFIL_WE}.grpc.pb.h" +@@ -319,7 +310,7 @@ function(protobuf_generate_grpc_cpp) + "${_gRPC_PROTO_GENS_DIR}/${RELFIL_WE}_mock.grpc.pb.h" "${_gRPC_PROTO_GENS_DIR}/${RELFIL_WE}.pb.cc" "${_gRPC_PROTO_GENS_DIR}/${RELFIL_WE}.pb.h" - COMMAND ${_gRPC_PROTOBUF_PROTOC} + COMMAND "protoc" - ARGS --grpc_out=${_gRPC_PROTO_GENS_DIR} + ARGS --grpc_out=generate_mock_code=true:${_gRPC_PROTO_GENS_DIR} --cpp_out=${_gRPC_PROTO_GENS_DIR} --plugin=protoc-gen-grpc=$ -@@ -780,6 +771,7 @@ add_library(gpr +@@ -791,6 +782,7 @@ add_library(gpr src/core/lib/support/tmpfile_windows.c src/core/lib/support/wrap_memcpy.c ) +set_target_properties(gpr PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(gpr PROPERTIES COMPILE_PDB_NAME "gpr" -@@ -1145,6 +1137,7 @@ add_library(grpc - src/core/ext/filters/max_age/max_age_filter.c +@@ -1169,6 +1161,7 @@ add_library(grpc + src/core/ext/filters/workarounds/workaround_utils.c src/core/plugin_registry/grpc_plugin_registry.c ) +set_target_properties(grpc PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc PROPERTIES COMPILE_PDB_NAME "grpc" -@@ -1437,6 +1430,7 @@ add_library(grpc_cronet +@@ -1470,6 +1463,7 @@ add_library(grpc_cronet src/core/ext/filters/load_reporting/load_reporting_filter.c src/core/plugin_registry/grpc_cronet_plugin_registry.c ) +set_target_properties(grpc_cronet PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc_cronet PROPERTIES COMPILE_PDB_NAME "grpc_cronet" -@@ -2011,6 +2005,7 @@ add_library(grpc_unsecure - src/core/ext/filters/max_age/max_age_filter.c +@@ -1706,6 +1700,7 @@ add_library(grpc_test_util + src/core/lib/transport/transport_op_string.c + src/core/lib/debug/trace.c + ) ++set_target_properties(grpc_test_util PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(grpc_test_util PROPERTIES COMPILE_PDB_NAME "grpc_test_util" +@@ -1800,6 +1795,7 @@ add_library(grpc_test_util_unsecure + test/core/util/slice_splitter.c + test/core/util/trickle_endpoint.c + ) ++set_target_properties(grpc_test_util_unsecure PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(grpc_test_util_unsecure PROPERTIES COMPILE_PDB_NAME "grpc_test_util_unsecure" +@@ -2060,6 +2056,7 @@ add_library(grpc_unsecure + src/core/ext/filters/workarounds/workaround_utils.c src/core/plugin_registry/grpc_unsecure_plugin_registry.c ) +set_target_properties(grpc_unsecure PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc_unsecure PROPERTIES COMPILE_PDB_NAME "grpc_unsecure" -@@ -2353,6 +2348,7 @@ add_library(grpc++ +@@ -2405,6 +2402,7 @@ add_library(grpc++ third_party/nanopb/pb_encode.c src/cpp/codegen/codegen_init.cc ) +set_target_properties(grpc++ PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc++ PROPERTIES COMPILE_PDB_NAME "grpc++" -@@ -2746,6 +2742,7 @@ add_library(grpc++_cronet +@@ -2805,6 +2803,7 @@ add_library(grpc++_cronet src/core/ext/census/trace_context.c src/core/ext/census/tracing.c ) +set_target_properties(grpc++_cronet PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc++_cronet PROPERTIES COMPILE_PDB_NAME "grpc++_cronet" -@@ -2915,6 +2912,7 @@ add_library(grpc++_error_details +@@ -2974,6 +2973,7 @@ add_library(grpc++_error_details ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/status/status.grpc.pb.h src/cpp/util/error_details.cc ) +set_target_properties(grpc++_error_details PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc++_error_details PROPERTIES COMPILE_PDB_NAME "grpc++_error_details" -@@ -3042,6 +3040,7 @@ add_library(grpc++_reflection +@@ -3041,6 +3041,7 @@ add_library(grpc++_proto_reflection_desc ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.pb.h ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.h ) ++set_target_properties(grpc++_proto_reflection_desc_db PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(grpc++_proto_reflection_desc_db PROPERTIES COMPILE_PDB_NAME "grpc++_proto_reflection_desc_db" +@@ -3103,6 +3104,7 @@ add_library(grpc++_reflection + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.pb.h + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.h + ) +set_target_properties(grpc++_reflection PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc++_reflection PROPERTIES COMPILE_PDB_NAME "grpc++_reflection" -@@ -3169,6 +3168,7 @@ add_library(grpc++_test_util +@@ -3165,6 +3167,7 @@ if (gRPC_BUILD_TESTS) + add_library(grpc++_test_config + test/cpp/util/test_config_cc.cc + ) ++set_target_properties(grpc++_test_config PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(grpc++_test_config PROPERTIES COMPILE_PDB_NAME "grpc++_test_config" +@@ -3233,6 +3236,7 @@ add_library(grpc++_test_util test/cpp/util/test_credentials_provider.cc src/cpp/codegen/codegen_init.cc ) -+set_target_properties(grpc++_unsecure PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) ++set_target_properties(grpc++_test_util PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc++_test_util PROPERTIES COMPILE_PDB_NAME "grpc++_test_util" -@@ -3450,6 +3450,7 @@ add_library(grpc++_unsecure +@@ -3515,6 +3519,7 @@ add_library(grpc++_unsecure third_party/nanopb/pb_encode.c src/cpp/codegen/codegen_init.cc ) +set_target_properties(grpc++_unsecure PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc++_unsecure PROPERTIES COMPILE_PDB_NAME "grpc++_unsecure" -@@ -3732,6 +3733,7 @@ add_library(grpc_plugin_support +@@ -3801,6 +3806,7 @@ add_library(grpc_plugin_support src/compiler/python_generator.cc src/compiler/ruby_generator.cc ) +set_target_properties(grpc_plugin_support PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc_plugin_support PROPERTIES COMPILE_PDB_NAME "grpc_plugin_support" -@@ -4241,6 +4243,7 @@ endif (gRPC_BUILD_TESTS) +@@ -4324,6 +4330,7 @@ endif (gRPC_BUILD_TESTS) add_library(grpc_csharp_ext SHARED src/csharp/ext/grpc_csharp_ext.c ) +set_target_properties(grpc_csharp_ext PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) if(WIN32 AND MSVC) set_target_properties(grpc_csharp_ext PROPERTIES COMPILE_PDB_NAME "grpc_csharp_ext" Index: head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c =================================================================== --- head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c (revision 443485) +++ head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c (revision 443486) @@ -1,10 +1,10 @@ ---- src/core/tsi/ssl_transport_security.c.orig 2017-05-02 03:20:57 UTC +--- src/core/tsi/ssl_transport_security.c.orig 2017-05-19 23:18:40 UTC +++ src/core/tsi/ssl_transport_security.c @@ -35,6 +35,7 @@ #include +#include #include #include Index: head/devel/grpc/files/patch-third__party_boringssl_crypto_CMakeLists.txt =================================================================== --- head/devel/grpc/files/patch-third__party_boringssl_crypto_CMakeLists.txt (revision 443485) +++ head/devel/grpc/files/patch-third__party_boringssl_crypto_CMakeLists.txt (revision 443486) @@ -1,32 +1,32 @@ ---- third_party/boringssl/crypto/CMakeLists.txt.orig 2017-05-01 12:40:52 UTC +--- third_party/boringssl/crypto/CMakeLists.txt.orig 2017-03-30 20:04:23 UTC +++ third_party/boringssl/crypto/CMakeLists.txt @@ -195,29 +195,3 @@ add_executable( target_link_libraries(refcount_test crypto) add_dependencies(all_tests refcount_test) - -# TODO(davidben): Convert the remaining tests to GTest. -add_executable( - crypto_test - - asn1/asn1_test.cc - bio/bio_test.cc - chacha/chacha_test.cc - constant_time_test.cc - curve25519/x25519_test.cc - dh/dh_test.cc - dsa/dsa_test.cc - ec/ec_test.cc - err/err_test.cc - evp/evp_extra_test.cc - rsa/rsa_test.cc - - $ - $ -) - -target_link_libraries(crypto_test crypto gtest) -if (WIN32) - target_link_libraries(crypto_test ws2_32) -endif() -add_dependencies(all_tests crypto_test) Index: head/devel/grpc/pkg-plist =================================================================== --- head/devel/grpc/pkg-plist (revision 443485) +++ head/devel/grpc/pkg-plist (revision 443486) @@ -1,192 +1,193 @@ +bin/check_epollexclusive bin/gen_hpack_tables bin/gen_legal_metadata_characters bin/gen_percent_encoding_tables bin/grpc_cpp_plugin bin/grpc_create_jwt bin/grpc_csharp_plugin bin/grpc_node_plugin bin/grpc_objective_c_plugin bin/grpc_php_plugin bin/grpc_print_google_default_creds_token bin/grpc_python_plugin bin/grpc_ruby_plugin bin/grpc_verify_jwt include/benchmark/benchmark.h include/benchmark/benchmark_api.h include/benchmark/macros.h include/benchmark/reporter.h include/grpc++/alarm.h include/grpc++/channel.h include/grpc++/client_context.h include/grpc++/completion_queue.h include/grpc++/create_channel.h include/grpc++/create_channel_posix.h include/grpc++/ext/health_check_service_server_builder_option.h include/grpc++/ext/proto_server_reflection_plugin.h include/grpc++/generic/async_generic_service.h include/grpc++/generic/generic_stub.h include/grpc++/grpc++.h include/grpc++/health_check_service_interface.h include/grpc++/impl/call.h include/grpc++/impl/channel_argument_option.h include/grpc++/impl/client_unary_call.h include/grpc++/impl/codegen/async_stream.h include/grpc++/impl/codegen/async_unary_call.h include/grpc++/impl/codegen/call.h include/grpc++/impl/codegen/call_hook.h include/grpc++/impl/codegen/channel_interface.h include/grpc++/impl/codegen/client_context.h include/grpc++/impl/codegen/client_unary_call.h include/grpc++/impl/codegen/completion_queue.h include/grpc++/impl/codegen/completion_queue_tag.h include/grpc++/impl/codegen/config.h include/grpc++/impl/codegen/config_protobuf.h include/grpc++/impl/codegen/core_codegen.h include/grpc++/impl/codegen/core_codegen_interface.h include/grpc++/impl/codegen/create_auth_context.h include/grpc++/impl/codegen/grpc_library.h include/grpc++/impl/codegen/metadata_map.h include/grpc++/impl/codegen/method_handler_impl.h include/grpc++/impl/codegen/proto_utils.h include/grpc++/impl/codegen/rpc_method.h include/grpc++/impl/codegen/rpc_service_method.h include/grpc++/impl/codegen/security/auth_context.h include/grpc++/impl/codegen/serialization_traits.h include/grpc++/impl/codegen/server_context.h include/grpc++/impl/codegen/server_interface.h include/grpc++/impl/codegen/service_type.h include/grpc++/impl/codegen/slice.h include/grpc++/impl/codegen/status.h include/grpc++/impl/codegen/status_code_enum.h -include/grpc++/impl/codegen/status_helper.h include/grpc++/impl/codegen/string_ref.h include/grpc++/impl/codegen/stub_options.h include/grpc++/impl/codegen/sync_stream.h include/grpc++/impl/codegen/time.h include/grpc++/impl/grpc_library.h include/grpc++/impl/method_handler_impl.h include/grpc++/impl/rpc_method.h include/grpc++/impl/rpc_service_method.h include/grpc++/impl/serialization_traits.h include/grpc++/impl/server_builder_option.h include/grpc++/impl/server_builder_plugin.h include/grpc++/impl/server_initializer.h include/grpc++/impl/service_type.h include/grpc++/resource_quota.h include/grpc++/security/auth_context.h include/grpc++/security/auth_metadata_processor.h include/grpc++/security/credentials.h include/grpc++/security/server_credentials.h include/grpc++/server.h include/grpc++/server_builder.h include/grpc++/server_context.h include/grpc++/server_posix.h include/grpc++/support/async_stream.h include/grpc++/support/async_unary_call.h include/grpc++/support/byte_buffer.h include/grpc++/support/channel_arguments.h include/grpc++/support/config.h include/grpc++/support/error_details.h include/grpc++/support/slice.h include/grpc++/support/status.h include/grpc++/support/status_code_enum.h include/grpc++/support/string_ref.h include/grpc++/support/stub_options.h include/grpc++/support/sync_stream.h include/grpc++/support/time.h include/grpc/byte_buffer.h include/grpc/byte_buffer_reader.h include/grpc/census.h include/grpc/compression.h include/grpc/grpc.h include/grpc/grpc_cronet.h include/grpc/grpc_posix.h include/grpc/grpc_security.h include/grpc/grpc_security_constants.h include/grpc/impl/codegen/atm.h include/grpc/impl/codegen/atm_gcc_atomic.h include/grpc/impl/codegen/atm_gcc_sync.h include/grpc/impl/codegen/atm_windows.h include/grpc/impl/codegen/byte_buffer_reader.h include/grpc/impl/codegen/compression_types.h include/grpc/impl/codegen/connectivity_state.h include/grpc/impl/codegen/exec_ctx_fwd.h include/grpc/impl/codegen/gpr_slice.h include/grpc/impl/codegen/gpr_types.h include/grpc/impl/codegen/grpc_types.h include/grpc/impl/codegen/port_platform.h include/grpc/impl/codegen/propagation_bits.h include/grpc/impl/codegen/slice.h include/grpc/impl/codegen/status.h include/grpc/impl/codegen/sync.h include/grpc/impl/codegen/sync_generic.h include/grpc/impl/codegen/sync_posix.h include/grpc/impl/codegen/sync_windows.h include/grpc/load_reporting.h include/grpc/slice.h include/grpc/slice_buffer.h include/grpc/status.h include/grpc/support/alloc.h include/grpc/support/atm.h include/grpc/support/atm_gcc_atomic.h include/grpc/support/atm_gcc_sync.h include/grpc/support/atm_windows.h include/grpc/support/avl.h include/grpc/support/cmdline.h include/grpc/support/cpu.h include/grpc/support/histogram.h include/grpc/support/host_port.h include/grpc/support/log.h include/grpc/support/log_windows.h include/grpc/support/port_platform.h include/grpc/support/string_util.h include/grpc/support/subprocess.h include/grpc/support/sync.h include/grpc/support/sync_generic.h include/grpc/support/sync_posix.h include/grpc/support/sync_windows.h include/grpc/support/thd.h include/grpc/support/time.h include/grpc/support/tls.h include/grpc/support/tls_gcc.h include/grpc/support/tls_msvc.h include/grpc/support/tls_pthread.h include/grpc/support/useful.h +include/grpc/support/workaround_list.h lib/cmake/gRPC/gRPCConfig.cmake lib/cmake/gRPC/gRPCConfigVersion.cmake lib/libbenchmark.so lib/libbenchmark.so.0 lib/libbenchmark.so.0.0.0 lib/libgpr.so lib/libgpr.so.1 lib/libgpr.so.%%SOVERSION%% lib/libgrpc++.so lib/libgrpc++.so.1 lib/libgrpc++.so.%%SOVERSION%% lib/libgrpc++_cronet.so lib/libgrpc++_cronet.so.1 lib/libgrpc++_cronet.so.%%SOVERSION%% lib/libgrpc++_error_details.so lib/libgrpc++_error_details.so.1 lib/libgrpc++_error_details.so.%%SOVERSION%% lib/libgrpc++_reflection.so lib/libgrpc++_reflection.so.1 lib/libgrpc++_reflection.so.%%SOVERSION%% lib/libgrpc++_unsecure.so lib/libgrpc++_unsecure.so.1 lib/libgrpc++_unsecure.so.%%SOVERSION%% lib/libgrpc.so lib/libgrpc.so.1 lib/libgrpc.so.%%SOVERSION%% lib/libgrpc_cronet.so lib/libgrpc_cronet.so.1 lib/libgrpc_cronet.so.%%SOVERSION%% lib/libgrpc_csharp_ext.so lib/libgrpc_csharp_ext.so.1 lib/libgrpc_csharp_ext.so.%%SOVERSION%% lib/libgrpc_plugin_support.so lib/libgrpc_plugin_support.so.1 lib/libgrpc_plugin_support.so.%%SOVERSION%% lib/libgrpc_unsecure.so lib/libgrpc_unsecure.so.1 lib/libgrpc_unsecure.so.%%SOVERSION%%