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: Fri, 08 Oct 2021 07:37:51
Message-Id: 1633678652.8a094ae4e756002bc57f24b149eb2269f4431c87.asturm@gentoo
1 commit: 8a094ae4e756002bc57f24b149eb2269f4431c87
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 8 07:32:07 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 8 07:37:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a094ae4
7
8 net-libs/libquotient: 0.6.11 version bump
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-libs/libquotient/Manifest | 1 +
14 net-libs/libquotient/libquotient-0.6.11.ebuild | 39 ++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/net-libs/libquotient/Manifest b/net-libs/libquotient/Manifest
18 index d4dfe16ef54..e011aebd4e9 100644
19 --- a/net-libs/libquotient/Manifest
20 +++ b/net-libs/libquotient/Manifest
21 @@ -1 +1,2 @@
22 DIST libquotient-0.6.10.tar.gz 561503 BLAKE2B ee5f15af16a964a517e9d51befbf79dbaeb433f366cc1c730681f1bf088a53a38a2ccacfcf4f3cc38998b4a15dbb8418d0864da936f00911f0af94f5aadac36f SHA512 3a70f06c6f74d599033a17527e0bd7abd2b52b9425114def3b0630fbf8ff5c22095227856cae7319e2fb6f7025439606cd986183c5d530463c092209b7291f5a
23 +DIST libquotient-0.6.11.tar.gz 562144 BLAKE2B 75be68371ac1873e38f9ff81273419ed1eb773d02408137a7dafc9a60f520a2ba0b5556783272f8902dd98f7f5dac3a92ab393da5dd48acfffeba8b1631a84dd SHA512 76a11c80822ae3279d643559b481a09fe45b1f8effb7b0efeeb7ab54f13dd06997d9220dcb36c13d270f5641f496dba350f528c49e239757f4546de9fbe940fa
24
25 diff --git a/net-libs/libquotient/libquotient-0.6.11.ebuild b/net-libs/libquotient/libquotient-0.6.11.ebuild
26 new file mode 100644
27 index 00000000000..f18a7ff7294
28 --- /dev/null
29 +++ b/net-libs/libquotient/libquotient-0.6.11.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="Qt5-based SDK to develop applications for Matrix"
39 +HOMEPAGE="https://github.com/quotient-im/libQuotient"
40 +SRC_URI="https://github.com/quotient-im/libQuotient/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +S="${WORKDIR}/libQuotient-${PV}"
42 +
43 +LICENSE="LGPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc64"
46 +IUSE=""
47 +
48 +DEPEND="
49 + dev-qt/qtcore:5
50 + dev-qt/qtgui:5
51 + dev-qt/qtmultimedia:5
52 + dev-qt/qtnetwork:5
53 +"
54 +RDEPEND="${DEPEND}"
55 +
56 +PATCHES=(
57 + # downstream patches
58 + "${FILESDIR}"/${PN}-0.6.3-no-android.patch
59 + "${FILESDIR}"/${PN}-0.6.3-no-tests.patch
60 +)
61 +
62 +src_configure() {
63 + local mycmakeargs=(
64 + -DQuotient_INSTALL_TESTS=OFF
65 + -DQuotient_ENABLE_E2EE=OFF # TODO: libolm, libqtolm not packaged
66 + -DCMAKE_DISABLE_FIND_PACKAGE_Git=ON # no thanks.
67 + )
68 + cmake_src_configure
69 +}