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, 03 Oct 2021 12:45:05
Message-Id: 1633265024.2cdf6527182ffa50c4376c3f4f73fc01cb8f091a.asturm@gentoo
1 commit: 2cdf6527182ffa50c4376c3f4f73fc01cb8f091a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 3 12:43:08 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 3 12:43:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cdf6527
7
8 net-libs/libquotient: 0.6.10 version bump
9
10 Package-Manager: Portage-3.0.26, 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.10.ebuild | 39 ++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/net-libs/libquotient/Manifest b/net-libs/libquotient/Manifest
18 index ec0748a6bb5..479462f75e8 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.9.tar.gz 561579 BLAKE2B 160bf9d8a49d4d20ec8fa34aa97ea4e4ceb4b124846f7f042b099de37b742ca5dad4fa7ad8966c6b7c478c2eefe823e6da5ea5e45560ff085e6c6d0ece4d8315 SHA512 3b1e36b402dc78f002c764b738b340f000e0ff23e1bbc753d1dc617a585661529b5f17f91e6093d45c14c0826fac86c56f36c3276c5c9712a74d66731204abca
24
25 diff --git a/net-libs/libquotient/libquotient-0.6.10.ebuild b/net-libs/libquotient/libquotient-0.6.10.ebuild
26 new file mode 100644
27 index 00000000000..f18a7ff7294
28 --- /dev/null
29 +++ b/net-libs/libquotient/libquotient-0.6.10.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 +}