diff options
author | David Seifert <soap@gentoo.org> | 2022-01-29 21:26:13 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-01-29 21:26:13 +0100 |
commit | 59165595cdbe8ec51da9700b5bb0103898a1f3c0 (patch) | |
tree | 927b4fd8c48f973e364de35831dda9dbd473e56d /sys-cluster/nullmpi | |
parent | sys-cluster/native-mpi: update EAPI 6 -> 8 (diff) | |
download | gentoo-59165595cdbe8ec51da9700b5bb0103898a1f3c0.tar.gz gentoo-59165595cdbe8ec51da9700b5bb0103898a1f3c0.tar.bz2 gentoo-59165595cdbe8ec51da9700b5bb0103898a1f3c0.zip |
sys-cluster/nullmpi: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-cluster/nullmpi')
-rw-r--r-- | sys-cluster/nullmpi/nullmpi-0.7-r1.ebuild (renamed from sys-cluster/nullmpi/nullmpi-0.7.ebuild) | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sys-cluster/nullmpi/nullmpi-0.7.ebuild b/sys-cluster/nullmpi/nullmpi-0.7-r1.ebuild index 1ad6a5790d63..91d01e345ebd 100644 --- a/sys-cluster/nullmpi/nullmpi-0.7.ebuild +++ b/sys-cluster/nullmpi/nullmpi-0.7-r1.ebuild @@ -1,18 +1,17 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools multilib-minimal DESCRIPTION="MPI substitute library" HOMEPAGE="http://wissrech.ins.uni-bonn.de/research/projects/nullmpi/" -SRC_URI="http://wissrech.ins.uni-bonn.de/research/projects/nullmpi/${PF}.tar.gz" +SRC_URI="http://wissrech.ins.uni-bonn.de/research/projects/nullmpi/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="~amd64 ~riscv ~x86" -IUSE="static-libs" RDEPEND=" !sys-cluster/openmpi @@ -20,7 +19,6 @@ RDEPEND=" !sys-cluster/mpich2 !sys-cluster/mvapich2 !sys-cluster/native-mpi" - DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}/${P}-libtool.patch" ) @@ -35,12 +33,12 @@ src_prepare() { } multilib_src_configure() { - ECONF_SOURCE="${S}" econf --enable-shared $(use_enable static-libs static) + ECONF_SOURCE="${S}" econf } multilib_src_install_all() { einstalldocs - #no deps + # no deps find "${ED}" -name '*.la' -delete || die } |