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 1706515800D for ; Sat, 8 Jul 2023 21:18:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ABEAE0921; Sat, 8 Jul 2023 21:18:33 +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 29FA0E0921 for ; Sat, 8 Jul 2023 21:18:33 +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 E2FCF340DF7 for ; Sat, 8 Jul 2023 21:18:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3503FACF for ; Sat, 8 Jul 2023 21:18:30 +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: <1688851102.831e459631b9c29dd49d7db8366bb79fc5aca49d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlocation/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtlocation/qtlocation-5.15.10.ebuild X-VCS-Directories: dev-qt/qtlocation/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 831e459631b9c29dd49d7db8366bb79fc5aca49d X-VCS-Branch: master Date: Sat, 8 Jul 2023 21:18:30 +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: faac59dd-84a8-4bba-829c-2d28841e8914 X-Archives-Hash: a2fbd95279f7d80d518bbcda54549dda commit: 831e459631b9c29dd49d7db8366bb79fc5aca49d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jul 8 20:47:46 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jul 8 21:18:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831e4596 dev-qt/qtlocation: Move quirk back into local src_configure() Of course, qtlocation is not a qttools module, so qt5_tools_oos_quirk was never executed. Solve this by making the eclass function public and call qt5_configure_oos_quirk before qt5-build_src_configure. Closes: https://bugs.gentoo.org/910066 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtlocation/qtlocation-5.15.10.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-qt/qtlocation/qtlocation-5.15.10.ebuild b/dev-qt/qtlocation/qtlocation-5.15.10.ebuild index b668a16694a3..419c78914928 100644 --- a/dev-qt/qtlocation/qtlocation-5.15.10.ebuild +++ b/dev-qt/qtlocation/qtlocation-5.15.10.ebuild @@ -49,3 +49,10 @@ src_prepare() { qt5-build_src_prepare } fi + +src_configure() { + # src/plugins/geoservices requires files that are only generated when + # qmake is run in the root directory. Bug 633776. + qt5_configure_oos_quirk qtlocation-config.pri src/location + qt5-build_src_configure +}