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 59994158083 for ; Sat, 31 Aug 2024 20:19:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 866ABE2AB3; Sat, 31 Aug 2024 20:19:26 +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 69E34E2AB3 for ; Sat, 31 Aug 2024 20:19:26 +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 7DA5C343104 for ; Sat, 31 Aug 2024 20:19:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDBBD14D6 for ; Sat, 31 Aug 2024 20:19:23 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1725135457.9f045dbf2183aec8af507d06320e005f3b9b4e0f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/lgogdownloader/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/lgogdownloader/lgogdownloader-3.15.ebuild X-VCS-Directories: games-util/lgogdownloader/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9f045dbf2183aec8af507d06320e005f3b9b4e0f X-VCS-Branch: master Date: Sat, 31 Aug 2024 20:19:23 +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: cc75ec79-ab0f-48a1-940c-359c02265462 X-Archives-Hash: 87827b5fc26846468dd00a0822878d61 commit: 9f045dbf2183aec8af507d06320e005f3b9b4e0f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Aug 31 18:09:07 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 31 20:17:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f045dbf games-util/lgogdownloader: Drop IUSE qt5 and REQUIRED_USE Signed-off-by: Andreas Sturmlechner gentoo.org> games-util/lgogdownloader/lgogdownloader-3.15.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/games-util/lgogdownloader/lgogdownloader-3.15.ebuild b/games-util/lgogdownloader/lgogdownloader-3.15.ebuild index 145c43643d6a..66bf9d5b6b62 100644 --- a/games-util/lgogdownloader/lgogdownloader-3.15.ebuild +++ b/games-util/lgogdownloader/lgogdownloader-3.15.ebuild @@ -11,8 +11,7 @@ SRC_URI="https://github.com/Sude-/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="WTFPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="gui qt5 qt6" -REQUIRED_USE="gui? ( ^^ ( qt5 qt6 ) )" +IUSE="gui qt6" RDEPEND=" >=app-crypt/rhash-1.3.3-r2:0= @@ -22,7 +21,7 @@ RDEPEND=" dev-libs/tinyxml2:0= >=net-misc/curl-7.55:0=[ssl] gui? ( - qt5? ( dev-qt/qtwebengine:5[widgets] ) + !qt6? ( dev-qt/qtwebengine:5[widgets] ) qt6? ( dev-qt/qtwebengine:6[widgets] ) ) " @@ -40,7 +39,7 @@ src_configure() { -DUSE_QT_GUI=$(usex gui) ) use gui && mycmakeargs+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Qt6=$(usex qt5) + -DCMAKE_DISABLE_FIND_PACKAGE_Qt6=$(usex !qt6) ) cmake_src_configure }