From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C3111582EF for ; Sun, 09 Feb 2025 23:24:09 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 296A63430E9 for ; Sun, 09 Feb 2025 23:24:09 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EA72E1103CB; Sun, 09 Feb 2025 23:24:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E23701103CB for ; Sun, 09 Feb 2025 23:24:07 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7687B3430DE for ; Sun, 09 Feb 2025 23:24:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D306D2381 for ; Sun, 09 Feb 2025 23:24:05 +0000 (UTC) From: "Quinet Charlie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Quinet Charlie" Message-ID: <1739143328.571592a44cf689e5edb1b998c8607a410cc5dd18.w.iron.zombie@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/corectrl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/corectrl/corectrl-1.4.3.ebuild app-misc/corectrl/corectrl-9999.ebuild X-VCS-Directories: app-misc/corectrl/ X-VCS-Committer: w.iron.zombie X-VCS-Committer-Name: Quinet Charlie X-VCS-Revision: 571592a44cf689e5edb1b998c8607a410cc5dd18 X-VCS-Branch: dev Date: Sun, 09 Feb 2025 23:24:05 +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: 82c74efb-12c1-47db-a18e-598dcd37cf32 X-Archives-Hash: 117fe6086b32ad02f1668dd929fd3139 commit: 571592a44cf689e5edb1b998c8607a410cc5dd18 Author: Charlie Quinet gmail com> AuthorDate: Sun Feb 9 23:22:08 2025 +0000 Commit: Quinet Charlie gmail com> CommitDate: Sun Feb 9 23:22:08 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=571592a4 app-misc/corectrl: check if gcc is in use Signed-off-by: Charlie Quinet gmail.com> app-misc/corectrl/corectrl-1.4.3.ebuild | 4 ++-- app-misc/corectrl/corectrl-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-misc/corectrl/corectrl-1.4.3.ebuild b/app-misc/corectrl/corectrl-1.4.3.ebuild index db01a0cc1..97b0bd6b2 100644 --- a/app-misc/corectrl/corectrl-1.4.3.ebuild +++ b/app-misc/corectrl/corectrl-1.4.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit ecm linux-info optfeature +inherit ecm linux-info optfeature toolchain-funcs DESCRIPTION="Core control application" HOMEPAGE="https://gitlab.com/corectrl/corectrl" @@ -55,7 +55,7 @@ RDEPEND="${COMMON_DEPEND} CONFIG_CHECK="~CONNECTOR ~PROC_EVENTS ~NETLINK_DIAG" src_prepare() { - (clang++ --version 2>&1 | grep -q "libcxx") && eapply "${FILESDIR}/1.4.3-remove_libstdcxxfs_dependency.patch" + ! tc-is-gcc && (clang++ --version 2>&1 | grep -q "libcxx") && eapply "${FILESDIR}/1.4.3-remove_libstdcxxfs_dependency.patch" cmake_src_prepare } diff --git a/app-misc/corectrl/corectrl-9999.ebuild b/app-misc/corectrl/corectrl-9999.ebuild index 0c12da851..93c9918ba 100644 --- a/app-misc/corectrl/corectrl-9999.ebuild +++ b/app-misc/corectrl/corectrl-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit ecm linux-info optfeature +inherit ecm linux-info optfeature toolchain-funcs DESCRIPTION="Core control application" HOMEPAGE="https://gitlab.com/corectrl/corectrl" @@ -52,7 +52,7 @@ RDEPEND="${COMMON_DEPEND} CONFIG_CHECK="~CONNECTOR ~PROC_EVENTS ~NETLINK_DIAG" src_prepare() { - (clang++ --version 2>&1 | grep -q "libcxx") && eapply "${FILESDIR}/9999-remove_libstdcxxfs_dependency.patch" + ! tc-is-gcc && (clang++ --version 2>&1 | grep -q "libcxx") && eapply "${FILESDIR}/9999-remove_libstdcxxfs_dependency.patch" cmake_src_prepare }