Gentoo Archives: gentoo-commits

From: Sergey Torokhov <torokhov-s-a@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/opencoarrays/
Date: Sat, 16 Oct 2021 13:56:51
Message-Id: 1634392504.85fb7fb3d26c7e1dad14bf92b8535c2d9cca0186.SergeyTorokhov@gentoo
1 commit: 85fb7fb3d26c7e1dad14bf92b8535c2d9cca0186
2 Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
3 AuthorDate: Sat Oct 16 13:55:04 2021 +0000
4 Commit: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
5 CommitDate: Sat Oct 16 13:55:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=85fb7fb3
7
8 sys-cluster/opencoarrays: Disable tests. Replace virtual/mpi with compat impl.
9
10 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
11
12 sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild | 17 +++++++++++------
13 1 file changed, 11 insertions(+), 6 deletions(-)
14
15 diff --git a/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild b/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild
16 index 74c8ae781..ab7092849 100644
17 --- a/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild
18 +++ b/sys-cluster/opencoarrays/opencoarrays-2.9.2.ebuild
19 @@ -19,11 +19,16 @@ S="${WORKDIR}/${MY_PN}-${PV}"
20 LICENSE="BSD"
21 SLOT="0"
22 KEYWORDS="~amd64 ~x86"
23 -IUSE="test"
24 -RESTRICT="!test? ( test )"
25 +
26 +#! Disable tests due for most versions of openmpi and mpich failed it with error:
27 +#! "No network interfaces were found for out-of-band communications.
28 +#! We require at least one available network for out-of-band messaging."
29 +#! But tests run successfully with FEATURES="-network-sandbox"
30 +#IUSE="test"
31 +#RESTRICT="!test? ( test )"
32
33 RDEPEND="
34 - virtual/mpi[fortran]
35 + || ( >=sys-cluster/openmpi-1.10.7[fortran] >=sys-cluster/mpich-3.3[fortran] )
36 "
37 DEPEND="
38 ${RDEPEND}
39 @@ -33,6 +38,6 @@ pkg_setup() {
40 fortran-2_pkg_setup
41 }
42
43 -src_test() {
44 - cmake_build test
45 -}
46 +#src_test() {
47 +# cmake_build test
48 +#}