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 CA0AB15800D for ; Sat, 8 Jul 2023 21:18:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0152E0920; Sat, 8 Jul 2023 21:18:32 +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 C49D1E0920 for ; Sat, 8 Jul 2023 21:18:32 +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 AFD09340DD9 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 21571AC7 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.09b5e775c478e4f669dcf7699f21a2f7000dda18.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qdoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qdoc/qdoc-5.15.10.ebuild X-VCS-Directories: dev-qt/qdoc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 09b5e775c478e4f669dcf7699f21a2f7000dda18 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: 597d8f4e-94bb-4180-9865-bb458b461a62 X-Archives-Hash: dab46d62f9bbf7a98870adba7533a807 commit: 09b5e775c478e4f669dcf7699f21a2f7000dda18 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jul 8 20:55:05 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=09b5e775 dev-qt/qdoc: Move quirk back into local src_configure() With qdoc being the only qttools module needing this. Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qdoc/qdoc-5.15.10.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-qt/qdoc/qdoc-5.15.10.ebuild b/dev-qt/qdoc/qdoc-5.15.10.ebuild index 7358ed9e1f7d..c84b2d272c02 100644 --- a/dev-qt/qdoc/qdoc-5.15.10.ebuild +++ b/dev-qt/qdoc/qdoc-5.15.10.ebuild @@ -32,3 +32,9 @@ src_prepare() { qt5-build_src_prepare } + +src_configure() { + # qt5_tools_configure() not enough here, needs another fix, bug 676948 + qt5_configure_oos_quirk qtqdoc-config.pri src/qdoc + qt5-build_src_configure +}