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 571A6138334 for ; Mon, 11 Mar 2019 00:36:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F9D5E0D8F; Mon, 11 Mar 2019 00:36:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 31653E0D8F for ; Mon, 11 Mar 2019 00:36:33 +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 5A86F335D0D for ; Mon, 11 Mar 2019 00:36:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16197564 for ; Mon, 11 Mar 2019 00:36: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: <1552264513.359fc371b09aa331917b8f5af3b0019bed1252e0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtxmlpatterns/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild X-VCS-Directories: dev-qt/qtxmlpatterns/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 359fc371b09aa331917b8f5af3b0019bed1252e0 X-VCS-Branch: master Date: Mon, 11 Mar 2019 00:36: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: a8eed874-29b8-4d7b-b273-2520cf475d23 X-Archives-Hash: 64ece5ff59542f6b29795a3d8df8713f commit: 359fc371b09aa331917b8f5af3b0019bed1252e0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Mar 11 00:35:13 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Mar 11 00:35:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359fc371 dev-qt/qtxmlpatterns: Add missing DEPEND on dev-qt/qtdeclarative Closes: https://bugs.gentoo.org/679472 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild new file mode 100644 index 00000000000..c18dcf034f8 --- /dev/null +++ b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtdeclarative-${PV} +" +RDEPEND="${DEPEND}"