From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1296555-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 E38CA1382C5
	for <garchives@archives.gentoo.org>; Thu, 24 Jun 2021 12:22:48 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B2820E086E;
	Thu, 24 Jun 2021 12:22:46 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.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 9D49AE0870
	for <gentoo-commits@lists.gentoo.org>; Thu, 24 Jun 2021 12:22:46 +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 4A771342B40
	for <gentoo-commits@lists.gentoo.org>; Thu, 24 Jun 2021 12:22:45 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id D07AF7C9
	for <gentoo-commits@lists.gentoo.org>; Thu, 24 Jun 2021 12:22:41 +0000 (UTC)
From: "Jian Lin" <jlin.gentoo@outlook.com>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Jian Lin" <jlin.gentoo@outlook.com>
Message-ID: <1624526735.41951c598b6cc4194609be6bfe1efd5c2f287e43.jian@gentoo>
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-im/nheko/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: net-im/nheko/nheko-0.8.2-r1.ebuild
X-VCS-Directories: net-im/nheko/
X-VCS-Committer: jian
X-VCS-Committer-Name: Jian Lin
X-VCS-Revision: 41951c598b6cc4194609be6bfe1efd5c2f287e43
X-VCS-Branch: master
Date: Thu, 24 Jun 2021 12:22:41 +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: 3b26d952-47bf-49a4-96e5-ce24d325e256
X-Archives-Hash: 20640afaca496184a160046386ec6fd1

commit:     41951c598b6cc4194609be6bfe1efd5c2f287e43
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Thu Jun 24 09:22:24 2021 +0000
Commit:     Jian Lin <jlin.gentoo <AT> outlook <DOT> com>
CommitDate: Thu Jun 24 09:25:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41951c59

net-im/nheko: Fix dependencies

- Move dev-db/lmdb and dev-libs/spdlog to RDEPEND
- Move dev-cpp/nlohmann_json to DEPEND

Closes: https://bugs.gentoo.org/798303
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 net-im/nheko/nheko-0.8.2-r1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/net-im/nheko/nheko-0.8.2-r1.ebuild b/net-im/nheko/nheko-0.8.2-r1.ebuild
new file mode 100644
index 000000000..56bf754ca
--- /dev/null
+++ b/net-im/nheko/nheko-0.8.2-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake xdg
+
+DESCRIPTION="Desktop client for Matrix using Qt and C++14"
+HOMEPAGE="https://github.com/Nheko-Reborn/nheko"
+SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+	dev-qt/qtmultimedia:5[gstreamer,qml]
+	dev-qt/qtquickcontrols2:5
+	dev-qt/qtgraphicaleffects:5
+	dev-qt/qtsvg:5
+	dev-qt/qtconcurrent:5
+	app-text/cmark
+	>=dev-libs/mtxclient-0.5.1
+	dev-libs/qtkeychain
+	>=dev-db/lmdb++-1.0.0
+	dev-libs/spdlog
+"
+DEPEND="
+	dev-cpp/nlohmann_json
+	${RDEPEND}
+"
+BDEPEND="dev-qt/linguist-tools:5"
+
+src_prepare() {
+	cmake_src_prepare
+	xdg_src_prepare
+}