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 8A6D1158083 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 95CCBE2AC8; 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 78EFEE2AC8 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 8BF9E343105 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 F2CB91F2F 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: <1725135458.6295fe3663204f5e535722d9c4496856e7aa199d.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-9999.ebuild X-VCS-Directories: games-util/lgogdownloader/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6295fe3663204f5e535722d9c4496856e7aa199d 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: 838cff4f-4f9b-4585-80cb-28b67c2a0af6 X-Archives-Hash: 4d328491da0e44f6eb4cbf680b222281 commit: 6295fe3663204f5e535722d9c4496856e7aa199d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Aug 31 18:10:50 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 31 20:17:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6295fe36 games-util/lgogdownloader: Drop IUSE qt5,qt6 and REQUIRED_USE Signed-off-by: Andreas Sturmlechner gentoo.org> games-util/lgogdownloader/lgogdownloader-9999.ebuild | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/games-util/lgogdownloader/lgogdownloader-9999.ebuild b/games-util/lgogdownloader/lgogdownloader-9999.ebuild index 5aad60a3ca63..6be67e274231 100644 --- a/games-util/lgogdownloader/lgogdownloader-9999.ebuild +++ b/games-util/lgogdownloader/lgogdownloader-9999.ebuild @@ -10,8 +10,7 @@ HOMEPAGE="https://sites.google.com/site/gogdownloader/" EGIT_REPO_URI="https://github.com/Sude-/lgogdownloader.git" LICENSE="WTFPL-2" SLOT="0" -IUSE="gui qt5 qt6" -REQUIRED_USE="gui? ( ^^ ( qt5 qt6 ) )" +IUSE="gui" RDEPEND=" >=app-crypt/rhash-1.3.3-r2:0= @@ -20,10 +19,7 @@ RDEPEND=" >=dev-libs/jsoncpp-1.7:0= dev-libs/tinyxml2:0= >=net-misc/curl-7.55:0=[ssl] - gui? ( - qt5? ( dev-qt/qtwebengine:5[widgets] ) - qt6? ( dev-qt/qtwebengine:6[widgets] ) - ) + gui? ( dev-qt/qtwebengine:6[widgets] ) " DEPEND=" @@ -38,9 +34,6 @@ src_configure() { local mycmakeargs=( -DUSE_QT_GUI=$(usex gui) ) - use gui && mycmakeargs+=( - -DCMAKE_DISABLE_FIND_PACKAGE_Qt6=$(usex qt5) - ) cmake_src_configure }