From owner-svn-ports-all@freebsd.org Wed Nov 6 18:13:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 88C981BC5D8; Wed, 6 Nov 2019 18:13:48 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 477ZRJ2qN6z4S86; Wed, 6 Nov 2019 18:13:48 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2B028105C; Wed, 6 Nov 2019 18:13:48 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA6IDmWW000863; Wed, 6 Nov 2019 18:13:48 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA6IDlms000862; Wed, 6 Nov 2019 18:13:47 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201911061813.xA6IDlms000862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 6 Nov 2019 18:13:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516918 - in head/sysutils/apache-mesos: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/sysutils/apache-mesos: . files X-SVN-Commit-Revision: 516918 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Nov 2019 18:13:48 -0000 Author: lwhsu Date: Wed Nov 6 18:13:47 2019 New Revision: 516918 URL: https://svnweb.freebsd.org/changeset/ports/516918 Log: Add a new patch for fixing a namespace change in gprc. Bumped Makefile 'PORTREVISION' and removed 'BROKEN' PR: 241717 Submitted by: James Wright (maintainer) Differential Revision: https://reviews.freebsd.org/D22238 Added: head/sysutils/apache-mesos/files/patch-3rdparty_libprocess_include_process_grpc.hpp (contents, props changed) Modified: head/sysutils/apache-mesos/Makefile Modified: head/sysutils/apache-mesos/Makefile ============================================================================== --- head/sysutils/apache-mesos/Makefile Wed Nov 6 18:09:44 2019 (r516917) +++ head/sysutils/apache-mesos/Makefile Wed Nov 6 18:13:47 2019 (r516918) @@ -2,6 +2,7 @@ PORTNAME= mesos PORTVERSION= 1.9.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= APACHE/mesos/${PORTVERSION} PKGNAMEPREFIX= apache- @@ -12,7 +13,6 @@ COMMENT= Cluster manager providing resource isolation LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN= fails to build IGNORE_FreeBSD_11= does not build BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ Added: head/sysutils/apache-mesos/files/patch-3rdparty_libprocess_include_process_grpc.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/apache-mesos/files/patch-3rdparty_libprocess_include_process_grpc.hpp Wed Nov 6 18:13:47 2019 (r516918) @@ -0,0 +1,20 @@ +--- 3rdparty/libprocess/include/process/grpc.hpp.orig 2019-11-04 22:31:46 UTC ++++ 3rdparty/libprocess/include/process/grpc.hpp +@@ -90,7 +90,7 @@ struct MethodTraits; // Undefined. + + template + struct MethodTraits< +- std::unique_ptr<::grpc::ClientAsyncResponseReader>(Stub::*)( ++ std::unique_ptr<::grpc_impl::ClientAsyncResponseReader>(Stub::*)( + ::grpc::ClientContext*, + const Request&, + ::grpc::CompletionQueue*)> +@@ -235,7 +235,7 @@ class Runtime (public) + std::shared_ptr response(new Response()); + std::shared_ptr<::grpc::Status> status(new ::grpc::Status()); + +- std::shared_ptr<::grpc::ClientAsyncResponseReader> reader = ++ std::shared_ptr<::grpc_impl::ClientAsyncResponseReader> reader = + (typename internal::MethodTraits::stub_type( + connection.channel).*method)(context.get(), request, queue); +