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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1F36A1580B9 for ; Wed, 25 Aug 2021 14:36:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFD85E0905; Wed, 25 Aug 2021 14:36:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C823EE0907 for ; Wed, 25 Aug 2021 14:36:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93267342B90 for ; Wed, 25 Aug 2021 14:36:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E49EC8EE for ; Wed, 25 Aug 2021 14:36:41 +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: <1629902152.61e8838aaf1f6351bddf2109c9f7a919cd5d7479.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.2-r1.ebuild X-VCS-Directories: dev-qt/qdoc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 61e8838aaf1f6351bddf2109c9f7a919cd5d7479 X-VCS-Branch: master Date: Wed, 25 Aug 2021 14:36:41 +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: f33ad2ff-9c34-4d44-bac2-aba5d1f1e7c8 X-Archives-Hash: 6db6d733a35e1b748f4cbe8a07eebc69 commit: 61e8838aaf1f6351bddf2109c9f7a919cd5d7479 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 22 22:23:50 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 25 14:35:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61e8838a dev-qt/qdoc: Add dev-qt/qtxml to DEPEND - EAPI-8 - Drop dev-qt/qtchooser from RDEPEND Closes: https://bugs.gentoo.org/802492 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qdoc/qdoc-5.15.2-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dev-qt/qdoc/qdoc-5.15.2-r1.ebuild b/dev-qt/qdoc/qdoc-5.15.2-r1.ebuild new file mode 100644 index 00000000000..09d86b11c1d --- /dev/null +++ b/dev-qt/qdoc/qdoc-5.15.2-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QT5_MODULE="qttools" +inherit qt5-build + +DESCRIPTION="Qt documentation generator" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +fi + +IUSE="qml" + +RDEPEND=" + ~dev-qt/qtcore-${PV}:5= + sys-devel/clang:= + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +# TODO: we know it is bogus, figure out how to disable checks, bug 802492 +DEPEND="${RDEPEND} + ~dev-qt/qtxml-${PV} +" + +src_prepare() { + qt_use_disable_mod qml qmldevtools-private \ + src/qdoc/qdoc.pro + + qt5-build_src_prepare +}