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 446221580B9 for ; Wed, 25 Aug 2021 14:36:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01288E0909; Wed, 25 Aug 2021 14:36:51 +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 CD0ACE0909 for ; Wed, 25 Aug 2021 14:36:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 48AF6342BAB 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 038548F0 for ; Wed, 25 Aug 2021 14:36:42 +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.43dc53a52c78bc443b6079e8635b38219ebf147e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtplugininfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtplugininfo/qtplugininfo-5.15.2-r1.ebuild X-VCS-Directories: dev-qt/qtplugininfo/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 43dc53a52c78bc443b6079e8635b38219ebf147e X-VCS-Branch: master Date: Wed, 25 Aug 2021 14:36:42 +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: 4c3c0e08-f570-4b88-81f7-dd977d6a6a9c X-Archives-Hash: 5600802e57ebe90334b01ee7685f668f commit: 43dc53a52c78bc443b6079e8635b38219ebf147e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 22 22:24:37 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=43dc53a5 dev-qt/qtplugininfo: Add dev-qt/qtxml to DEPEND - EAPI-8 - Drop dev-qt/qtchooser from RDEPEND Closes: https://bugs.gentoo.org/795237 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtplugininfo/qtplugininfo-5.15.2-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.15.2-r1.ebuild b/dev-qt/qtplugininfo/qtplugininfo-5.15.2-r1.ebuild new file mode 100644 index 00000000000..064b136fc6a --- /dev/null +++ b/dev-qt/qtplugininfo/qtplugininfo-5.15.2-r1.ebuild @@ -0,0 +1,23 @@ +# 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="Qt5 plugin metadata dumper" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +RDEPEND=" + ~dev-qt/qtcore-${PV} +" +# TODO: we know it is bogus, figure out how to disable checks, bug 795237 +DEPEND="${RDEPEND} + ~dev-qt/qtxml-${PV} +"