commit: bc4b519a9d8949015b7ad794b4a9efd7715a58d8
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 29 18:59:41 2025 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jun 29 19:42:14 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc4b519a
dev-libs/intel-metrics-discovery: add 1.14.181
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-libs/intel-metrics-discovery/Manifest | 1 +
.../intel-metrics-discovery-1.14.181.ebuild | 29 ++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/dev-libs/intel-metrics-discovery/Manifest
b/dev-libs/intel-metrics-discovery/Manifest
index 074e28b30c35..e5deca6b7b7b 100644
--- a/dev-libs/intel-metrics-discovery/Manifest
+++ b/dev-libs/intel-metrics-discovery/Manifest
@@ -1 +1,2 @@
DIST metrics-discovery-1.14.180.tar.gz 5638383 BLAKE2B
54b3c141f51862575997b392b1cfff50a6fc0f4d62eb7baea2a8b2fc7e213f43d48fbbf4ae4154468afce1a7c0665153fa6b2595c8cbf3e4bfeac2f79bfaf5d8
SHA512
da744fc052e4df14498b7a97465a1afb20156fa8759918212591e6dc74f3367f48d34344d8db272f0d2412e51d19ccca80036346f7a437cfee765201c6427c75
+DIST metrics-discovery-1.14.181.tar.gz 4304783 BLAKE2B
d03d804c3f33421b31c81bdc0ac8d1e1d126256b90c62f079a9c6eb8448e171359c3ec1cb657ccdf0756bee73d97f7a1f495b3d132f9219d49cd044d77c69144
SHA512
1ca64bd6f5c3bca7dcb2805c988c14f7128cda5d7b1c48c2c038432dd39aa8f003760f2218ca6d44ea4468a2b4153eac49f5fdc691416cf9fbf7fd081762bbdf
diff --git
a/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.14.181.ebuild
b/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.14.181.ebuild
new file mode 100644
index 000000000000..17dbe80af91d
--- /dev/null
+++ b/dev-libs/intel-metrics-discovery/intel-metrics-discovery-1.14.181.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2025 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-discovery"
+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}"
+
+PATCHES=( "${FILESDIR}/${PN}-1.12.178-revert-definitions.patch" )
+
+src_configure() {
+ local mycmakeargs=( -DLINUX_DISTRO="Gentoo" )
+ cmake_src_configure
+}