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 4F0D115802E for ; Mon, 1 Jul 2024 13:50:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 144BEE2AC3; Mon, 1 Jul 2024 13:50:31 +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 EB413E2AC0 for ; Mon, 1 Jul 2024 13:50: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F404634306A for ; Mon, 1 Jul 2024 13:50:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36D071DA8 for ; Mon, 1 Jul 2024 13:50:28 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1719760411.6c7d54149b8551d32ba59ad15d3b9513d2ed0b45.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-misc/rofi-emoji/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild X-VCS-Directories: x11-misc/rofi-emoji/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 6c7d54149b8551d32ba59ad15d3b9513d2ed0b45 X-VCS-Branch: master Date: Mon, 1 Jul 2024 13:50:28 +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: 7a3df3b7-1aeb-434a-aed2-3b9932dfb283 X-Archives-Hash: 0e3bbde9c076d80aabc82686f9857809 commit: 6c7d54149b8551d32ba59ad15d3b9513d2ed0b45 Author: Mathijs Saey mathsaey be> AuthorDate: Sun Jun 30 15:13:31 2024 +0000 Commit: David Roman gmail com> CommitDate: Sun Jun 30 15:13:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c7d5414 x11-misc/rofi-emoji: fix USE flags The ebuild required either the X or wayland USE flag to be set, but did not enforce this. This commit removes the X flag and installs X dependencies by default (i.e. if the wayland USE flag is not set). Closes: https://bugs.gentoo.org/935159 Signed-off-by: Mathijs Saey mathsaey.be> x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild index 90d627a43..94263d5d9 100644 --- a/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild +++ b/x11-misc/rofi-emoji/rofi-emoji-3.3.0.ebuild @@ -13,26 +13,22 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="X wayland" +IUSE="wayland" DEPEND=" - wayland? ( - gui-apps/rofi-wayland - ) - X? ( - x11-misc/rofi - ) + !wayland? ( x11-misc/rofi ) + wayland? ( gui-apps/rofi-wayland ) " RDEPEND=" ${DEPEND} + !wayland? ( + || ( x11-misc/xsel x11-misc/xclip x11-misc/copyq ) + x11-misc/xdotool + ) wayland? ( gui-apps/wl-clipboard gui-apps/wtype ) - X? ( - || ( x11-misc/xsel x11-misc/xclip x11-misc/copyq ) - x11-misc/xdotool - ) " src_prepare() {