public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/launchmon/
@ 2021-07-13 15:36 Alessandro Barbieri
  0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Barbieri @ 2021-07-13 15:36 UTC (permalink / raw
  To: gentoo-commits

commit:     6e5f8eb2e78cc5913d85423f20caf49d519af52e
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Jul 13 13:36:01 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> 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 <lssndrbarbieri <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>lssndrbarbieri@gmail.com</email>
+		<name>Alessandro Barbieri</name>
+	</maintainer>
+	<longdescription lang="en">
+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.
+	</longdescription>
+	<use>
+		<flag name="munge">enable munge for connection authentication</flag>
+		<flag name="tracing-cost">enable tracing cost measuring codes</flag>
+	</use>
+	<upstream>
+		<bugs-to>https://github.com/LLNL/LaunchMON/issues</bugs-to>
+		<remote-id type="github">LLNL/LaunchMON</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/launchmon/
@ 2021-07-24 15:58 Andrew Ammerlaan
  2021-07-24 15:53 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-07-24 15:58 UTC (permalink / raw
  To: gentoo-commits

commit:     647a3fe8c3949c3d847458970b7a9cb5107c861d
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 15:53:03 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 15:53:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=647a3fe8

sys-cluster/launchmon: shorten description

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild b/sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild
index e957c101e..0f1da7dba 100644
--- a/sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild
+++ b/sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild
@@ -8,7 +8,7 @@ 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"
+DESCRIPTION="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}"


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/launchmon/
@ 2021-07-13 15:36 Alessandro Barbieri
  0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Barbieri @ 2021-07-13 15:36 UTC (permalink / raw
  To: gentoo-commits

commit:     a94f61c0592f4e53ef40373a63c82b6ac34fc005
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Jul 13 15:27:59 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue Jul 13 15:27:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a94f61c0

sys-cluster/launchmon: remove static libs

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 ...chmon-1.0.2_p20210430.ebuild => launchmon-1.0.2_p20210430-r1.ebuild} | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild b/sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild
similarity index 92%
rename from sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild
rename to sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild
index 211de8df8..e957c101e 100644
--- a/sys-cluster/launchmon/launchmon-1.0.2_p20210430.ebuild
+++ b/sys-cluster/launchmon/launchmon-1.0.2_p20210430-r1.ebuild
@@ -50,4 +50,6 @@ src_configure() {
 src_install() {
 	default
 	mv "${ED}/usr/etc" "${ED}" || die
+	find "${ED}" -name '*.la' -delete || die
+	find "${ED}" -name '*.a' -delete || die
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-07-24 15:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-13 15:36 [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/launchmon/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2021-07-24 15:58 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-07-24 15:53 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-07-13 15:36 Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox