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 D755C13835A for ; Sun, 14 Jun 2020 22:13:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0859EE0AA0; Sun, 14 Jun 2020 22:13:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E3C07E0AA0 for ; Sun, 14 Jun 2020 22:13:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C942934F1A5 for ; Sun, 14 Jun 2020 22:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81C9C299 for ; Sun, 14 Jun 2020 22:13:55 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1592172811.cfbb89ed506d70f133c0f233291a27b8fbe7def8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/arpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/arpack/arpack-3.4.0.ebuild sci-libs/arpack/arpack-3.5.0.ebuild X-VCS-Directories: sci-libs/arpack/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: cfbb89ed506d70f133c0f233291a27b8fbe7def8 X-VCS-Branch: master Date: Sun, 14 Jun 2020 22:13:55 +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: 7858babc-940b-4315-9c80-15cffd6b6098 X-Archives-Hash: ac9ebb63d6afef9895ed80643998b4ab commit: cfbb89ed506d70f133c0f233291a27b8fbe7def8 Author: David Seifert gentoo org> AuthorDate: Sun Jun 14 22:13:31 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 14 22:13:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfbb89ed sci-libs/arpack: Conditionally add -fallow-argument-mismatch Closes: https://bugs.gentoo.org/727592 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: David Seifert gentoo.org> sci-libs/arpack/arpack-3.4.0.ebuild | 4 +++- sci-libs/arpack/arpack-3.5.0.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sci-libs/arpack/arpack-3.4.0.ebuild b/sci-libs/arpack/arpack-3.4.0.ebuild index 0b424e22868..69fc2492c91 100644 --- a/sci-libs/arpack/arpack-3.4.0.ebuild +++ b/sci-libs/arpack/arpack-3.4.0.ebuild @@ -33,7 +33,9 @@ src_prepare() { } src_configure() { - append-fflags -fallow-argument-mismatch + test-flag-FC -fallow-argument-mismatch && + append-fflags -fallow-argument-mismatch + econf \ --disable-static \ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ diff --git a/sci-libs/arpack/arpack-3.5.0.ebuild b/sci-libs/arpack/arpack-3.5.0.ebuild index 097be6e89f8..9d7769d6392 100644 --- a/sci-libs/arpack/arpack-3.5.0.ebuild +++ b/sci-libs/arpack/arpack-3.5.0.ebuild @@ -33,7 +33,9 @@ src_prepare() { } src_configure() { - append-fflags -fallow-argument-mismatch + test-flag-FC -fallow-argument-mismatch && + append-fflags -fallow-argument-mismatch + econf \ --disable-static \ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \