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 F174C158086 for ; Tue, 12 Oct 2021 22:23:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F31EDE086C; Tue, 12 Oct 2021 22:23:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C97BEE086C for ; Tue, 12 Oct 2021 22:23:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4293B343424 for ; Tue, 12 Oct 2021 22:23:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABEC9150 for ; Tue, 12 Oct 2021 22:23:47 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1634077379.b45a40c4bb99747a5d1df39f387fb15af0863a7e.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/superlu_mt/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/superlu_mt/superlu_mt-3.1.ebuild X-VCS-Directories: sci-libs/superlu_mt/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: b45a40c4bb99747a5d1df39f387fb15af0863a7e X-VCS-Branch: master Date: Tue, 12 Oct 2021 22:23:47 +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: ef41b033-6065-42a4-8d25-2aee5e357eba X-Archives-Hash: 505947527fb41c96e11e1ed012158bc0 commit: b45a40c4bb99747a5d1df39f387fb15af0863a7e Author: Marek Szuba gentoo org> AuthorDate: Tue Oct 12 22:21:50 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Oct 12 22:22:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b45a40c4 sci-libs/superlu_mt: update EAPI 6 -> 8 Signed-off-by: Marek Szuba gentoo.org> sci-libs/superlu_mt/superlu_mt-3.1.ebuild | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/sci-libs/superlu_mt/superlu_mt-3.1.ebuild b/sci-libs/superlu_mt/superlu_mt-3.1.ebuild index dd832bde77b..f631900a16d 100644 --- a/sci-libs/superlu_mt/superlu_mt-3.1.ebuild +++ b/sci-libs/superlu_mt/superlu_mt-3.1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit toolchain-funcs versionator +inherit toolchain-funcs -MYPN=SuperLU_MT -SOVERSION=$(get_major_version) +MY_PN=SuperLU_MT +SOVERSION=$(ver_cut 1) DESCRIPTION="Multithreaded sparse LU factorization library" HOMEPAGE="https://portal.nersc.gov/project/sparse/superlu/" @@ -20,13 +20,13 @@ RESTRICT="!test? ( test )" REQUIRED_USE="|| ( openmp threads )" RDEPEND="virtual/blas" -DEPEND="${RDEPEND} - virtual/pkgconfig +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig test? ( app-shells/tcsh )" -S="${WORKDIR}/${MYPN}_${PV}" +S="${WORKDIR}/${MY_PN}_${PV}" -PATCHES=( "${FILESDIR}"/${P}-duplicate-symbols.patch ) +PATCHES=( "${FILESDIR}"/${PN}-3.1-duplicate-symbols.patch ) pkg_setup() { if use openmp && ! use threads; then @@ -71,10 +71,10 @@ src_prepare() { src_compile() { # shared library emake PIC="-fPIC" \ - ARCH="echo" \ - ARCHFLAGS="" \ - RANLIB="echo" \ - superlulib + ARCH="echo" \ + ARCHFLAGS="" \ + RANLIB="echo" \ + superlulib $(tc-getCC) ${LDFLAGS} ${LDTHREADS} -shared -Wl,-soname=${SONAME} SRC/*.o \ $($(tc-getPKG_CONFIG) --libs blas) -lm -o lib/${SONAME} || die ln -s ${SONAME} lib/libsuperlu_mt.so || die @@ -97,7 +97,7 @@ src_install() { dodoc README use doc && dodoc DOC/ug.pdf if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r EXAMPLE/* make.inc + docinto /examples + dodoc -r EXAMPLE/* make.inc fi }