Date: Tue, 28 May 2019 10:30:49 +0000 (UTC) From: Matthias Fechner <mfechner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502872 - in head: devel/grpc net/rubygem-grpc www/mod_pagespeed Message-ID: <201905281030.x4SAUn4K051114@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mfechner Date: Tue May 28 10:30:48 2019 New Revision: 502872 URL: https://svnweb.freebsd.org/changeset/ports/502872 Log: Upgrade devel/grpc to version 0.19.1 which is required for gitlab-ce 11.11 upgrade. Modified: head/devel/grpc/Makefile head/devel/grpc/distinfo head/devel/grpc/pkg-plist head/net/rubygem-grpc/Makefile head/net/rubygem-grpc/distinfo head/www/mod_pagespeed/Makefile Modified: head/devel/grpc/Makefile ============================================================================== --- head/devel/grpc/Makefile Tue May 28 10:27:05 2019 (r502871) +++ head/devel/grpc/Makefile Tue May 28 10:30:48 2019 (r502872) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.15.1 +PORTVERSION= 1.19.1 DISTVERSIONPREFIX= v -PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= devel Modified: head/devel/grpc/distinfo ============================================================================== --- head/devel/grpc/distinfo Tue May 28 10:27:05 2019 (r502871) +++ head/devel/grpc/distinfo Tue May 28 10:30:48 2019 (r502872) @@ -1,5 +1,5 @@ -TIMESTAMP = 1542928471 -SHA256 (grpc-grpc-v1.15.1_GH0.tar.gz) = 0186e800fbda420305c3489ddb28394059e1e6fc192a97fc7412d21b7306d82e -SIZE (grpc-grpc-v1.15.1_GH0.tar.gz) = 14084914 +TIMESTAMP = 1558172713 +SHA256 (grpc-grpc-v1.19.1_GH0.tar.gz) = f869c648090e8bddaa1260a271b1089caccbe735bf47ac9cd7d44d35a02fb129 +SIZE (grpc-grpc-v1.19.1_GH0.tar.gz) = 14794085 SHA256 (google-benchmark-v1.4.1_GH0.tar.gz) = f8e525db3c42efc9c7f3bc5176a8fa893a9a9920bbd08cef30fb56a51854d60d SIZE (google-benchmark-v1.4.1_GH0.tar.gz) = 126850 Modified: head/devel/grpc/pkg-plist ============================================================================== --- head/devel/grpc/pkg-plist Tue May 28 10:27:05 2019 (r502871) +++ head/devel/grpc/pkg-plist Tue May 28 10:30:48 2019 (r502872) @@ -140,6 +140,7 @@ include/grpc/support/thd_id.h include/grpc/support/time.h include/grpc/support/workaround_list.h include/grpcpp/alarm.h +include/grpcpp/alarm_impl.h include/grpcpp/channel.h include/grpcpp/client_context.h include/grpcpp/completion_queue.h @@ -161,8 +162,13 @@ include/grpcpp/impl/codegen/async_unary_call.h include/grpcpp/impl/codegen/byte_buffer.h include/grpcpp/impl/codegen/call.h include/grpcpp/impl/codegen/call_hook.h +include/grpcpp/impl/codegen/call_op_set.h +include/grpcpp/impl/codegen/call_op_set_interface.h +include/grpcpp/impl/codegen/callback_common.h include/grpcpp/impl/codegen/channel_interface.h +include/grpcpp/impl/codegen/client_callback.h include/grpcpp/impl/codegen/client_context.h +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_tag.h @@ -172,6 +178,9 @@ include/grpcpp/impl/codegen/core_codegen.h include/grpcpp/impl/codegen/core_codegen_interface.h include/grpcpp/impl/codegen/create_auth_context.h include/grpcpp/impl/codegen/grpc_library.h +include/grpcpp/impl/codegen/intercepted_channel.h +include/grpcpp/impl/codegen/interceptor.h +include/grpcpp/impl/codegen/interceptor_common.h include/grpcpp/impl/codegen/metadata_map.h include/grpcpp/impl/codegen/method_handler_impl.h include/grpcpp/impl/codegen/proto_buffer_reader.h @@ -181,7 +190,9 @@ include/grpcpp/impl/codegen/rpc_method.h include/grpcpp/impl/codegen/rpc_service_method.h include/grpcpp/impl/codegen/security/auth_context.h include/grpcpp/impl/codegen/serialization_traits.h +include/grpcpp/impl/codegen/server_callback.h include/grpcpp/impl/codegen/server_context.h +include/grpcpp/impl/codegen/server_interceptor.h include/grpcpp/impl/codegen/server_interface.h include/grpcpp/impl/codegen/service_type.h include/grpcpp/impl/codegen/slice.h @@ -213,10 +224,15 @@ 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/client_callback.h +include/grpcpp/support/client_interceptor.h include/grpcpp/support/config.h include/grpcpp/support/error_details.h +include/grpcpp/support/interceptor.h include/grpcpp/support/proto_buffer_reader.h include/grpcpp/support/proto_buffer_writer.h +include/grpcpp/support/server_callback.h +include/grpcpp/support/server_interceptor.h include/grpcpp/support/slice.h include/grpcpp/support/status.h include/grpcpp/support/status_code_enum.h Modified: head/net/rubygem-grpc/Makefile ============================================================================== --- head/net/rubygem-grpc/Makefile Tue May 28 10:27:05 2019 (r502871) +++ head/net/rubygem-grpc/Makefile Tue May 28 10:30:48 2019 (r502872) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.15.0 +PORTVERSION= 1.19.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-grpc/distinfo ============================================================================== --- head/net/rubygem-grpc/distinfo Tue May 28 10:27:05 2019 (r502871) +++ head/net/rubygem-grpc/distinfo Tue May 28 10:30:48 2019 (r502872) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542968158 -SHA256 (rubygem/grpc-1.15.0.gem) = 0bd28b28e1ea1895fb560a546688804e6fb256d9d89fbb28acd3b150edd55c54 -SIZE (rubygem/grpc-1.15.0.gem) = 3013120 +TIMESTAMP = 1558173766 +SHA256 (rubygem/grpc-1.19.0.gem) = faf11039fe32009ccc270190e33d65b1a5e0d292ddd06a2ffa7d97aae3e7bee5 +SIZE (rubygem/grpc-1.19.0.gem) = 3093504 Modified: head/www/mod_pagespeed/Makefile ============================================================================== --- head/www/mod_pagespeed/Makefile Tue May 28 10:27:05 2019 (r502871) +++ head/www/mod_pagespeed/Makefile Tue May 28 10:30:48 2019 (r502872) @@ -2,7 +2,7 @@ PORTNAME= mod_pagespeed PORTVERSION= 1.12.34.2 -PORTREVISION= 20 +PORTREVISION= 21 PORTEPOCH= 1 CATEGORIES= www devel MASTER_SITES= LOCAL/mmokhi:boringssl,chromium_base,chromium_build,googleurl,gflags_arch,gflags_src,libjpeg_turbo_src,yasm_patched,libwebp,modpb64 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905281030.x4SAUn4K051114>