From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/metee/
Date: Mon, 22 Sep 2025 21:57:11 +0000 (UTC) [thread overview]
Message-ID: <1758578132.e0aff2bafd1711d69e3c5bdfe2c122d4c2ee4868.conikost@gentoo> (raw)
commit: e0aff2bafd1711d69e3c5bdfe2c122d4c2ee4868
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 22 17:13:21 2025 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon Sep 22 21:55:32 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0aff2ba
dev-libs/metee: add 6.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-libs/metee/Manifest | 1 +
dev-libs/metee/metee-6.0.2.ebuild | 65 +++++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/dev-libs/metee/Manifest b/dev-libs/metee/Manifest
index f6a5e3b9ea93..d00c1dbaa85f 100644
--- a/dev-libs/metee/Manifest
+++ b/dev-libs/metee/Manifest
@@ -1 +1,2 @@
DIST metee-6.0.0.tar.gz 119025 BLAKE2B e64aa39877079e3104839a28deef0d1d1282a76ae451b0102cf81a2e89ed8aee9d02234db5152a5b7af8d57363c1f4adbdff8600ffbe20a3b42f0a7700d341db SHA512 ee9923aff56341ce058f8d34a5d5781c56cc4d991001f314014b88551cfed56a2e39c2b5e4557532a19386b7bccaf6ad90ee3ee1b467b3979b270ee9b64ac847
+DIST metee-6.0.2.tar.gz 119084 BLAKE2B 31ced32744d5c2fe38bc409bb90682d8c66051704c1c3fc5f4abe2947e2272f5d3c1b921a04dbd14935c3260d88154d5e3cd3509e62006b3196d133601152d36 SHA512 a1f8e77c201a4864bd04d9ff4aac5beca451ab77cc57b6ba8164cfdf005c693371c0558dac123b832a62a30929260b9777405dd6732651f0e9361834ac74eca2
diff --git a/dev-libs/metee/metee-6.0.2.ebuild b/dev-libs/metee/metee-6.0.2.ebuild
new file mode 100644
index 000000000000..435523682a22
--- /dev/null
+++ b/dev-libs/metee/metee-6.0.2.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake edo
+
+DESCRIPTION="Cross-platform access library for Intel CSME HECI interface"
+HOMEPAGE="https://github.com/intel/metee"
+SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ doc? ( app-text/doxygen )
+ test? ( dev-cpp/gtest )
+"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-5.0.0-system-gtest.patch
+)
+
+src_prepare() {
+ cmake_src_prepare
+
+ # Respect users CFLAGS
+ sed -e 's/-D_FORTIFY_SOURCE=2 -O2//' -e 's/-Werror//' -i linux.cmake || die
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_DOCS="$(usex doc)"
+ -DBUILD_SAMPLES="NO"
+ -DBUILD_SHARED_LIBS="YES"
+ -DBUILD_TEST="$(usex test)"
+ -DCONSOLE_OUTPUT="NO"
+ )
+
+ cmake_src_configure
+}
+
+src_test() {
+ local skip_tests=(
+ MeTeeTESTInstance/MeTeeTEST.PROD_N_TestGetMeiKind/PCH
+ MeTeePPTESTInstance/MeTeePPTEST.PROD_MKHI_MoveSemantics/PCH
+ )
+
+ # The format for disabling test1, test2, and test3 looks like:
+ # -test1:test2:test3
+ edo "${BUILD_DIR}"/tests/metee_test \
+ --gtest_filter=-$(echo $(IFS=:; echo "${skip_tests[*]}"))
+}
+
+src_install() {
+ cmake_src_install
+
+ # Don't install test binary
+ if use test ; then
+ rm "${ED}"/usr/bin/metee_test || die
+ fi
+}
next reply other threads:[~2025-09-22 21:57 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-22 21:57 Conrad Kostecki [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-04 13:57 [gentoo-commits] repo/gentoo:master commit in: dev-libs/metee/ Conrad Kostecki
2025-10-04 13:57 Conrad Kostecki
2025-08-03 18:44 Conrad Kostecki
2025-08-03 18:44 Conrad Kostecki
2025-06-29 19:57 Conrad Kostecki
2025-06-29 19:57 Conrad Kostecki
2025-06-29 19:42 Conrad Kostecki
2025-04-18 18:47 Conrad Kostecki
2025-03-28 20:48 Conrad Kostecki
2025-03-28 20:48 Conrad Kostecki
2025-02-21 23:28 Conrad Kostecki
2025-01-23 23:19 Conrad Kostecki
2025-01-23 23:19 Conrad Kostecki
2024-09-29 14:57 Conrad Kostecki
2024-09-29 14:57 Conrad Kostecki
2024-09-23 16:58 Conrad Kostecki
2024-07-27 17:54 Conrad Kostecki
2024-07-27 17:54 Conrad Kostecki
2024-07-26 20:52 Conrad Kostecki
2024-06-27 15:40 Conrad Kostecki
2024-02-08 21:50 Conrad Kostecki
2024-02-08 21:50 Conrad Kostecki
2023-12-28 18:32 Conrad Kostecki
2023-08-15 22:40 Conrad Kostecki
2023-08-15 22:40 Conrad Kostecki
2023-07-15 20:37 Conrad Kostecki
2023-03-04 0:00 Conrad Kostecki
2023-03-04 0:00 Conrad Kostecki
2023-01-31 15:17 Conrad Kostecki
2023-01-31 15:17 Conrad Kostecki
2023-01-31 15:17 Conrad Kostecki
2022-12-30 23:39 Conrad Kostecki
2022-05-28 13:44 Conrad Kostecki
2022-05-24 20:37 Conrad Kostecki
2022-05-24 20:37 Conrad Kostecki
2022-04-23 18:33 Conrad Kostecki
2022-03-12 11:52 Conrad Kostecki
2022-03-12 11:52 Conrad Kostecki
2021-09-21 6:35 Agostino Sarubbo
2021-08-22 14:12 Conrad Kostecki
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=1758578132.e0aff2bafd1711d69e3c5bdfe2c122d4c2ee4868.conikost@gentoo \
--to=conikost@gentoo.org \
--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