Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/opencoarrays/
Date: Mon, 02 May 2022 07:17:26
Message-Id: 1651363373.23e33ff78a71a6927873f672db03340187716b78.flow@gentoo
1 commit: 23e33ff78a71a6927873f672db03340187716b78
2 Author: Sergey Torokhov <torokhov-s-a <AT> yandex <DOT> ru>
3 AuthorDate: Sat Apr 30 23:57:12 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 00:02:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=23e33ff7
7
8 sys-cluster/opencoarrays: 2.9.3 version bump
9
10 Signed-off-by: Sergey Torokhov <torokhov-s-a <AT> yandex.ru>
11
12 sys-cluster/opencoarrays/Manifest | 1 +
13 sys-cluster/opencoarrays/opencoarrays-2.9.3.ebuild | 43 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/sys-cluster/opencoarrays/Manifest b/sys-cluster/opencoarrays/Manifest
17 index 00141e62c..54020f5e5 100644
18 --- a/sys-cluster/opencoarrays/Manifest
19 +++ b/sys-cluster/opencoarrays/Manifest
20 @@ -1 +1,2 @@
21 DIST OpenCoarrays-2.9.2.tar.gz 324933 BLAKE2B 36f4273aa5241b6bb48459f2fc3c68103382406fc733bb3b0b3eca698f94df9623d6364c227143d26b4c7fc6abcaa91e1730c6bbc19b4a662bdb59259bef7dd6 SHA512 4588d665a65fe5715bd283949ff2f65277e4379466a935e92512c34e92c9bdcdd4809ae5422d3c9898e6ecfb534ea9cf4467666acf3fda9b22011528a055f96f
22 +DIST OpenCoarrays-2.9.3.tar.gz 326779 BLAKE2B 3ef2262f1047db596bbebf96f5f9b1770056eede05a358dc307fbff290e319827fb7894bf841d77fafc195a865b4acb09efb4da0becca936a5a89131c37245b8 SHA512 4e313e3cb6dcdf309dbc37b96756d69812b2867f4cd3325439746b0f6059c29ff6160a538704c872bb6f55c63be3c4c0ca04294946ac8abc5c36cfc1cdf7b460
23
24 diff --git a/sys-cluster/opencoarrays/opencoarrays-2.9.3.ebuild b/sys-cluster/opencoarrays/opencoarrays-2.9.3.ebuild
25 new file mode 100644
26 index 000000000..bc7b573a7
27 --- /dev/null
28 +++ b/sys-cluster/opencoarrays/opencoarrays-2.9.3.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +CMAKE_MAKEFILE_GENERATOR=emake
36 +FORTRAN_STANDARD="2003"
37 +
38 +inherit cmake fortran-2
39 +
40 +MY_PN="OpenCoarrays"
41 +
42 +DESCRIPTION="A parallel application binary interface for Fortran 2018 compilers"
43 +HOMEPAGE="http://www.opencoarrays.org/"
44 +SRC_URI="https://github.com/sourceryinstitute/${MY_PN}/releases/download/${PV}/${MY_PN}-${PV}.tar.gz"
45 +
46 +S="${WORKDIR}/${MY_PN}-${PV}"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +# Tests fail with FEATURES="network-sandbox" for most versions of openmpi and mpich it with error:
53 +# "No network interfaces were found for out-of-band communications.
54 +# We require at least one available network for out-of-band messaging."
55 +IUSE="test"
56 +PROPERTIES="test_network"
57 +RESTRICT="!test? ( test )"
58 +
59 +RDEPEND="
60 + || ( >=sys-cluster/openmpi-4.1.2[fortran] >=sys-cluster/mpich-3.4.3[fortran] )
61 +"
62 +DEPEND="
63 + ${RDEPEND}
64 +"
65 +
66 +pkg_setup() {
67 + fortran-2_pkg_setup
68 +}
69 +
70 +src_test() {
71 + cmake_build test
72 +}