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 16B04159C9B for ; Mon, 5 Aug 2024 05:20:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CA5CE2B3D; Mon, 5 Aug 2024 05:20:30 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 834D0E2B3D for ; Mon, 5 Aug 2024 05:20:30 +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 5CA80343029 for ; Mon, 5 Aug 2024 05:20:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB4A01EAB for ; Mon, 5 Aug 2024 05:20:26 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1722792699.9ff157ed51d286d07f6da1414293d34696dcd13f.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-wm/river/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-wm/river/metadata.xml gui-wm/river/river-0.3.5.ebuild X-VCS-Directories: gui-wm/river/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 9ff157ed51d286d07f6da1414293d34696dcd13f X-VCS-Branch: master Date: Mon, 5 Aug 2024 05:20:26 +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: 1a33affb-f7f7-4b73-8909-4d7a78090b85 X-Archives-Hash: a094aaa4caf8d4fb96907431d16a4c28 commit: 9ff157ed51d286d07f6da1414293d34696dcd13f Author: Daichi Yamamoto dyama net> AuthorDate: Sun Aug 4 17:31:39 2024 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sun Aug 4 17:31:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ff157ed gui-wm/river: remove *sh-completion USE flags Signed-off-by: Daichi Yamamoto dyama.net> gui-wm/river/metadata.xml | 1 - gui-wm/river/river-0.3.5.ebuild | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/gui-wm/river/metadata.xml b/gui-wm/river/metadata.xml index 44c7580c5..34c03a7a1 100644 --- a/gui-wm/river/metadata.xml +++ b/gui-wm/river/metadata.xml @@ -6,7 +6,6 @@ Daichi Yamamoto - Enable fish-completion support Use LLVM Zig backend diff --git a/gui-wm/river/river-0.3.5.ebuild b/gui-wm/river/river-0.3.5.ebuild index 631d339a4..65e6d4373 100644 --- a/gui-wm/river/river-0.3.5.ebuild +++ b/gui-wm/river/river-0.3.5.ebuild @@ -24,7 +24,7 @@ PATCHES=( LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64" -IUSE="+X +llvm +man pie bash-completion zsh-completion fish-completion" +IUSE="+X +llvm +man pie" EZIG_MIN="0.12" EZIG_MAX_EXCLUSIVE="0.13" @@ -130,9 +130,6 @@ src_configure() { -Dpie=$(usex pie true false) -Dno-llvm=$(usex llvm false true) -Dman-pages=$(usex man true false) - -Dbash-completion=$(usex bash-completion true false) - -Dzsh-completion=$(usex zsh-completion true false) - -Dfish-completion=$(usex fish-completion true false) -Dxwayland=$(usex X true false) ) }