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 5B1CC139337 for ; Sun, 25 Jul 2021 23:21:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5771E0D5D; Sun, 25 Jul 2021 23:21:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 88E51E0D5D for ; Sun, 25 Jul 2021 23:21:54 +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 58059335D52 for ; Sun, 25 Jul 2021 23:21:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4DBE4A2 for ; Sun, 25 Jul 2021 23:21:51 +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: <1627255238.57144bcf8538ee98ed6d36caad7dbd96919ea7ad.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/otf2/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/otf2/Manifest sys-cluster/otf2/metadata.xml sys-cluster/otf2/otf2-2.3.ebuild X-VCS-Directories: sys-cluster/otf2/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 57144bcf8538ee98ed6d36caad7dbd96919ea7ad X-VCS-Branch: dev Date: Sun, 25 Jul 2021 23:21:51 +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: 347f40b6-1e40-49fb-818c-fdcdfdaf2e6a X-Archives-Hash: 0b5dc493ecc9573de293d31994842776 commit: 57144bcf8538ee98ed6d36caad7dbd96919ea7ad Author: Alessandro Barbieri gmail com> AuthorDate: Sun Jul 25 23:20:38 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun Jul 25 23:20:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57144bcf sys-cluster/otf2: initial import Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/otf2/Manifest | 1 + sys-cluster/otf2/metadata.xml | 11 +++++++++ sys-cluster/otf2/otf2-2.3.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) diff --git a/sys-cluster/otf2/Manifest b/sys-cluster/otf2/Manifest new file mode 100644 index 000000000..4ff1ad525 --- /dev/null +++ b/sys-cluster/otf2/Manifest @@ -0,0 +1 @@ +DIST otf2-2.3.tar.gz 5321226 BLAKE2B a217ac2bcc0fa777dccc99a0f90a143b3cfea66ff717cfe66f68d2d59407023b1f0e419d9c4275d27f201fa3df0c5a89d4730052039144b02a2136e390e85fbb SHA512 c27c768f178e512c46683667d70bc2ad3871b17b8978356b13917d3fc12b49b4ee5d5767e9e10a247bbc7f2e911aaae7455bfec8f36704236d55c16454fa0a4c diff --git a/sys-cluster/otf2/metadata.xml b/sys-cluster/otf2/metadata.xml new file mode 100644 index 000000000..0c04defae --- /dev/null +++ b/sys-cluster/otf2/metadata.xml @@ -0,0 +1,11 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + Enable sys-cluster/sionlib support + + diff --git a/sys-cluster/otf2/otf2-2.3.ebuild b/sys-cluster/otf2/otf2-2.3.ebuild new file mode 100644 index 000000000..078fda868 --- /dev/null +++ b/sys-cluster/otf2/otf2-2.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit python-single-r1 + +DESCRIPTION="highly scalable, memory efficient event trace data format" +HOMEPAGE="https://www.vi-hps.org/projects/score-p" +SRC_URI="http://perftools.pages.jsc.fz-juelich.de/cicd/otf2/tags/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="debug sionlib test" + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep 'dev-python/six[${PYTHON_USEDEP}]') + + sionlib? ( sys-cluster/sionlib[tools] ) +" +DEPEND="${RDEPEND}" + +#RESTRICT="!test? ( test )" +RESTRICT="test" #tests are failing +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_configure() { + local myconf=( + --disable-platform-mic + --disable-static + --enable-shared + + $(use_enable test backend-test-runs) + $(use_enable debug) + $(use_with sionlib) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +}