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 490D315817D for ; Fri, 14 Jun 2024 03:20:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56732E2B30; Fri, 14 Jun 2024 03:20:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38F45E2B30 for ; Fri, 14 Jun 2024 03:20:29 +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 7D35E33BF03 for ; Fri, 14 Jun 2024 03:20:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4C8C11DF for ; Fri, 14 Jun 2024 03:20:26 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1718335203.e60887ea1a8abacc713d0ab85c387771c6d2c927.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/prison/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/prison/prison-6.3.0.ebuild X-VCS-Directories: kde-frameworks/prison/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e60887ea1a8abacc713d0ab85c387771c6d2c927 X-VCS-Branch: master Date: Fri, 14 Jun 2024 03:20:26 +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: 04b441d9-8d16-4dd5-9887-b949e16ad5a4 X-Archives-Hash: d80d8e5bfad04f2459035ce53cc494d8 commit: e60887ea1a8abacc713d0ab85c387771c6d2c927 Author: Sam James gentoo org> AuthorDate: Fri Jun 14 03:17:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 14 03:20:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e60887ea kde-frameworks/prison: fix disabling QtQuick USE=-qml is broken since upstream commit d99e5a221b737edd6f923388e97f06d34b283577 because find_package is called w/ REQUIRED, so *_DISABLE_FIND_PACKAGE just causes a fatal error. Use the upstream option for it instead (WITH_QUICK). Closes: https://bugs.gentoo.org/934223 Signed-off-by: Sam James gentoo.org> kde-frameworks/prison/prison-6.3.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/prison/prison-6.3.0.ebuild b/kde-frameworks/prison/prison-6.3.0.ebuild index f62482a86756..85639b816689 100644 --- a/kde-frameworks/prison/prison-6.3.0.ebuild +++ b/kde-frameworks/prison/prison-6.3.0.ebuild @@ -27,7 +27,8 @@ DEPEND="${RDEPEND} src_configure() { local mycmakeargs=( - $(cmake_use_find_package qml Qt6Quick) + # TODO: WITH_MULTIMEDIA? + -DWITH_QUICK=$(usex qml) ) ecm_src_configure