From 6e5f8eb2e78cc5913d85423f20caf49d519af52e Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 13 Jul 2021 15:36:01 +0200 Subject: [PATCH] sys-cluster/launchmon: initial import Signed-off-by: Alessandro Barbieri --- sys-cluster/launchmon/Manifest | 1 + .../launchmon-1.0.2_p20210430.ebuild | 53 +++++++++++++++++++ sys-cluster/launchmon/metadata.xml | 19 +++++++ 3 files changed, 73 insertions(+) create mode 100644 sys-cluster/launchmon/Manifest create mode 100644 sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild create mode 100644 sys-cluster/launchmon/metadata.xml diff --git a/sys-cluster/launchmon/Manifest b/sys-cluster/launchmon/Manifest new file mode 100644 index 0000000000..71d291fb12 --- /dev/null +++ b/sys-cluster/launchmon/Manifest @@ -0,0 +1 @@ +DIST launchmon-1.0.2_p20210430.tar.gz 303361 BLAKE2B e1aaed16fee557a33492bd7df2fa95fc9c42e76a2b246ae37522ca7ac36b244acb63ca74c67f91b33c542dbe9628cc67f163294b47595ab4aee4156aad22d55c SHA512 11e158d0a49b369355275117673f9810a65b79aa75d481c6103ca5e49a3b674e2d8cb3b04ec0ffa956cb9f08a6148a31ba859c5f0f8eb38a813ae0cdacdde347 diff --git a/sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild b/sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild new file mode 100644 index 0000000000..211de8df8e --- /dev/null +++ b/sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild @@ -0,0 +1,53 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +COMMIT="98ab769c53563f47c4319ce3c98ac394b4870bac" +MYPV="$(ver_cut 1-3)" + +inherit autotools flag-o-matic + +DESCRIPTION="software infrastructure that enables HPC run-time tools to co-locate tool daemons with a parallel job" +HOMEPAGE="https://github.com/LLNL/LaunchMON" +SRC_URI="https://github.com/LLNL/LaunchMON/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/LaunchMON-${COMMIT}" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+munge tracing-cost" + +RDEPEND=" + dev-libs/boost:= + dev-libs/libgcrypt + dev-libs/libgpg-error + virtual/libelf + + munge? ( sys-auth/munge ) +" +DEPEND="${RDEPEND}" + +src_prepare() { + default + sed -e "s|m4_esyscmd.*|${MYPV})|g" -i configure.ac || die + eautoreconf +} + +src_configure() { + append-cxxflags "-std=c++14" + local sec="none" + use munge && sec="munge" + local myconf=( + --enable-shared + --enable-sec-${sec} + $(use_enable tracing-cost) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + mv "${ED}/usr/etc" "${ED}" || die +} diff --git a/sys-cluster/launchmon/metadata.xml b/sys-cluster/launchmon/metadata.xml new file mode 100644 index 0000000000..065d9f33fa --- /dev/null +++ b/sys-cluster/launchmon/metadata.xml @@ -0,0 +1,19 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + +LaunchMON is a software infrastructure that enables HPC run-time tools to co-locate tool daemons with a parallel job. Its API allows a tool to identify all the remote processes of a job and to scalably launch daemons into the relevant nodes. + + + enable munge for connection authentication + enable tracing cost measuring codes + + + https://github.com/LLNL/LaunchMON/issues + LLNL/LaunchMON + +