Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nullmpi/
Date: Sat, 29 Jan 2022 20:26:27
Message-Id: 1643487973.59165595cdbe8ec51da9700b5bb0103898a1f3c0.soap@gentoo
1 commit: 59165595cdbe8ec51da9700b5bb0103898a1f3c0
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 20:26:13 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 20:26:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59165595
7
8 sys-cluster/nullmpi: update EAPI 6 -> 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 .../nullmpi/{nullmpi-0.7.ebuild => nullmpi-0.7-r1.ebuild} | 12 +++++-------
13 1 file changed, 5 insertions(+), 7 deletions(-)
14
15 diff --git a/sys-cluster/nullmpi/nullmpi-0.7.ebuild b/sys-cluster/nullmpi/nullmpi-0.7-r1.ebuild
16 similarity index 81%
17 rename from sys-cluster/nullmpi/nullmpi-0.7.ebuild
18 rename to sys-cluster/nullmpi/nullmpi-0.7-r1.ebuild
19 index 1ad6a5790d63..91d01e345ebd 100644
20 --- a/sys-cluster/nullmpi/nullmpi-0.7.ebuild
21 +++ b/sys-cluster/nullmpi/nullmpi-0.7-r1.ebuild
22 @@ -1,18 +1,17 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 +# Copyright 1999-2022 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=6
28 +EAPI=8
29
30 inherit autotools multilib-minimal
31
32 DESCRIPTION="MPI substitute library"
33 HOMEPAGE="http://wissrech.ins.uni-bonn.de/research/projects/nullmpi/"
34 -SRC_URI="http://wissrech.ins.uni-bonn.de/research/projects/nullmpi/${PF}.tar.gz"
35 +SRC_URI="http://wissrech.ins.uni-bonn.de/research/projects/nullmpi/${P}.tar.gz"
36
37 LICENSE="GPL-1"
38 SLOT="0"
39 KEYWORDS="~amd64 ~riscv ~x86"
40 -IUSE="static-libs"
41
42 RDEPEND="
43 !sys-cluster/openmpi
44 @@ -20,7 +19,6 @@ RDEPEND="
45 !sys-cluster/mpich2
46 !sys-cluster/mvapich2
47 !sys-cluster/native-mpi"
48 -
49 DEPEND="${RDEPEND}"
50
51 PATCHES=( "${FILESDIR}/${P}-libtool.patch" )
52 @@ -35,12 +33,12 @@ src_prepare() {
53 }
54
55 multilib_src_configure() {
56 - ECONF_SOURCE="${S}" econf --enable-shared $(use_enable static-libs static)
57 + ECONF_SOURCE="${S}" econf
58 }
59
60 multilib_src_install_all() {
61 einstalldocs
62
63 - #no deps
64 + # no deps
65 find "${ED}" -name '*.la' -delete || die
66 }