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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 971D81382C5 for ; Sat, 24 Apr 2021 12:56:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B685FE079E; Sat, 24 Apr 2021 12:56:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AEFBE079E for ; Sat, 24 Apr 2021 12:56:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 856FD340DDE for ; Sat, 24 Apr 2021 12:56:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EF01C3 for ; Sat, 24 Apr 2021 12:56:40 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1619268988.8c3835f3329c3e86b488a2521d25bd1f1c9be6c3.xgqt@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-fs/httpdirfs/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-fs/httpdirfs/httpdirfs-1.2.0.ebuild net-fs/httpdirfs/httpdirfs-9999.ebuild X-VCS-Directories: net-fs/httpdirfs/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 8c3835f3329c3e86b488a2521d25bd1f1c9be6c3 X-VCS-Branch: dev Date: Sat, 24 Apr 2021 12:56:40 +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: 56fb2fcd-85f2-478c-9928-4190a841e0ae X-Archives-Hash: 2e9c8bf9b426bb3cf616cc9b4bd67c38 commit: 8c3835f3329c3e86b488a2521d25bd1f1c9be6c3 Author: Maciej Barć riseup net> AuthorDate: Sat Apr 24 12:56:28 2021 +0000 Commit: Maciej Barć riseup net> CommitDate: Sat Apr 24 12:56:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8c3835f3 net-fs/httpdirfs: fix cc QA issue Closes: https://bugs.gentoo.org/785127 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Maciej Barć riseup.net> net-fs/httpdirfs/httpdirfs-1.2.0.ebuild | 8 +++++++- net-fs/httpdirfs/httpdirfs-9999.ebuild | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild b/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild index 0ac20788a..9289a9f95 100644 --- a/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild +++ b/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Filesystem to mount HTTP directory listings, with a permanent cache" HOMEPAGE="https://github.com/fangfufu/httpdirfs" @@ -30,6 +32,10 @@ DEPEND=" " RDEPEND="${DEPEND}" +src_compile () { + emake CC="$(tc-getCC)" +} + src_install() { - emake prefix="${D}"/usr install + emake prefix="${D}/usr" install } diff --git a/net-fs/httpdirfs/httpdirfs-9999.ebuild b/net-fs/httpdirfs/httpdirfs-9999.ebuild index 0ac20788a..9289a9f95 100644 --- a/net-fs/httpdirfs/httpdirfs-9999.ebuild +++ b/net-fs/httpdirfs/httpdirfs-9999.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Filesystem to mount HTTP directory listings, with a permanent cache" HOMEPAGE="https://github.com/fangfufu/httpdirfs" @@ -30,6 +32,10 @@ DEPEND=" " RDEPEND="${DEPEND}" +src_compile () { + emake CC="$(tc-getCC)" +} + src_install() { - emake prefix="${D}"/usr install + emake prefix="${D}/usr" install }