From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 3BD6215807A for ; Sat, 07 Jun 2025 11:18:21 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0953C343154 for ; Sat, 07 Jun 2025 11:18:21 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 20EBB1103C1; Sat, 07 Jun 2025 11:18:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 bobolink.gentoo.org (Postfix) with ESMTPS id 1455D1103C1 for ; Sat, 07 Jun 2025 11:18:16 +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 B8F303430FF for ; Sat, 07 Jun 2025 11:18:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E2042822 for ; Sat, 07 Jun 2025 11:18:14 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1749295061.300ee9b77d46f3e728c8f27fab5e549a4cc2ec8e.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt6-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 300ee9b77d46f3e728c8f27fab5e549a4cc2ec8e X-VCS-Branch: master Date: Sat, 07 Jun 2025 11:18:14 +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: 9bd4f1f6-f99a-4de4-99f3-3b3c2ab09424 X-Archives-Hash: 7b40d5be0deceaaeee621c4187b0ab83 commit: 300ee9b77d46f3e728c8f27fab5e549a4cc2ec8e Author: Ionen Wolkens gentoo org> AuthorDate: Sat Jun 7 11:12:25 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Jun 7 11:17:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=300ee9b7 qt6-build.eclass: set CMAKE_QA_COMPAT_SKIP=1 Bug: https://bugs.gentoo.org/957476 Bug: https://bugs.gentoo.org/957475 Signed-off-by: Ionen Wolkens gentoo.org> eclass/qt6-build.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/qt6-build.eclass b/eclass/qt6-build.eclass index d0c29871f35b..f8b01845a4c9 100644 --- a/eclass/qt6-build.eclass +++ b/eclass/qt6-build.eclass @@ -178,6 +178,9 @@ qt6-build_src_configure() { local mycmakeargs=("${defaultcmakeargs[@]}") fi + # Qt has quite a lot of unused (false positive) CMakeLists.txt + local CMAKE_QA_COMPAT_SKIP=1 + cmake_src_configure }