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 5B74515808B for ; Sat, 17 Feb 2024 12:11:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93E11E29F5; Sat, 17 Feb 2024 12:11:55 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 7D9B8E29D8 for ; Sat, 17 Feb 2024 12:11:55 +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 B3676340806 for ; Sat, 17 Feb 2024 12:11:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5549E13DB for ; Sat, 17 Feb 2024 12:11:53 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1708166393.82246f1e39d1f222ccce4edd8bede0fbb79b69f1.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-news/newsraft/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-news/newsraft/newsraft-0.19.ebuild net-news/newsraft/newsraft-9999.ebuild X-VCS-Directories: net-news/newsraft/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 82246f1e39d1f222ccce4edd8bede0fbb79b69f1 X-VCS-Branch: master Date: Sat, 17 Feb 2024 12:11:53 +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: 9d8ea73b-285d-4ed7-8231-3b4b5e668b62 X-Archives-Hash: 586cff3dcf4f9487745b98b735d75861 commit: 82246f1e39d1f222ccce4edd8bede0fbb79b69f1 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sat Feb 17 10:39:01 2024 +0000 Commit: Rui Huang gmail com> CommitDate: Sat Feb 17 10:39:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82246f1e net-news/newsraft: use toolchain-funcs for default $CC Closes: https://bugs.gentoo.org/911243 Closes: https://bugs.gentoo.org/911242 Closes: https://bugs.gentoo.org/911241 Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> net-news/newsraft/newsraft-0.19.ebuild | 5 ++++- net-news/newsraft/newsraft-9999.ebuild | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/net-news/newsraft/newsraft-0.19.ebuild b/net-news/newsraft/newsraft-0.19.ebuild index f2923dc3fc..462c5323d8 100644 --- a/net-news/newsraft/newsraft-0.19.ebuild +++ b/net-news/newsraft/newsraft-0.19.ebuild @@ -1,8 +1,10 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit toolchain-funcs + DESCRIPTION="A lightweight feed reader with ncurses user interface inspired by Newsboat." HOMEPAGE="https://codeberg.org/grisha/newsraft" @@ -33,6 +35,7 @@ BDEPEND=" " src_compile() { + tc-getCC emake CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } diff --git a/net-news/newsraft/newsraft-9999.ebuild b/net-news/newsraft/newsraft-9999.ebuild index 4808d8d113..5ba5912afb 100644 --- a/net-news/newsraft/newsraft-9999.ebuild +++ b/net-news/newsraft/newsraft-9999.ebuild @@ -35,11 +35,11 @@ BDEPEND=" " src_compile() { + tc-getCC emake CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_test() { - tc-export CC # For run-check.sh emake CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" check }