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 5E928139086 for ; Thu, 12 Jan 2017 15:25:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7C25E0E50; Thu, 12 Jan 2017 15:25:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B2EDAE0E50 for ; Thu, 12 Jan 2017 15:25:41 +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 CF35A3416B3 for ; Thu, 12 Jan 2017 15:25:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C263262C 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: <1484234726.8c3c0c5016a80228c2beb49f8d6972136322ba71.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/llvm-ocaml/llvm-ocaml-9999.ebuild X-VCS-Directories: dev-ml/llvm-ocaml/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8c3c0c5016a80228c2beb49f8d6972136322ba71 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: ae2ab16b-8860-4204-b6e4-a34e57dd7de3 X-Archives-Hash: 1ebd8d3e3a2b674d3640073bc1e8e33a commit: 8c3c0c5016a80228c2beb49f8d6972136322ba71 Author: Michał Górny gentoo org> AuthorDate: Thu Jan 12 10:44:37 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 12 15:25:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3c0c50 dev-ml/llvm-ocaml: Switch to CMAKE_BUILD_TYPE=RelWithDebInfo dev-ml/llvm-ocaml/llvm-ocaml-9999.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-9999.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-9999.ebuild index 61beea7..31371de 100644 --- a/dev-ml/llvm-ocaml/llvm-ocaml-9999.ebuild +++ b/dev-ml/llvm-ocaml/llvm-ocaml-9999.ebuild @@ -5,8 +5,10 @@ EAPI=6 : ${CMAKE_MAKEFILE_GENERATOR:=ninja} - +# (needed due to CMAKE_BUILD_TYPE != Gentoo) +CMAKE_MIN_VERSION=3.7.0-r1 PYTHON_COMPAT=( python2_7 ) + inherit cmake-utils git-r3 python-any-r1 DESCRIPTION="OCaml bindings for LLVM" @@ -43,6 +45,9 @@ DEPEND="${RDEPEND} REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( ${ALL_LLVM_TARGETS[*]} )" +# least intrusive of all +CMAKE_BUILD_TYPE=RelWithDebInfo + python_check_deps() { ! use test \ || has_version "dev-python/lit[${PYTHON_USEDEP}]"