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 (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6E3A415802C for ; Tue, 17 Dec 2024 17:53:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BE64E07EE; Tue, 17 Dec 2024 17:53:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A0497E07EE for ; Tue, 17 Dec 2024 17:53:44 +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 783E233FEF1 for ; Tue, 17 Dec 2024 17:53:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE0371A26 for ; Tue, 17 Dec 2024 17:53:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1734458002.80871bb5d239645e743c5ae2735a3106873073a6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/date/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/date/date-3.0.3.ebuild X-VCS-Directories: dev-libs/date/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 80871bb5d239645e743c5ae2735a3106873073a6 X-VCS-Branch: master Date: Tue, 17 Dec 2024 17:53:41 +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: eab97953-1308-4afa-857b-9248237aff4b X-Archives-Hash: 88adc7924ed87696c828fe8b8b293919 commit: 80871bb5d239645e743c5ae2735a3106873073a6 Author: Filip Kobierski pm me> AuthorDate: Tue Dec 17 14:06:16 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 17 17:53:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80871bb5 dev-libs/date: use preferred compiler for tests Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/39755 Signed-off-by: Sam James gentoo.org> dev-libs/date/date-3.0.3.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-libs/date/date-3.0.3.ebuild b/dev-libs/date/date-3.0.3.ebuild index eb8b1ec1535e..9c8a941541d6 100644 --- a/dev-libs/date/date-3.0.3.ebuild +++ b/dev-libs/date/date-3.0.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake toolchain-funcs DESCRIPTION="A date and time library based on the C++11/14/17 header" HOMEPAGE="https://github.com/HowardHinnant/date" @@ -15,8 +15,6 @@ KEYWORDS="~amd64 ~arm64" IUSE="only-c-locale test" RESTRICT="!test? ( test )" -BDEPEND="test? ( llvm-core/clang )" # tests call clang++ - PATCHES=( "${FILESDIR}"/${PN}-3.0.3_remove-failing-tests.patch ) src_configure() { @@ -31,5 +29,5 @@ src_configure() { src_test() { cd "${SRC_DIR}"test/ || die - ./testit || die + CC="$(tc-getCC)" ./testit || die }