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 95C84158086 for ; Thu, 14 Oct 2021 06:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7E0AE0824; Thu, 14 Oct 2021 06:24:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9A12E0824 for ; Thu, 14 Oct 2021 06:24:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7913342EF0 for ; Thu, 14 Oct 2021 06:24:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48FA912A for ; Thu, 14 Oct 2021 06:24:14 +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: <1634192629.8e60fd5146783f1e3949121a11ffaa4dbacfe277.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gromacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/gromacs/gromacs-2021.3.ebuild sci-chemistry/gromacs/gromacs-2021.9999.ebuild sci-chemistry/gromacs/gromacs-9999.ebuild X-VCS-Directories: sci-chemistry/gromacs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8e60fd5146783f1e3949121a11ffaa4dbacfe277 X-VCS-Branch: master Date: Thu, 14 Oct 2021 06:24:14 +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: 8d6030cc-526f-4174-ba8a-e4bfe54564d4 X-Archives-Hash: 9d7ba005a8c3cf21cd67bdca50f89b48 commit: 8e60fd5146783f1e3949121a11ffaa4dbacfe277 Author: Sam James gentoo org> AuthorDate: Thu Oct 14 06:23:49 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Oct 14 06:23:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e60fd51 sci-chemistry/gromacs: fix configure with -custom-cflags Need to default to AUTO and let it be overridden as appropriate later. Bug: https://bugs.gentoo.org/818055 Signed-off-by: Sam James gentoo.org> sci-chemistry/gromacs/gromacs-2021.3.ebuild | 3 ++- sci-chemistry/gromacs/gromacs-2021.9999.ebuild | 3 ++- sci-chemistry/gromacs/gromacs-9999.ebuild | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sci-chemistry/gromacs/gromacs-2021.3.ebuild b/sci-chemistry/gromacs/gromacs-2021.3.ebuild index e77091aa53d..2298195203d 100644 --- a/sci-chemistry/gromacs/gromacs-2021.3.ebuild +++ b/sci-chemistry/gromacs/gromacs-2021.3.ebuild @@ -161,10 +161,11 @@ src_prepare() { src_configure() { local mycmakeargs_pre=( ) extra fft_opts=( ) + local acce="AUTO" if use custom-cflags; then #go from slowest to fastest acceleration - local acce="None" + acce="None" if (use amd64 || use x86); then use cpu_flags_x86_sse2 && acce="SSE2" use cpu_flags_x86_sse4_1 && acce="SSE4.1" diff --git a/sci-chemistry/gromacs/gromacs-2021.9999.ebuild b/sci-chemistry/gromacs/gromacs-2021.9999.ebuild index ebd3a798340..ee0586bbca7 100644 --- a/sci-chemistry/gromacs/gromacs-2021.9999.ebuild +++ b/sci-chemistry/gromacs/gromacs-2021.9999.ebuild @@ -161,10 +161,11 @@ src_prepare() { src_configure() { local mycmakeargs_pre=( ) extra fft_opts=( ) + local acce="AUTO" if use custom-cflags; then #go from slowest to fastest acceleration - local acce="None" + acce="None" if (use amd64 || use x86); then use cpu_flags_x86_sse2 && acce="SSE2" use cpu_flags_x86_sse4_1 && acce="SSE4.1" diff --git a/sci-chemistry/gromacs/gromacs-9999.ebuild b/sci-chemistry/gromacs/gromacs-9999.ebuild index ebd3a798340..ee0586bbca7 100644 --- a/sci-chemistry/gromacs/gromacs-9999.ebuild +++ b/sci-chemistry/gromacs/gromacs-9999.ebuild @@ -161,10 +161,11 @@ src_prepare() { src_configure() { local mycmakeargs_pre=( ) extra fft_opts=( ) + local acce="AUTO" if use custom-cflags; then #go from slowest to fastest acceleration - local acce="None" + acce="None" if (use amd64 || use x86); then use cpu_flags_x86_sse2 && acce="SSE2" use cpu_flags_x86_sse4_1 && acce="SSE4.1"