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 EA7F515849D for ; Sun, 2 Jun 2024 00:32:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 388BDE2A9C; Sun, 2 Jun 2024 00:32:11 +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 22450E2A9C for ; Sun, 2 Jun 2024 00:32:11 +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 689C534301B for ; Sun, 2 Jun 2024 00:32:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F6A41BFF for ; Sun, 2 Jun 2024 00:32:08 +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: <1717287727.e59e392b702f8129d4646bf58f3eb6c8a502e085.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mergerfs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/mergerfs-tools/mergerfs-tools-0_p20230912.ebuild X-VCS-Directories: sys-fs/mergerfs-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e59e392b702f8129d4646bf58f3eb6c8a502e085 X-VCS-Branch: master Date: Sun, 2 Jun 2024 00:32:08 +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: adde51c7-e4b2-46e9-93a7-d01a0cdd0768 X-Archives-Hash: 56caf05d5016aefec195e5cb29c95a0b commit: e59e392b702f8129d4646bf58f3eb6c8a502e085 Author: Sam James gentoo org> AuthorDate: Sun Jun 2 00:21:49 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 2 00:22:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59e392b sys-fs/mergerfs-tools: style tweaks, avoid `which` Signed-off-by: Sam James gentoo.org> sys-fs/mergerfs-tools/mergerfs-tools-0_p20230912.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys-fs/mergerfs-tools/mergerfs-tools-0_p20230912.ebuild b/sys-fs/mergerfs-tools/mergerfs-tools-0_p20230912.ebuild index 7b12d43bd707..137700575d1f 100644 --- a/sys-fs/mergerfs-tools/mergerfs-tools-0_p20230912.ebuild +++ b/sys-fs/mergerfs-tools/mergerfs-tools-0_p20230912.ebuild @@ -4,7 +4,6 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) - inherit python-single-r1 MY_COMMIT="80d6c9511da554009415d67e7c0ead1256c1fc41" @@ -16,7 +15,6 @@ S="${WORKDIR}/${PN}-${MY_COMMIT}" LICENSE="ISC" SLOT="0" - KEYWORDS="~amd64 ~riscv ~x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" @@ -28,6 +26,7 @@ src_compile() { } src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + # Explicit INSTALL= to avoid `which` + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr INSTALL=install install python_fix_shebang "${ED}" }