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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C950D1581EC for ; Wed, 20 Nov 2024 17:39:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C8ADE07EE; Wed, 20 Nov 2024 17:39:44 +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 CBB8CE07EE for ; Wed, 20 Nov 2024 17:39:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF001335DCC for ; Wed, 20 Nov 2024 17:39:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78B53AED for ; Wed, 20 Nov 2024 17:39:41 +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: <1732124294.1a107138034e5a669e62ae62ba9d5b1c157b2960.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/dolphin/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/dolphin/dolphin-24.11.80.ebuild kde-apps/dolphin/dolphin-24.12.49.9999.ebuild kde-apps/dolphin/dolphin-9999.ebuild X-VCS-Directories: kde-apps/dolphin/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1a107138034e5a669e62ae62ba9d5b1c157b2960 X-VCS-Branch: master Date: Wed, 20 Nov 2024 17:39:41 +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: 9449f3c8-dd74-45d3-adeb-edc7bbd06230 X-Archives-Hash: 6ff2a26ea4a7457bb40b419dba39dc96 commit: 1a107138034e5a669e62ae62ba9d5b1c157b2960 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Nov 20 17:38:14 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 20 17:38:14 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1a107138 kde-apps/dolphin: Fix unused cmake arg warning w/ IUSE !test Bug: https://bugs.gentoo.org/944187 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/dolphin/dolphin-24.11.80.ebuild | 4 +++- kde-apps/dolphin/dolphin-24.12.49.9999.ebuild | 4 +++- kde-apps/dolphin/dolphin-9999.ebuild | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/kde-apps/dolphin/dolphin-24.11.80.ebuild b/kde-apps/dolphin/dolphin-24.11.80.ebuild index fdf4b84ac3..3294010f72 100644 --- a/kde-apps/dolphin/dolphin-24.11.80.ebuild +++ b/kde-apps/dolphin/dolphin-24.11.80.ebuild @@ -61,11 +61,13 @@ RDEPEND="${DEPEND} src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt6=ON - -DCMAKE_DISABLE_FIND_PACKAGE_SeleniumWebDriverATSPI=ON # not packaged $(cmake_use_find_package semantic-desktop KF6Baloo) $(cmake_use_find_package semantic-desktop KF6BalooWidgets) $(cmake_use_find_package telemetry KF6UserFeedback) ) + use test && mycmakeargs+=( + -DCMAKE_DISABLE_FIND_PACKAGE_SeleniumWebDriverATSPI=ON # not packaged + ) ecm_src_configure } diff --git a/kde-apps/dolphin/dolphin-24.12.49.9999.ebuild b/kde-apps/dolphin/dolphin-24.12.49.9999.ebuild index c1f1f24f81..3ad2783beb 100644 --- a/kde-apps/dolphin/dolphin-24.12.49.9999.ebuild +++ b/kde-apps/dolphin/dolphin-24.12.49.9999.ebuild @@ -61,11 +61,13 @@ RDEPEND="${DEPEND} src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt6=ON - -DCMAKE_DISABLE_FIND_PACKAGE_SeleniumWebDriverATSPI=ON # not packaged $(cmake_use_find_package semantic-desktop KF6Baloo) $(cmake_use_find_package semantic-desktop KF6BalooWidgets) $(cmake_use_find_package telemetry KF6UserFeedback) ) + use test && mycmakeargs+=( + -DCMAKE_DISABLE_FIND_PACKAGE_SeleniumWebDriverATSPI=ON # not packaged + ) ecm_src_configure } diff --git a/kde-apps/dolphin/dolphin-9999.ebuild b/kde-apps/dolphin/dolphin-9999.ebuild index c1f1f24f81..3ad2783beb 100644 --- a/kde-apps/dolphin/dolphin-9999.ebuild +++ b/kde-apps/dolphin/dolphin-9999.ebuild @@ -61,11 +61,13 @@ RDEPEND="${DEPEND} src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt6=ON - -DCMAKE_DISABLE_FIND_PACKAGE_SeleniumWebDriverATSPI=ON # not packaged $(cmake_use_find_package semantic-desktop KF6Baloo) $(cmake_use_find_package semantic-desktop KF6BalooWidgets) $(cmake_use_find_package telemetry KF6UserFeedback) ) + use test && mycmakeargs+=( + -DCMAKE_DISABLE_FIND_PACKAGE_SeleniumWebDriverATSPI=ON # not packaged + ) ecm_src_configure }