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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 136FE158090 for ; Sat, 28 May 2022 10:10:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26ABFE0896; Sat, 28 May 2022 10:10:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 09786E0896 for ; Sat, 28 May 2022 10:10:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2511C34168E for ; Sat, 28 May 2022 10:10:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70BC24E7 for ; Sat, 28 May 2022 10:10:20 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1653650887.bf29e9e3c553b337bff444abf9a85d6ad063363c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: profiles/desc/, sys-cluster/extrae/ X-VCS-Repository: repo/proj/guru X-VCS-Files: profiles/desc/instrument.desc sys-cluster/extrae/extrae-3.8.3-r10.ebuild sys-cluster/extrae/metadata.xml X-VCS-Directories: profiles/desc/ sys-cluster/extrae/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: bf29e9e3c553b337bff444abf9a85d6ad063363c X-VCS-Branch: master Date: Sat, 28 May 2022 10:10:20 +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: 472da731-6bc6-4c75-98b0-d914eeb46f1e X-Archives-Hash: fd175d2ada5b9ca58d7237fd2f8dba0a commit: bf29e9e3c553b337bff444abf9a85d6ad063363c Author: Alessandro Barbieri gmail com> AuthorDate: Thu May 26 23:42:54 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri May 27 11:28:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf29e9e3 sys-cluster/extrae: move INSTRUMENT use expand to profiles/desc Signed-off-by: Alessandro Barbieri gmail.com> profiles/desc/instrument.desc | 8 ++++++++ sys-cluster/extrae/extrae-3.8.3-r10.ebuild | 14 +++++++------- sys-cluster/extrae/metadata.xml | 3 --- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/profiles/desc/instrument.desc b/profiles/desc/instrument.desc new file mode 100644 index 000000000..8311329db --- /dev/null +++ b/profiles/desc/instrument.desc @@ -0,0 +1,8 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# This file contains descriptions of INSTRUMENT USE_EXPAND flags. + +dynamic-memory - Enables instrumentation for dynamic memory (malloc, free, realloc) calls +io - Enables instrumentation for basic I/O (read, write) calls +syscall - Enables instrumentation for system calls (other than I/O and mallocs) diff --git a/sys-cluster/extrae/extrae-3.8.3-r10.ebuild b/sys-cluster/extrae/extrae-3.8.3-r10.ebuild index de4da9133..20f867fe8 100644 --- a/sys-cluster/extrae/extrae-3.8.3-r10.ebuild +++ b/sys-cluster/extrae/extrae-3.8.3-r10.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2021 Gentoo Authors +# Copyright 2019-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,9 +16,9 @@ SLOT="0" KEYWORDS="~amd64" IUSE_INSTRUMENT=" - +instrument-dynamic-memory - +instrument-io - +instrument-syscall + +instrument_dynamic-memory + +instrument_io + +instrument_syscall " IUSE="${IUSE_INSTRUMENT} clustering dlsym doc dyninst heterogeneous inotify memkind merge-in-trace nanos online opencl openmp openshmem +parallel-merge pebs-sampling @@ -122,9 +122,9 @@ src_configure() { $(use_enable doc) $(use_enable heterogeneous) $(use_enable inotify) - $(use_enable instrument-dynamic-memory) - $(use_enable instrument-io) - $(use_enable instrument-syscall) + $(use_enable instrument_dynamic-memory) + $(use_enable instrument_io) + $(use_enable instrument_syscall) $(use_enable merge-in-trace) $(use_enable nanos) $(use_enable online) diff --git a/sys-cluster/extrae/metadata.xml b/sys-cluster/extrae/metadata.xml index 9e8da6d6f..88f029630 100644 --- a/sys-cluster/extrae/metadata.xml +++ b/sys-cluster/extrae/metadata.xml @@ -25,9 +25,6 @@ process). Extrae generates trace files that can be later visualized with sys-clu Build with sys-cluster/dyninst Enable support for heterogeneous tracing Enable inotify support - Enables instrumentation for dynamic memory (malloc, free, realloc) calls - Enables instrumentation for basic I/O (read, write) calls - Enables instrumentation for system calls (other than I/O and mallocs) Enable support for tracing Java. This is necessary to create the connectors between |TRACE| and Java applications. Enable dev-libs/memkind support Embed the merging process in the tracing library so the final tracefile can be generated automatically from the application run