From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1618926-garchives=archives.gentoo.org@lists.gentoo.org> 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 9CD54158041 for <garchives@archives.gentoo.org>; Tue, 9 Apr 2024 14:44:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEBA3E2A56; Tue, 9 Apr 2024 14:44:49 +0000 (UTC) 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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1790E2A56 for <gentoo-commits@lists.gentoo.org>; Tue, 9 Apr 2024 14:44:49 +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 D3DFF3432F6 for <gentoo-commits@lists.gentoo.org>; Tue, 9 Apr 2024 14:44:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59A7C16A9 for <gentoo-commits@lists.gentoo.org>; Tue, 9 Apr 2024 14:44:47 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1712673798.6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/f2fs-tools/f2fs-tools-9999.ebuild X-VCS-Directories: sys-fs/f2fs-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b X-VCS-Branch: master Date: Tue, 9 Apr 2024 14:44:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2fdd18db-b0ff-4290-8d86-e67fe4f25f26 X-Archives-Hash: 0e62eacc073c0ec4c75e53a0a7a7e349 commit: 6ab5d8b87dab45ce9a8bc6986b5bee3dc438470b Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Tue Apr 9 01:40:31 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Apr 9 14:43:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab5d8b8 sys-fs/f2fs-tools: sync live Followup to commit 6b6835d6628c39fa13ae6183ee9a0fb69ca77a1f. Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> sys-fs/f2fs-tools/f2fs-tools-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild b/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild index 3224cc7ec9ff..456f9f133dfb 100644 --- a/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild +++ b/sys-fs/f2fs-tools/f2fs-tools-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,11 +18,11 @@ fi LICENSE="GPL-2" SLOT="0/10" -IUSE="selinux" +IUSE="lz4 lzo selinux" RDEPEND=" - app-arch/lz4:= - dev-libs/lzo:2 + lz4? ( app-arch/lz4:= ) + lzo? ( dev-libs/lzo:2 ) sys-apps/util-linux selinux? ( sys-libs/libselinux ) elibc_musl? ( sys-libs/queue-standalone ) @@ -38,6 +38,8 @@ src_configure() { local myconf=( # This is required to install to /sbin, bug #481110 --bindir="${EPREFIX}"/sbin + $(use_with lz4) + $(use_with lzo lzo2) $(use_with selinux) )