From a01ebd3c346926536bfa0243607a19607da8475e Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Sun, 23 Feb 2020 04:48:59 +0100 Subject: [PATCH] sys-cluster/shuffile: new package Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alessandro Barbieri --- sys-cluster/shuffile/Manifest | 1 + sys-cluster/shuffile/metadata.xml | 13 ++++++++ sys-cluster/shuffile/shuffile-0.0.3.ebuild | 39 ++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 sys-cluster/shuffile/Manifest create mode 100644 sys-cluster/shuffile/metadata.xml create mode 100644 sys-cluster/shuffile/shuffile-0.0.3.ebuild diff --git a/sys-cluster/shuffile/Manifest b/sys-cluster/shuffile/Manifest new file mode 100644 index 0000000000..999e3b0bb3 --- /dev/null +++ b/sys-cluster/shuffile/Manifest @@ -0,0 +1 @@ +DIST shuffile-0.0.3.tar.gz 20069 BLAKE2B cb40b12334e7ec2f70140d6d2cb11f77cdb72d381dc5ecf4b335c4324f0e6c777113546b91edf290767c6daa5d0e7641b4849cad42230688a799e1a4359f4dfb SHA512 e5ca8b7ab1542fda0c84d92bba527911846cdd95cbe86d4aa0075abacffc369485ad7187bc7e0ee2edcd69ccbc4ef2abcd0de75be497c0cdc3d6177563067875 diff --git a/sys-cluster/shuffile/metadata.xml b/sys-cluster/shuffile/metadata.xml new file mode 100644 index 0000000000..11f798ae76 --- /dev/null +++ b/sys-cluster/shuffile/metadata.xml @@ -0,0 +1,13 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + ECP-VeloC/shuffile + + This module lets one associate a set of files with a process name. Currently, the name is implied to be the rank within MPI_COMM_WORLD. In the event that a set of distributed processes are moved, for example when restarting an MPI job, functions will migrate files from their original locations to the new locations where the processes are running. + + diff --git a/sys-cluster/shuffile/shuffile-0.0.3.ebuild b/sys-cluster/shuffile/shuffile-0.0.3.ebuild new file mode 100644 index 0000000000..5054b99ccf --- /dev/null +++ b/sys-cluster/shuffile/shuffile-0.0.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit cmake-utils + +DESCRIPTION="SHUFFILE Shuffle files between processes" +HOMEPAGE="https://github.com/ECP-VeloC/shuffile" +SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="mpi test" +RESTRICT="!test? ( test )" + +RDEPEND=" + mpi? ( virtual/mpi ) + sys-libs/zlib + >=sys-cluster/KVTree-1.0.2 +" +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-util/cmake-2.8 +" +src_prepare() { + #do not build static library + sed -i '/shuffile-static/d' src/CMakeLists.txt || die + default + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DMPI="$(usex mpi "" OFF)" + ) + cmake-utils_src_configure +}