public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alessandro Barbieri" <lssndrbarbieri@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/temanejo/
Date: Sat, 14 Aug 2021 23:53:43 +0000 (UTC)	[thread overview]
Message-ID: <1628985220.4118cd95afcf298537180ef2509f8853a1c8eead.Alessandro-Barbieri@gentoo> (raw)

commit:     4118cd95afcf298537180ef2509f8853a1c8eead
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Aug 14 23:50:13 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Aug 14 23:53:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4118cd95

sys-cluster/temanejo: initial import

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

 sys-cluster/temanejo/Manifest            |  1 +
 sys-cluster/temanejo/metadata.xml        | 19 ++++++++
 sys-cluster/temanejo/temanejo-1.3.ebuild | 79 ++++++++++++++++++++++++++++++++
 3 files changed, 99 insertions(+)

diff --git a/sys-cluster/temanejo/Manifest b/sys-cluster/temanejo/Manifest
new file mode 100644
index 000000000..61ac9a380
--- /dev/null
+++ b/sys-cluster/temanejo/Manifest
@@ -0,0 +1 @@
+DIST temanejo-1.3.tar.gz 2424254 BLAKE2B 40c29257f6701906265c23fa30ba9a33400855242195885bae1064f6d4b668e0e6e266a896fea8b9e1c2250dcf14be5a5dce29842eabd7c4a4e6de19be9473e9 SHA512 6792f43927d001c2431a51d198dd27474a5493a6ac2f7eb384c8f6dd90869af624582aafdd664a683f285fca191ae51f97d535d67577de70ab089fc769b4b5db

diff --git a/sys-cluster/temanejo/metadata.xml b/sys-cluster/temanejo/metadata.xml
new file mode 100644
index 000000000..ad2abe5a3
--- /dev/null
+++ b/sys-cluster/temanejo/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">
+Temanejo started as a graphical debugger for the task-parallel, data-dependency-driven programming model SMPSs. The foremost goal was to display the task-dependency graph of SMPSs applications, and to allow simple interaction with the SMPSs runtime system in order to control some aspects of the parallel execution of an application.
+Since then, we aim at supporting any programming model that can meaningfully define the concepts of task and dependencies between those, respectively. Notably, this includes OpenMP and MPI, i.e. the working horses in high-performance computing. Today, Temanejo is able to assist debugging (to varying extent) for the programming models SMPSs, OmpSs, StarPU, PaRSEC and OpenMP.
+Temanejo actually is only the graphical frontend. Most of the real work is done by a library called Ayudame which is used to receive information, so called events, from supporting runtime systems, and to excert control over a runtime system by issuing request to it.
+	</longdescription>
+	<use>
+		<flag name="ompss">enable ompss plugin</flag>
+		<flag name="ompt">Acquire debugging events through OMPT (OpenMP, OmpSs)</flag>
+		<flag name="socket">Enable connection to socket</flag>
+		<flag name="stdout">Enable output to stdout</flag>
+	</use>
+</pkgmetadata>

diff --git a/sys-cluster/temanejo/temanejo-1.3.ebuild b/sys-cluster/temanejo/temanejo-1.3.ebuild
new file mode 100644
index 000000000..c20b84ae1
--- /dev/null
+++ b/sys-cluster/temanejo/temanejo-1.3.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+#temanejo doesn't support python3
+#PYTHON_COMPAT=( python3_{8..10} )
+
+inherit autotools #python-single-r1
+
+DESCRIPTION="a debugger for task-parallel programming"
+HOMEPAGE="http://www.hlrs.de/solutions-services/service-portfolio/programming/hpc-development-tools/temanejo"
+SRC_URI="http://fs.hlrs.de/projects/temanejo/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc ompss +ompt +socket stdout"
+
+REQUIRED_USE=""
+#	${PYTHON_REQUIRED_USE}
+
+DEPEND=""
+RDEPEND="
+	${DEPEND}
+"
+#	${PYTHON_DEPS}
+#	$(python_gen_cond_dep '
+#		dev-python/networkx[${PYTHON_USEDEP}]
+#		dev-python/pycairo[${PYTHON_USEDEP}]
+#		dev-python/pygobject[${PYTHON_USEDEP}]
+#		dev-python/pygtk[${PYTHON_USEDEP}]
+#	')
+
+BDEPEND="doc? ( dev-texlive/texlive-latex )"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myconf=(
+		--disable-static
+		--enable-ayudame
+		--enable-modulefile
+		--disable-temanejo
+		$(use_enable doc)
+		$(use_enable ompt)
+	)
+
+	if use ompss; then
+		myconf+=( "--with-ompss=${EPREFIX}/usr" )
+	else
+		myconf+=( "--without-ompss" )
+	fi
+	if use socket; then
+		myconf+=( "--enable-socket=yes" )
+	else
+		myconf+=( "--enable-socket=no" )
+	fi
+	if use stdout; then
+		myconf+=( "--enable-stdout=yes" )
+	else
+		myconf+=( "--enable-stdout=no" )
+	fi
+
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	mkdir -p "${ED}/usr/share/${PN}" || die
+	mv "${ED}/usr/modulefile" "${ED}/usr/share/${PN}/" || die
+	if use doc; then
+		mv "${ED}/usr/share/doc/ayudame-library" "${ED}/usr/share/doc/${PF}/" || die
+	fi
+	find "${D}" -name '*.la' -delete || die
+}


             reply	other threads:[~2021-08-15 21:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-14 23:53 Alessandro Barbieri [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-02-28  7:06 [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/temanejo/ Joe Kappus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1628985220.4118cd95afcf298537180ef2509f8853a1c8eead.Alessandro-Barbieri@gentoo \
    --to=lssndrbarbieri@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox