From owner-svn-ports-all@freebsd.org Wed Dec 18 12:08:08 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 DD1EF1DDBF3; Wed, 18 Dec 2019 12:08:08 +0000 (UTC) (envelope-from pkubaj@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 47dDL05WYmz4WqH; Wed, 18 Dec 2019 12:08:08 +0000 (UTC) (envelope-from pkubaj@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 B8CE525EF5; Wed, 18 Dec 2019 12:08:08 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBIC88n2061774; Wed, 18 Dec 2019 12:08:08 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBIC884N061773; Wed, 18 Dec 2019 12:08:08 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201912181208.xBIC884N061773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 18 Dec 2019 12:08:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520381 - head/devel/youcompleteme X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/devel/youcompleteme X-SVN-Commit-Revision: 520381 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, 18 Dec 2019 12:08:08 -0000 Author: pkubaj Date: Wed Dec 18 12:08:08 2019 New Revision: 520381 URL: https://svnweb.freebsd.org/changeset/ports/520381 Log: devel/youcompleteme: fix build on GCC architectures C++11 compiler is required: CMake Error at CMakeLists.txt:239 (message): Your C++ compiler does NOT fully support C++11. > Description of fields to fill in above: 76 columns --| > PR: If and which Problem Report is related. > Submitted by: If someone else sent in the change. > Reported by: If someone else reported the issue. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > MFH: Ports tree branch name. Request approval for merge. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Pull Request: https://github.com/freebsd/freebsd/pull/### (*full* GitHub URL needed). > Differential Revision: https://reviews.freebsd.org/D### (*full* phabric URL needed). > Empty fields above will be automatically removed. M youcompleteme/Makefile Modified: head/devel/youcompleteme/Makefile Modified: head/devel/youcompleteme/Makefile ============================================================================== --- head/devel/youcompleteme/Makefile Wed Dec 18 11:39:51 2019 (r520380) +++ head/devel/youcompleteme/Makefile Wed Dec 18 12:08:08 2019 (r520381) @@ -26,7 +26,7 @@ RUN_DEPENDS= vim:editors/vim \ ${PYTHON_PKGNAMEPREFIX}waitress>0:www/py-waitress@${PY_FLAVOR} \ ${PY_FUTURES} -USES= cmake python +USES= cmake compiler:c++11-lang python USE_PYTHON= flavors USE_GITHUB= yes GH_ACCOUNT= ycm-core