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 C690D15ACFB for ; Mon, 10 Apr 2023 18:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBFC1E08AB; Mon, 10 Apr 2023 18:38:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BD237E08AB for ; Mon, 10 Apr 2023 18:38:21 +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 0AB56335CFF for ; Mon, 10 Apr 2023 18:38:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B206A19 for ; Mon, 10 Apr 2023 18:38:19 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1681151831.a0f8d9c91590ffc97f7037a02aa02c49170bf8ab.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-metrics-discovery/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/intel-metrics-discovery/Manifest dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.164.ebuild dev-libs/intel-metrics-discovery/metadata.xml X-VCS-Directories: dev-libs/intel-metrics-discovery/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: a0f8d9c91590ffc97f7037a02aa02c49170bf8ab X-VCS-Branch: master Date: Mon, 10 Apr 2023 18:38:19 +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: 803cfbab-83c0-4e43-b0d1-85efec4e32fc X-Archives-Hash: 5f733e5520ec6c8d23977bb9deaf6729 commit: a0f8d9c91590ffc97f7037a02aa02c49170bf8ab Author: Conrad Kostecki gentoo org> AuthorDate: Mon Apr 10 18:26:17 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Apr 10 18:37:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f8d9c9 dev-libs/intel-metrics-discovery: new package, add 1.12.164 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/intel-metrics-discovery/Manifest | 1 + .../intel-metrics-discovery-1.12.164.ebuild | 32 ++++++++++++++++++++++ dev-libs/intel-metrics-discovery/metadata.xml | 25 +++++++++++++++++ 3 files changed, 58 insertions(+) diff --git a/dev-libs/intel-metrics-discovery/Manifest b/dev-libs/intel-metrics-discovery/Manifest new file mode 100644 index 000000000000..05fdbbdedb8f --- /dev/null +++ b/dev-libs/intel-metrics-discovery/Manifest @@ -0,0 +1 @@ +DIST metrics-discovery-1.12.164.tar.gz 4235286 BLAKE2B f2a707fd2b43e096ad1c02032558c141add286d9f8cef20a317f5109245328ae7d22dd1acec64df99ef17dd652e67e5cba8db0e3271dd2259138924218ef893a SHA512 8e8e00d75ba14abecd9c650c0f5a33dd8f46396e8ed4f2a4eefb1b76b87cfc38ad47740dddd00698c09055a79e12ac2a4b23187c0b6146b4ef0745b21f0bf975 diff --git a/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.164.ebuild b/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.164.ebuild new file mode 100644 index 000000000000..3b483c3c9bf2 --- /dev/null +++ b/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.12.164.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CMAKE_BUILD_TYPE="Release" +MY_PN="${PN/intel-/}" +MY_P="${MY_PN}-${PV}" + +inherit cmake + +DESCRIPTION="A user mode library that provides access to GPU performance data" +HOMEPAGE="https://github.com/intel/metrics-library" +SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${MY_P}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" + +DEPEND="x11-libs/libdrm" +RDEPEND="${DEPEND}" + +src_prepare() { + default + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( -DLINUX_DISTRO="Gentoo" ) + cmake_src_configure +} diff --git a/dev-libs/intel-metrics-discovery/metadata.xml b/dev-libs/intel-metrics-discovery/metadata.xml new file mode 100644 index 000000000000..446f29fca8dd --- /dev/null +++ b/dev-libs/intel-metrics-discovery/metadata.xml @@ -0,0 +1,25 @@ + + + + + gentoo@taujhe.de + Jan Henke + + + proxy-maint@gentoo.org + Proxy Maintainers + + + conikost@gentoo.org + Conrad Kostecki + + + This software is a user mode library that + provides access to GPU performance data. + The library has OS abstraction layer that + allows for interoperability in different environments. + + + intel/metrics-discovery + +