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 8DAB115800D for ; Thu, 6 Jul 2023 12:13:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D13DE0870; Thu, 6 Jul 2023 12:13:12 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F03E7E0870 for ; Thu, 6 Jul 2023 12:13:11 +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 BF8333410B7 for ; Thu, 6 Jul 2023 12:13:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ECBDAC2 for ; Thu, 6 Jul 2023 12:13:09 +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: <1688645569.c5602815e618007273c7362a3397a2a8eb73e842.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/konqueror/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/konqueror/konqueror-23.04.2.ebuild X-VCS-Directories: kde-apps/konqueror/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c5602815e618007273c7362a3397a2a8eb73e842 X-VCS-Branch: master Date: Thu, 6 Jul 2023 12:13:09 +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: 4910e320-bd0f-4a32-8ccb-49e161a9a34e X-Archives-Hash: ca4a4701a52eea449218ffe41303ba18 commit: c5602815e618007273c7362a3397a2a8eb73e842 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jul 6 10:28:27 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jul 6 12:12:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5602815 kde-apps/konqueror: Drop IUSE X, option unsupported upstream See also: https://invent.kde.org/network/konqueror/-/merge_requests/155 https://invent.kde.org/network/konqueror/-/merge_requests/163 Bug: https://bugs.gentoo.org/813450 Bug: https://bugs.gentoo.org/909314 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/konqueror/konqueror-23.04.2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kde-apps/konqueror/konqueror-23.04.2.ebuild b/kde-apps/konqueror/konqueror-23.04.2.ebuild index 5e7d07f3aa90..1024d189ec9c 100644 --- a/kde-apps/konqueror/konqueror-23.04.2.ebuild +++ b/kde-apps/konqueror/konqueror-23.04.2.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/konqueror/" LICENSE="GPL-2" # TODO: CHECK SLOT="5" KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="activities speech X" +IUSE="activities speech" # 4 of 4 tests fail. Last checked for 4.0.3 RESTRICT="test" @@ -26,6 +26,7 @@ COMMON_DEPEND=" >=dev-qt/qtscript-${QTMIN}:5 >=dev-qt/qtwebengine-${QTMIN}:5[widgets] >=dev-qt/qtwidgets-${QTMIN}:5 + >=dev-qt/qtx11extras-${QTMIN}:5 >=dev-qt/qtxml-${QTMIN}:5 >=kde-frameworks/karchive-${KFMIN}:5 >=kde-frameworks/kbookmarks-${KFMIN}:5 @@ -52,7 +53,6 @@ COMMON_DEPEND=" >=kde-frameworks/kxmlgui-${KFMIN}:5 sys-libs/zlib speech? ( >=dev-qt/qtspeech-${QTMIN}:5 ) - X? ( >=dev-qt/qtx11extras-${QTMIN}:5 ) " DEPEND="${COMMON_DEPEND} activities? ( >=kde-frameworks/kactivities-${KFMIN}:5 ) @@ -73,7 +73,7 @@ src_configure() { -DCMAKE_DISABLE_FIND_PACKAGE_Hunspell=ON # requires fixing bug 634122 $(cmake_use_find_package activities KF5Activities) $(cmake_use_find_package speech Qt5TextToSpeech) - -DWITHOUT_X11=$(usex !X) + -DWITHOUT_X11=OFF ) ecm_src_configure }