From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15A08139347 for ; Tue, 13 Jul 2021 15:36:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAC20E08CE; Tue, 13 Jul 2021 15:36:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A45B6E08CE for ; Tue, 13 Jul 2021 15:36:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F73734095A for ; Tue, 13 Jul 2021 15:36:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DFC77D2 for ; Tue, 13 Jul 2021 15:36:31 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1626183361.6e5f8eb2e78cc5913d85423f20caf49d519af52e.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/launchmon/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/launchmon/Manifest sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild sys-cluster/launchmon/metadata.xml X-VCS-Directories: sys-cluster/launchmon/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 6e5f8eb2e78cc5913d85423f20caf49d519af52e X-VCS-Branch: dev Date: Tue, 13 Jul 2021 15:36:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ba5f899b-0c7a-4b7c-8620-98e4793c058a X-Archives-Hash: bc7c957515ee2fe9f4b93ec85762fc76 commit: 6e5f8eb2e78cc5913d85423f20caf49d519af52e Author: Alessandro Barbieri gmail com> AuthorDate: Tue Jul 13 13:36:01 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Tue Jul 13 13:36:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e5f8eb2 sys-cluster/launchmon: initial import Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/launchmon/Manifest | 1 + .../launchmon/launchmon-1.0.2_p20210430.ebuild | 53 ++++++++++++++++++++++ sys-cluster/launchmon/metadata.xml | 19 ++++++++ 3 files changed, 73 insertions(+) diff --git a/sys-cluster/launchmon/Manifest b/sys-cluster/launchmon/Manifest new file mode 100644 index 000000000..71d291fb1 --- /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 000000000..211de8df8 --- /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 000000000..065d9f33f --- /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 + +