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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4C87158232 for ; Fri, 6 Dec 2024 21:34:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA092E0933; Fri, 6 Dec 2024 21:33:59 +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 57B45E0940 for ; Fri, 6 Dec 2024 21:33:59 +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 4E9D133BF36 for ; Fri, 6 Dec 2024 21:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A136111DF for ; Fri, 6 Dec 2024 21:33:56 +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: <1733520618.cec29707624eea160b8828efb176de662256b6dc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-sdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/plasma-sdk/plasma-sdk-6.2.4.ebuild X-VCS-Directories: kde-plasma/plasma-sdk/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cec29707624eea160b8828efb176de662256b6dc X-VCS-Branch: master Date: Fri, 6 Dec 2024 21:33:56 +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: 3cbcd58b-dab3-495b-8f24-57995f9ae7b8 X-Archives-Hash: 5b15f97bc29a48cfe3f613f7b0ce8b9d commit: cec29707624eea160b8828efb176de662256b6dc Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Dec 6 21:25:02 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Dec 6 21:30:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec29707 kde-plasma/plasma-sdk: Set ECM_HANDBOOK=forceoptional ... and working around the non-standards use of kdoctools_create_manpage outside doc/ subdirectory, see also pending MR: https://invent.kde.org/plasma/plasma-sdk/-/merge_requests/133 Closes: https://bugs.gentoo.org/945980 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/plasma-sdk/plasma-sdk-6.2.4.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/kde-plasma/plasma-sdk/plasma-sdk-6.2.4.ebuild b/kde-plasma/plasma-sdk/plasma-sdk-6.2.4.ebuild index cc14a8df81f8..873145db5aac 100644 --- a/kde-plasma/plasma-sdk/plasma-sdk-6.2.4.ebuild +++ b/kde-plasma/plasma-sdk/plasma-sdk-6.2.4.ebuild @@ -3,6 +3,7 @@ EAPI=8 +ECM_HANDBOOK="forceoptional" ECM_TEST="true" KFMIN=6.6.0 PVCUT=$(ver_cut 1-3) @@ -40,3 +41,11 @@ RDEPEND="${DEPEND} >=dev-qt/qt5compat-${QTMIN}:6[qml] >=kde-frameworks/kirigami-${KFMIN}:6 " + +src_prepare() { + # bug 945980 + sed -e "s/^ *kdoctools_create_manpage.*(.*)/#& # disabled by USE !handbook/" \ + -i {engineexplorer,kqml,plasmoidviewer}/CMakeLists.txt || die + + ecm_src_prepare +}