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 3FEB715808B for ; Mon, 4 Apr 2022 20:51:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76AE0E0849; Mon, 4 Apr 2022 20:51:07 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6FFDCE0849 for ; Mon, 4 Apr 2022 20:51:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A4114341372 for ; Mon, 4 Apr 2022 20:51:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E390B287 for ; Mon, 4 Apr 2022 20:51:02 +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: <1649105450.fdcf296d108e3bfa43a8aff8b8bad4eb13fff277.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/quassel/quassel-0.14.0-r1.ebuild net-irc/quassel/quassel-9999.ebuild X-VCS-Directories: net-irc/quassel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fdcf296d108e3bfa43a8aff8b8bad4eb13fff277 X-VCS-Branch: master Date: Mon, 4 Apr 2022 20:51:02 +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: cb639466-f4e4-455c-88e1-dc12c1f0b096 X-Archives-Hash: 557dabba30649ce78520b16605fc5c6f commit: fdcf296d108e3bfa43a8aff8b8bad4eb13fff277 Author: Sam James gentoo org> AuthorDate: Mon Apr 4 20:50:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 4 20:50:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdcf296d net-irc/quassel: switch to USE=gui As per QA policy. Signed-off-by: Sam James gentoo.org> net-irc/quassel/quassel-0.14.0-r1.ebuild | 14 +++++++------- net-irc/quassel/quassel-9999.ebuild | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/net-irc/quassel/quassel-0.14.0-r1.ebuild b/net-irc/quassel/quassel-0.14.0-r1.ebuild index d6aa1c14902d..41f4015cd383 100644 --- a/net-irc/quassel/quassel-0.14.0-r1.ebuild +++ b/net-irc/quassel/quassel-0.14.0-r1.ebuild @@ -24,7 +24,7 @@ HOMEPAGE="https://quassel-irc.org/" LICENSE="GPL-3" SLOT="0" -IUSE="bundled-icons crypt +dbus debug kde ldap monolithic oxygen postgres +server snorenotify spell syslog test urlpreview X" +IUSE="bundled-icons crypt +dbus debug gui kde ldap monolithic oxygen postgres +server snorenotify spell syslog test urlpreview" RESTRICT="!test? ( test )" SERVER_DEPEND="acct-group/quassel @@ -68,7 +68,7 @@ DEPEND=">=dev-libs/boost-1.54:= ) !monolithic? ( server? ( ${SERVER_DEPEND} ) - X? ( ${GUI_DEPEND} ) + gui? ( ${GUI_DEPEND} ) )" RDEPEND="${DEPEND}" BDEPEND="dev-qt/linguist-tools:5 @@ -78,13 +78,13 @@ DEPEND+=" test? ( dev-cpp/gtest dev-qt/qttest )" DOCS=( AUTHORS ChangeLog README.md ) -REQUIRED_USE="|| ( X server monolithic ) +REQUIRED_USE="|| ( gui server monolithic ) crypt? ( || ( server monolithic ) ) kde? ( dbus spell ) ldap? ( || ( server monolithic ) ) postgres? ( || ( server monolithic ) ) - snorenotify? ( || ( X monolithic ) ) - spell? ( || ( X monolithic ) ) + snorenotify? ( || ( gui monolithic ) ) + spell? ( || ( gui monolithic ) ) syslog? ( || ( server monolithic ) )" PATCHES=( @@ -105,10 +105,10 @@ src_configure() { -DWITH_OXYGEN_ICONS=$(usex oxygen) -DWANT_CORE=$(usex server) -DWITH_WEBENGINE=$(usex urlpreview) - -DWANT_QTCLIENT=$(usex X) + -DWANT_QTCLIENT=$(usex gui) ) - if use X || use monolithic ; then + if use gui || use monolithic ; then # We can't always pass these (avoid "unused" warning) # bug #830708 mycmakeargs+=( diff --git a/net-irc/quassel/quassel-9999.ebuild b/net-irc/quassel/quassel-9999.ebuild index b00f930b98b5..ebbf78af53cb 100644 --- a/net-irc/quassel/quassel-9999.ebuild +++ b/net-irc/quassel/quassel-9999.ebuild @@ -24,7 +24,7 @@ HOMEPAGE="https://quassel-irc.org/" LICENSE="GPL-3" SLOT="0" -IUSE="bundled-icons crypt +dbus debug kde ldap monolithic oxygen postgres +server snorenotify spell syslog test urlpreview X" +IUSE="bundled-icons crypt +dbus debug gui kde ldap monolithic oxygen postgres +server snorenotify spell syslog test urlpreview" RESTRICT="!test? ( test )" SERVER_DEPEND="acct-group/quassel @@ -68,7 +68,7 @@ DEPEND=">=dev-libs/boost-1.54:= ) !monolithic? ( server? ( ${SERVER_DEPEND} ) - X? ( ${GUI_DEPEND} ) + gui? ( ${GUI_DEPEND} ) )" RDEPEND="${DEPEND}" BDEPEND="dev-qt/linguist-tools:5 @@ -78,13 +78,13 @@ DEPEND+=" test? ( dev-cpp/gtest dev-qt/qttest )" DOCS=( AUTHORS ChangeLog README.md ) -REQUIRED_USE="|| ( X server monolithic ) +REQUIRED_USE="|| ( gui server monolithic ) crypt? ( || ( server monolithic ) ) kde? ( dbus spell ) ldap? ( || ( server monolithic ) ) postgres? ( || ( server monolithic ) ) - snorenotify? ( || ( X monolithic ) ) - spell? ( || ( X monolithic ) ) + snorenotify? ( || ( gui monolithic ) ) + spell? ( || ( gui monolithic ) ) syslog? ( || ( server monolithic ) )" src_configure() { @@ -101,10 +101,10 @@ src_configure() { -DWITH_OXYGEN_ICONS=$(usex oxygen) -DWANT_CORE=$(usex server) -DWITH_WEBENGINE=$(usex urlpreview) - -DWANT_QTCLIENT=$(usex X) + -DWANT_QTCLIENT=$(usex gui) ) - if use X || use monolithic ; then + if use gui || use monolithic ; then # We can't always pass these (avoid "unused" warning) # bug #830708 mycmakeargs+=(