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 DF8091382C5 for ; Sat, 6 Mar 2021 11:10:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E2B3E08FE; Sat, 6 Mar 2021 11:10:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 2728CE08FE for ; Sat, 6 Mar 2021 11:10:10 +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 3FCF2340DE3 for ; Sat, 6 Mar 2021 11:10:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C102A58C for ; Sat, 6 Mar 2021 11:10:05 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1615028987.f8c284bd0c13b1666a6e8c29b07a05d4c3e077c7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/clapack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/clapack/clapack-3.2.1-r8.ebuild X-VCS-Directories: sci-libs/clapack/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f8c284bd0c13b1666a6e8c29b07a05d4c3e077c7 X-VCS-Branch: master Date: Sat, 6 Mar 2021 11:10:05 +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: 8bbf7e22-d364-47ca-8991-26e8ca8093f4 X-Archives-Hash: 0b682ee183618f97ea85d825afed2d1f commit: f8c284bd0c13b1666a6e8c29b07a05d4c3e077c7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Mar 6 11:09:09 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Mar 6 11:09:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c284bd sci-libs/clapack: https, cmake.eclass, EAPI-7 bump Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/clapack/clapack-3.2.1-r8.ebuild | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/sci-libs/clapack/clapack-3.2.1-r8.ebuild b/sci-libs/clapack/clapack-3.2.1-r8.ebuild index ac9a2c73f97..30384df4db4 100644 --- a/sci-libs/clapack/clapack-3.2.1-r8.ebuild +++ b/sci-libs/clapack/clapack-3.2.1-r8.ebuild @@ -1,25 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit flag-o-matic cmake-utils +inherit flag-o-matic cmake DESCRIPTION="f2c'ed version of LAPACK" -HOMEPAGE="http://www.netlib.org/clapack/" -SRC_URI="http://www.netlib.org/${PN}/${P}-CMAKE.tgz" +HOMEPAGE="https://www.netlib.org/clapack/" +SRC_URI="https://www.netlib.org/${PN}/${P}-CMAKE.tgz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux" IUSE="test" +# bug 433806 +RESTRICT="test" + RDEPEND=" >=dev-libs/libf2c-20090407-r1 virtual/blas" DEPEND="${RDEPEND}" -S=${WORKDIR}/${P}-CMAKE +S="${WORKDIR}"/${P}-CMAKE PATCHES=( "${FILESDIR}/${P}-fix_include_file.patch" @@ -28,18 +31,17 @@ PATCHES=( "${FILESDIR}/${P}-findblas-r7.patch" ) -# bug 433806 -RESTRICT="test" - src_prepare() { + cmake_src_prepare rm INCLUDE/f2c.h F2CLIBS/libf2c/f2c.h || die - cmake-utils_src_prepare } src_configure() { filter-flags -ftree-vectorize # causes an internal compiler error with gcc-4.6.2 - local mycmakeargs=( -DENABLE_TESTS=$(usex test) ) - cmake-utils_src_configure + local mycmakeargs=( + -DENABLE_TESTS=$(usex test) + ) + cmake_src_configure }