sys-cluster/opencoarrays: new package. 2.9.2 version

Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru>
This commit is contained in:
Sergey Torokhov
2021-10-13 23:51:49 +03:00
parent 727abb964d
commit 0fb67176fa
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST opencoarrays-2.9.2.tar.gz 325027 BLAKE2B 61a9dd790fd04a6330418ebc78f105c768cf1cd4fdea4991219f94878ca1c119e598a4e5246e15fe43cca5f6c3b4af709f4a09831d3b27035b8932db531830d5 SHA512 3c0038607c63bb8a7db52a54e4c207c857e2f2c06d315454d8b6e4d463b1343f69cba5bed3d091a3792eff2288ba0a442f7b762a49b7dc6362a27025bf6ca7be

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>torokhov-s-a@yandex.ru</email>
<name>Sergey Torokhov</name>
</maintainer>
<upstream>
<remote-id type="github">sourceryinstitute/OpenCoarrays</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CMAKE_MAKEFILE_GENERATOR=emake
FORTRAN_STANDARD="2003"
inherit cmake fortran-2
MY_PN="OpenCoarrays"
DESCRIPTION="A parallel application binary interface for Fortran 2018 compilers"
HOMEPAGE="http://www.opencoarrays.org/"
SRC_URI="https://github.com/sourceryinstitute/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
virtual/mpi[fortran]
"
DEPEND="
${RDEPEND}
"
pkg_setup() {
fortran-2_pkg_setup
}
src_test() {
cmake_build test
}