From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 457C6139086 for ; Thu, 12 Jan 2017 15:25:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5EE5E0E81; Thu, 12 Jan 2017 15:25:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81712E0E81 for ; Thu, 12 Jan 2017 15:25:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA1633416BC for ; Thu, 12 Jan 2017 15:25:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A840A2632 for ; Thu, 12 Jan 2017 15:25:39 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1484234731.51eb3030ffdee9988f85f9db497af20dcf923750.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxxabi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libcxxabi/libcxxabi-9999.ebuild X-VCS-Directories: sys-libs/libcxxabi/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 51eb3030ffdee9988f85f9db497af20dcf923750 X-VCS-Branch: master Date: Thu, 12 Jan 2017 15:25:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c029c9a8-41ad-440b-867e-308fb7fc37c5 X-Archives-Hash: ddacc4e583dba49355a1d25180b93051 commit: 51eb3030ffdee9988f85f9db497af20dcf923750 Author: Michał Górny gentoo org> AuthorDate: Thu Jan 12 10:55:17 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 12 15:25:31 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51eb3030 sys-libs/libcxxabi: Switch to CMAKE_BUILD_TYPE=RelWithDebInfo sys-libs/libcxxabi/libcxxabi-9999.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-libs/libcxxabi/libcxxabi-9999.ebuild b/sys-libs/libcxxabi/libcxxabi-9999.ebuild index 2ed3326..9a6cf0e 100644 --- a/sys-libs/libcxxabi/libcxxabi-9999.ebuild +++ b/sys-libs/libcxxabi/libcxxabi-9999.ebuild @@ -5,6 +5,8 @@ EAPI=6 : ${CMAKE_MAKEFILE_GENERATOR:=ninja} +# (needed due to CMAKE_BUILD_TYPE != Gentoo) +CMAKE_MIN_VERSION=3.7.0-r1 EGIT_REPO_URI="http://llvm.org/git/libcxxabi.git https://github.com/llvm-mirror/libcxxabi.git" PYTHON_COMPAT=( python2_7 ) @@ -33,6 +35,9 @@ DEPEND="${RDEPEND} ~sys-libs/libcxx-${PV}[libcxxabi(-)] $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') )" +# least intrusive of all +CMAKE_BUILD_TYPE=RelWithDebInfo + python_check_deps() { has_version "dev-python/lit[${PYTHON_USEDEP}]" }