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/olm/
Date: Fri, 17 Sep 2021 09:54:00
Message-Id: 1631872397.aadff049ecc879d2738c9332fb47bb77a2d9b863.tastytea@gentoo
1 commit: aadff049ecc879d2738c9332fb47bb77a2d9b863
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Fri Sep 17 09:39:18 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Fri Sep 17 09:53:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aadff049
7
8 dev-libs/olm: Version bump 3.2.6.
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 dev-libs/olm/Manifest | 1 +
13 dev-libs/olm/olm-3.2.6.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-libs/olm/Manifest b/dev-libs/olm/Manifest
17 index 5bf808fec..295bde68e 100644
18 --- a/dev-libs/olm/Manifest
19 +++ b/dev-libs/olm/Manifest
20 @@ -1,2 +1,3 @@
21 DIST olm-3.2.3.tar.bz2 478365 BLAKE2B d8b5069e07958a4fe12a0aeea2ba25a7b7c319c96c980abd78f78881489e68d400594a0076ecf345561364c657eb9faf54819043ca9b51af01633d8e21edf069 SHA512 b01b5bb41d828e15520a1054cd9a479ff5d464552bc379269b9bf12fd54929d2e4cd31a46c0ea07a26ead7410e50caf80d3711912131147794d88d96947ffe59
22 DIST olm-3.2.4.tar.bz2 479336 BLAKE2B 9de6b869c94a7f47b269b55526408ce6930ac5354495608038888f13efe72a6fab498c85c6ffe073a1f76391cbe4a83cfc6c65382d593bc487dafe64894ca0ed SHA512 94f661a2c9fe22f7dfefc89e488be37da2fe19dedd3ba296e09c55e63886ed82b71a30d84ecbdfa5dee820b1b6a918daefab248536c137459b8f244dc514920b
23 +DIST olm-3.2.6.tar.bz2 485416 BLAKE2B 414e636a1bd32ff7698f3db7748a77aaa2449d260c79f3dcb64db6c509e4f972e4098e439838eb876bc7b738d25a5c704fed94edc9ca41f2c036c3d1438934f0 SHA512 e22af4e7791962978ea4c39b9bebf807a864ca52b329f032e5e398864cd142c1f166aadbce74cb85f776cb0b8352754151f64c60dac2ce1858def73d684fd44a
24
25 diff --git a/dev-libs/olm/olm-3.2.6.ebuild b/dev-libs/olm/olm-3.2.6.ebuild
26 new file mode 100644
27 index 000000000..aa65115cc
28 --- /dev/null
29 +++ b/dev-libs/olm/olm-3.2.6.ebuild
30 @@ -0,0 +1,35 @@
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="Implementation of the olm and megolm cryptographic ratchets"
39 +HOMEPAGE="https://gitlab.matrix.org/matrix-org/olm"
40 +SRC_URI="https://gitlab.matrix.org/matrix-org/${PN}/-/archive/${PV}/${P}.tar.bz2"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64"
45 +
46 +IUSE="doc test"
47 +RESTRICT="!test? ( test )"
48 +
49 +src_configure() {
50 + local -a mycmakeargs=(
51 + -DOLM_TESTS="$(usex test)"
52 + )
53 +
54 + cmake_src_configure
55 +}
56 +
57 +src_test() {
58 + BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
59 +}
60 +
61 +src_install() {
62 + use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
63 +
64 + cmake_src_install
65 +}