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 415751382C5 for ; Fri, 2 Apr 2021 14:04:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69659E0866; Fri, 2 Apr 2021 14:04:47 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 550B4E0866 for ; Fri, 2 Apr 2021 14:04:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 79489340CE7 for ; Fri, 2 Apr 2021 14:04:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1420863C for ; Fri, 2 Apr 2021 14:04:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617372270.1d465356d23e625a0c9494f22bca184745b904ad.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/flint/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/flint/flint-2.7.1.ebuild X-VCS-Directories: sci-mathematics/flint/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1d465356d23e625a0c9494f22bca184745b904ad X-VCS-Branch: master Date: Fri, 2 Apr 2021 14:04:45 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 05713f61-4e42-4a37-96e7-bb77dc80a780 X-Archives-Hash: e52feb159b6958f08cf9e96ff4f25409 commit: 1d465356d23e625a0c9494f22bca184745b904ad Author: Sam James gentoo org> AuthorDate: Fri Apr 2 00:24:41 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 2 14:04:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d465356 sci-mathematics/flint: fix CMAKE_MAKEFILE_GENERATOR Controls sys-devel/make dependency in global scope, hence must be defined pre-inherit. Signed-off-by: Sam James gentoo.org> sci-mathematics/flint/flint-2.7.1.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sci-mathematics/flint/flint-2.7.1.ebuild b/sci-mathematics/flint/flint-2.7.1.ebuild index 6557576cf7d..92eb4e95a2c 100644 --- a/sci-mathematics/flint/flint-2.7.1.ebuild +++ b/sci-mathematics/flint/flint-2.7.1.ebuild @@ -3,6 +3,8 @@ EAPI=7 +# ninja doesn't like "-lcblas" so using make. +CMAKE_MAKEFILE_GENERATOR="emake" PYTHON_COMPAT=( python3_{7..9} ) inherit cmake python-any-r1 @@ -34,9 +36,6 @@ DEPEND="dev-libs/gmp:= virtual/cblas" RDEPEND="${DEPEND}" -# ninja doesn't like "-lcblas" so using make. -CMAKE_MAKEFILE_GENERATOR="emake" - src_configure() { local mycmakeargs=( -DWITH_NTL="$(usex ntl)"