From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1231354-garchives=archives.gentoo.org@lists.gentoo.org>
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 C9E701382C5
	for <garchives@archives.gentoo.org>; Wed, 16 Dec 2020 01:44:50 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 04138E0871;
	Wed, 16 Dec 2020 01:44:50 +0000 (UTC)
Received: from smtp.gentoo.org (mail.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 86F42E0871
	for <gentoo-commits@lists.gentoo.org>; Wed, 16 Dec 2020 01:44:49 +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 4AE41340E5C
	for <gentoo-commits@lists.gentoo.org>; Wed, 16 Dec 2020 01:44:48 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ABC956
	for <gentoo-commits@lists.gentoo.org>; Wed, 16 Dec 2020 01:44:46 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1608083082.ba80e9c528c217f9a14a329b7df38237a9e897a7.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/rssguard/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-news/rssguard/rssguard-3.8.3.ebuild
X-VCS-Directories: net-news/rssguard/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: ba80e9c528c217f9a14a329b7df38237a9e897a7
X-VCS-Branch: master
Date: Wed, 16 Dec 2020 01:44:46 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 58040191-1db8-42d0-8111-6f90415254fa
X-Archives-Hash: 561a28be06616b5743c4320e7dd71e00

commit:     ba80e9c528c217f9a14a329b7df38237a9e897a7
Author:     Peter Alfredsen <crabbedhaloablution <AT> icloud <DOT> com>
AuthorDate: Tue Dec 15 08:38:28 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 01:44:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba80e9c5

net-news/rssguard: fix qtdeclarative dep

Missing libQt5Qml.so from qtdeclarative package would cause error
when compiling:
Project ERROR: Unknown module(s) in QT: qml
make: *** [Makefile:48: sub-src-librssguard-make_first-ordered] Error 3
Fix by adding dep on dev-qt/qtdeclarative:5

Closes: https://bugs.gentoo.org/760045
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Peter Alfredsen <crabbedhaloablution <AT> icloud.com>
Closes: https://github.com/gentoo/gentoo/pull/18662
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-news/rssguard/rssguard-3.8.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-news/rssguard/rssguard-3.8.3.ebuild b/net-news/rssguard/rssguard-3.8.3.ebuild
index 974794479bf..e6813d67096 100644
--- a/net-news/rssguard/rssguard-3.8.3.ebuild
+++ b/net-news/rssguard/rssguard-3.8.3.ebuild
@@ -23,6 +23,7 @@ DEPEND="
 	dev-qt/qtsql:5
 	dev-qt/qtwidgets:5
 	dev-qt/qtxml:5
+	dev-qt/qtdeclarative:5
 	webengine? ( dev-qt/qtwebengine:5[widgets] )
 "
 RDEPEND="${DEPEND}"