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 616231382C5 for ; Sat, 30 Jan 2021 11:50:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89666E0978; Sat, 30 Jan 2021 11:50:13 +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 13358E0978 for ; Sat, 30 Jan 2021 11:50:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A604F340F42 for ; Sat, 30 Jan 2021 11:50:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03E954C for ; Sat, 30 Jan 2021 11:50:10 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1612007401.dee3f453d0b812ef2c1b4f0808971718b9ef72c0.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pfft/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/pfft/pfft-1.0.7_alpha.ebuild sci-libs/pfft/pfft-1.0.8_alpha.ebuild sci-libs/pfft/pfft-9999.ebuild X-VCS-Directories: sci-libs/pfft/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: dee3f453d0b812ef2c1b4f0808971718b9ef72c0 X-VCS-Branch: master Date: Sat, 30 Jan 2021 11:50:10 +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: 40e0f7d4-56c0-48da-856b-ecb574074c44 X-Archives-Hash: 7be430973cdb8f8c7c1384b60f6acdce commit: dee3f453d0b812ef2c1b4f0808971718b9ef72c0 Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Jan 30 11:50:01 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Jan 30 11:50:01 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=dee3f453 sci-libs/pfft: version bump, EAPI bump Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> ...-1.0.7_alpha.ebuild => pfft-1.0.8_alpha.ebuild} | 23 ++++++++------------ sci-libs/pfft/pfft-9999.ebuild | 25 +++++++++------------- 2 files changed, 19 insertions(+), 29 deletions(-) diff --git a/sci-libs/pfft/pfft-1.0.7_alpha.ebuild b/sci-libs/pfft/pfft-1.0.8_alpha.ebuild similarity index 61% rename from sci-libs/pfft/pfft-1.0.7_alpha.ebuild rename to sci-libs/pfft/pfft-1.0.8_alpha.ebuild index 612564e0b..e71ab975f 100644 --- a/sci-libs/pfft/pfft-1.0.7_alpha.ebuild +++ b/sci-libs/pfft/pfft-1.0.8_alpha.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit autotools-utils fortran-2 multibuild +inherit fortran-2 multibuild DESCRIPTION="Parallel 3d FFT" HOMEPAGE="https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software.php.en" @@ -26,28 +26,23 @@ IUSE="static-libs" RDEPEND=" sci-libs/fftw:3.0[mpi,fortran] virtual/mpi - " +" -DEPEND=" - ${RDEPEND} - " +DEPEND="${RDEPEND}" src_configure() { MULTIBUILD_VARIANTS=( single double long-double ) my_src_configure() { - local myeconfargs=( - $([[ ${MULTIBUILD_VARIANT} != double ]] && echo "--enable-${MULTIBUILD_VARIANT}") - ) - autotools-utils_src_configure + econf $([[ ${MULTIBUILD_VARIANT} != double ]] && echo "--enable-${MULTIBUILD_VARIANT}") } - multibuild_parallel_foreach_variant my_src_configure + multibuild_foreach_variant my_src_configure } src_compile() { - multibuild_foreach_variant autotools-utils_src_compile + multibuild_foreach_variant emake } src_install() { - multibuild_parallel_foreach_variant autotools-utils_src_install + multibuild_foreach_variant emake install DESTDIR="${D}" } diff --git a/sci-libs/pfft/pfft-9999.ebuild b/sci-libs/pfft/pfft-9999.ebuild index 1ad55311a..e71ab975f 100644 --- a/sci-libs/pfft/pfft-9999.ebuild +++ b/sci-libs/pfft/pfft-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit autotools-utils fortran-2 multibuild +inherit fortran-2 multibuild DESCRIPTION="Parallel 3d FFT" HOMEPAGE="https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software.php.en" @@ -15,7 +15,7 @@ if [[ $PV = *9999 ]] ; then AUTOTOOLS_AUTORECONF=1 else SRC_URI="https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software/${P//_/-}.tar.gz" - KEYWORDS="~x86 ~amd64" + KEYWORDS="~amd64 ~x86" S="${WORKDIR}/${P//_/-}" fi @@ -26,28 +26,23 @@ IUSE="static-libs" RDEPEND=" sci-libs/fftw:3.0[mpi,fortran] virtual/mpi - " +" -DEPEND=" - ${RDEPEND} - " +DEPEND="${RDEPEND}" src_configure() { MULTIBUILD_VARIANTS=( single double long-double ) my_src_configure() { - local myeconfargs=( - $([[ ${MULTIBUILD_VARIANT} != double ]] && echo "--enable-${MULTIBUILD_VARIANT}") - ) - autotools-utils_src_configure + econf $([[ ${MULTIBUILD_VARIANT} != double ]] && echo "--enable-${MULTIBUILD_VARIANT}") } - multibuild_parallel_foreach_variant my_src_configure + multibuild_foreach_variant my_src_configure } src_compile() { - multibuild_foreach_variant autotools-utils_src_compile + multibuild_foreach_variant emake } src_install() { - multibuild_parallel_foreach_variant autotools-utils_src_install + multibuild_foreach_variant emake install DESTDIR="${D}" }