From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D25561384B4 for ; Mon, 14 Dec 2015 11:39:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CB5C21C08B; Mon, 14 Dec 2015 11:39:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C693321C08B for ; Mon, 14 Dec 2015 11:39:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57E1A340A42 for ; Mon, 14 Dec 2015 11:39:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 725F0A3F for ; Mon, 14 Dec 2015 11:39:39 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1450093174.6ff188a81f27d09a7a6eb304d91afc3a5caea7d4.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/atlas/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/atlas/atlas-3.11.38-r1.ebuild X-VCS-Directories: sci-libs/atlas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6ff188a81f27d09a7a6eb304d91afc3a5caea7d4 X-VCS-Branch: master Date: Mon, 14 Dec 2015 11:39: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: 6a1d13ef-b9cb-40fa-b7e3-7a7c4e541aa5 X-Archives-Hash: 217f257c4c80c95db7c7ee902a27e70f commit: 6ff188a81f27d09a7a6eb304d91afc3a5caea7d4 Author: Justin Lecher gentoo org> AuthorDate: Mon Dec 14 11:39:34 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Dec 14 11:39:34 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6ff188a8 sci-libs/atlas: Warn if incompatible kernel config is set Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=567682 Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> sci-libs/atlas/atlas-3.11.38-r1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sci-libs/atlas/atlas-3.11.38-r1.ebuild b/sci-libs/atlas/atlas-3.11.38-r1.ebuild index 3c760fe..8af1506 100644 --- a/sci-libs/atlas/atlas-3.11.38-r1.ebuild +++ b/sci-libs/atlas/atlas-3.11.38-r1.ebuild @@ -6,7 +6,7 @@ EAPI=5 FORTRAN_NEEDED=fortran -inherit alternatives-2 eutils fortran-2 multilib numeric toolchain-funcs versionator +inherit alternatives-2 eutils fortran-2 linux-info multilib numeric toolchain-funcs versionator LAPACKP=lapack-3.6.0.tgz @@ -39,6 +39,13 @@ pkg_setup() { [[ -e /sys/devices/system/cpu/intel_pstate ]] \ && die "Intel P-State driver detected. Please reboot with 'intel_pstate=disable' in your cmdline" use fortran && fortran-2_pkg_setup + CONFIG_CHECK=" + !~X86_P4_CLOCKMOD + !~X86_INTEL_PSTATE + " + ERROR_KERNEL_X86_P4_CLOCKMOD="P4 Clockmod frequency scaling influences tuning and needs to be disabled at compile time." + ERROR_KERNEL_X86_INTEL_PSTATE="Intel Pstate frequency scaling influences tuning and needs to be disabled at compile time." + linux-info_pkg_setup } src_configure() {