Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/mtxclient/
Date: Tue, 21 Dec 2021 11:46:52
Message-Id: 1640087130.45108f9eb7db49abc33c579871ed103d6cb48add.tastytea@gentoo
1 commit: 45108f9eb7db49abc33c579871ed103d6cb48add
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Mon Dec 20 00:44:24 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Tue Dec 21 11:45:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=45108f9e
7
8 dev-libs/mtxclient: Version bump 0.6.1
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 dev-libs/mtxclient/Manifest | 1 +
13 dev-libs/mtxclient/mtxclient-0.6.1.ebuild | 42 +++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-libs/mtxclient/Manifest b/dev-libs/mtxclient/Manifest
17 index 15fff9866..ad5039692 100644
18 --- a/dev-libs/mtxclient/Manifest
19 +++ b/dev-libs/mtxclient/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mtxclient-0.5.2_pre20210916.tar.gz 588702 BLAKE2B 643e37c13348d0fff65b38e16581918d1b9555d6d6cc19ce4965eaa5e34620a6d0f60af7bb075ffded4b585f38b889565c3cfd42f02c2749e4a8c8f013b6c125 SHA512 778257173c08930a05d3bef91afe34d4cf963f57e75159f99a2468513df80669215002ecf5f10c3639a8fef944aeb814cb447e4984c5e1c8ffd87d53b8938030
22 DIST mtxclient-0.6.0.tar.gz 593602 BLAKE2B 61e9f332e2056727c0d8e6b473e42591e3a8fc4841b8f76a1fe3ac61b1ccc9ba40c0dd248201ae301ce56d21aa0e034d65c5a7e7c33b202361b6ab6fd763aa01 SHA512 8ee9cd6cfab64625029ed18b5de72523a8d7dc1ac67ff8d9f32d730f15e473248ec11447a480ce9f76629d1bd5722785f229857489a63e71e92aae0990a3d20f
23 +DIST mtxclient-0.6.1.tar.gz 596763 BLAKE2B 68acd5c4e0d03ac3afe8ce4b756099ced9a672fbe9017e4f654249f65ca2e0bec830119eb05651a9ed96ee139e3a4823a0ce4a74a63b37ae91076f0b70f4c9fd SHA512 96463a135e402b7255a0d5641babe128751ee731f01ccd50fdf0a1e60d6f036370998c2d05fa286129def8a4591183bf0d63fe631b9a7a2fa92ae7a748cf07d0
24
25 diff --git a/dev-libs/mtxclient/mtxclient-0.6.1.ebuild b/dev-libs/mtxclient/mtxclient-0.6.1.ebuild
26 new file mode 100644
27 index 000000000..f1520046c
28 --- /dev/null
29 +++ b/dev-libs/mtxclient/mtxclient-0.6.1.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 2020-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="Client API library for Matrix, built on top of Boost.Asio"
39 +HOMEPAGE="https://github.com/Nheko-Reborn/mtxclient"
40 +SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + dev-libs/olm
51 + >=dev-libs/openssl-1.1.0
52 + dev-libs/spdlog
53 + >=dev-cpp/coeurl-0.1.1
54 +"
55 +DEPEND="
56 + ${RDEPEND}
57 + dev-cpp/nlohmann_json
58 + test? ( dev-cpp/gtest )
59 +"
60 +
61 +PATCHES=(
62 + "${FILESDIR}/0.6.0_remove_network_tests.patch"
63 +)
64 +
65 +src_configure() {
66 + local -a mycmakeargs=(
67 + -DBUILD_LIB_TESTS="$(usex test)"
68 + -DBUILD_LIB_EXAMPLES=OFF
69 + )
70 +
71 + cmake_src_configure
72 +}