Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-im/nheko/
Date: Thu, 24 Jun 2021 09:27:37
Message-Id: 1624526735.41951c598b6cc4194609be6bfe1efd5c2f287e43.tastytea@gentoo
1 commit: 41951c598b6cc4194609be6bfe1efd5c2f287e43
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Thu Jun 24 09:22:24 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Thu Jun 24 09:25:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41951c59
7
8 net-im/nheko: Fix dependencies
9
10 - Move dev-db/lmdb and dev-libs/spdlog to RDEPEND
11 - Move dev-cpp/nlohmann_json to DEPEND
12
13 Closes: https://bugs.gentoo.org/798303
14 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
15
16 net-im/nheko/nheko-0.8.2-r1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
17 1 file changed, 38 insertions(+)
18
19 diff --git a/net-im/nheko/nheko-0.8.2-r1.ebuild b/net-im/nheko/nheko-0.8.2-r1.ebuild
20 new file mode 100644
21 index 000000000..56bf754ca
22 --- /dev/null
23 +++ b/net-im/nheko/nheko-0.8.2-r1.ebuild
24 @@ -0,0 +1,38 @@
25 +# Copyright 2020-2021 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +inherit cmake xdg
31 +
32 +DESCRIPTION="Desktop client for Matrix using Qt and C++14"
33 +HOMEPAGE="https://github.com/Nheko-Reborn/nheko"
34 +SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 +
36 +LICENSE="GPL-3"
37 +SLOT="0"
38 +KEYWORDS="~amd64"
39 +IUSE=""
40 +
41 +RDEPEND="
42 + dev-qt/qtmultimedia:5[gstreamer,qml]
43 + dev-qt/qtquickcontrols2:5
44 + dev-qt/qtgraphicaleffects:5
45 + dev-qt/qtsvg:5
46 + dev-qt/qtconcurrent:5
47 + app-text/cmark
48 + >=dev-libs/mtxclient-0.5.1
49 + dev-libs/qtkeychain
50 + >=dev-db/lmdb++-1.0.0
51 + dev-libs/spdlog
52 +"
53 +DEPEND="
54 + dev-cpp/nlohmann_json
55 + ${RDEPEND}
56 +"
57 +BDEPEND="dev-qt/linguist-tools:5"
58 +
59 +src_prepare() {
60 + cmake_src_prepare
61 + xdg_src_prepare
62 +}