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 7995315817D for ; Fri, 14 Jun 2024 03:20:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A022DE2B2C; Fri, 14 Jun 2024 03:20:27 +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 076E5E2B30 for ; Fri, 14 Jun 2024 03:20:27 +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 1320E33BF29 for ; Fri, 14 Jun 2024 03:20:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CB3111DF for ; Fri, 14 Jun 2024 03:20:24 +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: <1718335071.ba33e9917070db6cb89903a1728fb4f5209e5fe6.sam@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/prison/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/prison/prison-9999.ebuild X-VCS-Directories: kde-frameworks/prison/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ba33e9917070db6cb89903a1728fb4f5209e5fe6 X-VCS-Branch: master Date: Fri, 14 Jun 2024 03:20:24 +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: ea692dfa-eee9-4847-8984-86ea6f6b8387 X-Archives-Hash: 7aa466c6d21313a2888fb38ffb980c5c commit: ba33e9917070db6cb89903a1728fb4f5209e5fe6 Author: Sam James gentoo org> AuthorDate: Fri Jun 14 03:17:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 14 03:17:51 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ba33e991 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-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/prison/prison-9999.ebuild b/kde-frameworks/prison/prison-9999.ebuild index 8061c88d6b..26bad447f4 100644 --- a/kde-frameworks/prison/prison-9999.ebuild +++ b/kde-frameworks/prison/prison-9999.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