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 CDCFD158083 for ; Mon, 2 Sep 2024 18:34:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06204E2A65; Mon, 2 Sep 2024 18:34:58 +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 E0E58E2A65 for ; Mon, 2 Sep 2024 18:34:57 +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 2AD4E343146 for ; Mon, 2 Sep 2024 18:34:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 897601F20 for ; Mon, 2 Sep 2024 18:34:55 +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: <1725302075.bf0f7bef2f38cc03102c762f492c4a6d4fead653.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/transmission/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/transmission/transmission-9999.ebuild X-VCS-Directories: net-p2p/transmission/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bf0f7bef2f38cc03102c762f492c4a6d4fead653 X-VCS-Branch: master Date: Mon, 2 Sep 2024 18:34:55 +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: 1e2cf126-6146-4034-b983-afbca136776d X-Archives-Hash: 75a508f68800149d99b84f720a02dd4a commit: bf0f7bef2f38cc03102c762f492c4a6d4fead653 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Aug 31 18:28:39 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Sep 2 18:34:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf0f7bef net-p2p/transmission: Drop IUSE qt5 from 9999 Signed-off-by: Andreas Sturmlechner gentoo.org> net-p2p/transmission/transmission-9999.ebuild | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/net-p2p/transmission/transmission-9999.ebuild b/net-p2p/transmission/transmission-9999.ebuild index c129e9140880..5e09d9018343 100644 --- a/net-p2p/transmission/transmission-9999.ebuild +++ b/net-p2p/transmission/transmission-9999.ebuild @@ -24,8 +24,7 @@ HOMEPAGE="https://transmissionbt.com/" # MIT is in several libtransmission/ headers LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT" SLOT="0" -IUSE="appindicator cli debug gtk nls mbedtls qt5 qt6 systemd test" -REQUIRED_USE="?? ( qt5 qt6 )" +IUSE="appindicator cli debug gtk nls mbedtls qt6 systemd test" RESTRICT="!test? ( test )" ACCT_DEPEND=" @@ -37,7 +36,6 @@ BDEPEND=" nls? ( gtk? ( sys-devel/gettext ) ) - qt5? ( dev-qt/linguist-tools:5 ) qt6? ( dev-qt/qttools:6[linguist] ) " COMMON_DEPEND=" @@ -56,14 +54,6 @@ COMMON_DEPEND=" >=dev-cpp/glibmm-2.60.0:2.68 appindicator? ( dev-libs/libayatana-appindicator ) ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - ) qt6? ( dev-qt/qtbase:6[dbus,gui,network,widgets] dev-qt/qtsvg:6 @@ -108,8 +98,6 @@ src_configure() { if use qt6; then mycmakeargs+=( -DENABLE_QT=ON -DUSE_QT_VERSION=6 ) - elif use qt5; then - mycmakeargs+=( -DENABLE_QT=ON -DUSE_QT_VERSION=5 ) else mycmakeargs+=( -DENABLE_QT=OFF ) fi @@ -144,14 +132,14 @@ src_install() { } pkg_postrm() { - if use gtk || use qt5 || use qt6; then + if use gtk || use qt6; then xdg_desktop_database_update xdg_icon_cache_update fi } pkg_postinst() { - if use gtk || use qt5 || use qt6; then + if use gtk || use qt6; then xdg_desktop_database_update xdg_icon_cache_update fi