Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libquotient/
Date: Sun, 28 Mar 2021 14:17:09
Message-Id: 1616940953.c9806b6d0b793029d75d1db0c774ab69e3f94251.asturm@gentoo
1 commit: c9806b6d0b793029d75d1db0c774ab69e3f94251
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 28 13:45:59 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 28 14:15:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9806b6d
7
8 net-libs/libquotient: 0.6.6 version bump
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-libs/libquotient/Manifest | 1 +
14 net-libs/libquotient/libquotient-0.6.6.ebuild | 39 +++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/net-libs/libquotient/Manifest b/net-libs/libquotient/Manifest
18 index 515c2b5d547..3a3648f0a63 100644
19 --- a/net-libs/libquotient/Manifest
20 +++ b/net-libs/libquotient/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libquotient-0.6.4.tar.gz 559830 BLAKE2B 23a2d5bed5a5bcd30ffa00465291f5670d187d44991fe424bce5a2ce1ffc9d4fc09b0cc1e44e7b2b2470f82f6a3bcf4be2d6d9185d2952761a9a94d6f4fae2ce SHA512 6f505a697b6bd123004faaaae4ea6788ed985dafd965c5768cc838be98d6b27f65d5fb04c02d41c6a9ca2ce622acbd49264a9a14a99a087126d2852a926184ce
23 DIST libquotient-0.6.5.tar.gz 560003 BLAKE2B b23437c3ef204da731723946e372685cb492ee5feab3f71f5770a27c1fa2d2810676ed2c9dbdb95499055e05a3589db92c75190471ba4dc14f3aaea8f2282216 SHA512 9079de0eec103f15cb7092319546b8be213b460ab172444e4f2f2b10d06db85485fda48546b3291db9014fddd8b22542119d6bbeb69bee1f2a208ac87990c3e4
24 +DIST libquotient-0.6.6.tar.gz 560130 BLAKE2B a8f12af320e0f67b0fe40ec3892cfb2bb7686f066633c061936007e0eceefe5133d3c021a0d1856504f606b5c1bdb66ffa9d8d304b0b631be34f938ffaa061d6 SHA512 7560194bee5b6478ac8efd15d6cfef9cc003073744b4860e3177e51e49135cf2ad96c69e8cd21e64c1f9902ea4d27c26d84d200fc862c5c0daeb0cc4bb4ea65d
25
26 diff --git a/net-libs/libquotient/libquotient-0.6.6.ebuild b/net-libs/libquotient/libquotient-0.6.6.ebuild
27 new file mode 100644
28 index 00000000000..0474fff2b60
29 --- /dev/null
30 +++ b/net-libs/libquotient/libquotient-0.6.6.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake
38 +
39 +DESCRIPTION="Qt5-based SDK to develop applications for Matrix"
40 +HOMEPAGE="https://github.com/quotient-im/libQuotient"
41 +SRC_URI="https://github.com/quotient-im/libQuotient/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +S="${WORKDIR}/libQuotient-${PV}"
43 +
44 +LICENSE="LGPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE=""
48 +
49 +DEPEND="
50 + dev-qt/qtcore:5
51 + dev-qt/qtgui:5
52 + dev-qt/qtmultimedia:5
53 + dev-qt/qtnetwork:5
54 +"
55 +RDEPEND="${DEPEND}"
56 +
57 +PATCHES=(
58 + # downstream patches
59 + "${FILESDIR}"/${PN}-0.6.3-no-android.patch
60 + "${FILESDIR}"/${PN}-0.6.3-no-tests.patch
61 +)
62 +
63 +src_configure() {
64 + local mycmakeargs=(
65 + -DQuotient_INSTALL_TESTS=OFF
66 + -DQuotient_ENABLE_E2EE=OFF # TODO: libolm, libqtolm not packaged
67 + -DCMAKE_DISABLE_FIND_PACKAGE_Git=ON # no thanks.
68 + )
69 + cmake_src_configure
70 +}