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: Tue, 01 Jun 2021 21:16:26
Message-Id: 1622582160.80c79d26bd3a0e70035fa4a117a06ec2d5664bbb.tastytea@gentoo
1 commit: 80c79d26bd3a0e70035fa4a117a06ec2d5664bbb
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Tue Jun 1 21:16:00 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Tue Jun 1 21:16:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=80c79d26
7
8 dev-libs/olm: Remove old ebuild.
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.2.ebuild | 38 --------------------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-libs/olm/Manifest b/dev-libs/olm/Manifest
17 index 1538ee704..5bf808fec 100644
18 --- a/dev-libs/olm/Manifest
19 +++ b/dev-libs/olm/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST olm-3.2.2.tar.bz2 475682 BLAKE2B f6588281ef236c36c4a678eb02250e6b0d496719dc8736b1bdcbc346a16c3b579d988d6cbe99749473e53bbc03830e90c666ced112cd5a85b63f7ebe0704b6cb SHA512 a541299f2fbdaa2be5698a690cd753142311a3206011d70186e1122d575478f91e7feba207fe5d09ce506330dd1f9fbb71dccb3de7014c5333427fdd3b77b668
22 DIST olm-3.2.3.tar.bz2 478365 BLAKE2B d8b5069e07958a4fe12a0aeea2ba25a7b7c319c96c980abd78f78881489e68d400594a0076ecf345561364c657eb9faf54819043ca9b51af01633d8e21edf069 SHA512 b01b5bb41d828e15520a1054cd9a479ff5d464552bc379269b9bf12fd54929d2e4cd31a46c0ea07a26ead7410e50caf80d3711912131147794d88d96947ffe59
23 DIST olm-3.2.4.tar.bz2 479336 BLAKE2B 9de6b869c94a7f47b269b55526408ce6930ac5354495608038888f13efe72a6fab498c85c6ffe073a1f76391cbe4a83cfc6c65382d593bc487dafe64894ca0ed SHA512 94f661a2c9fe22f7dfefc89e488be37da2fe19dedd3ba296e09c55e63886ed82b71a30d84ecbdfa5dee820b1b6a918daefab248536c137459b8f244dc514920b
24
25 diff --git a/dev-libs/olm/olm-3.2.2.ebuild b/dev-libs/olm/olm-3.2.2.ebuild
26 deleted file mode 100644
27 index b9d2717a8..000000000
28 --- a/dev-libs/olm/olm-3.2.2.ebuild
29 +++ /dev/null
30 @@ -1,38 +0,0 @@
31 -# Copyright 2020-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
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"
45 -
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=""
50 -DEPEND="${RDEPEND}"
51 -
52 -src_configure() {
53 - local -a mycmakeargs=(
54 - -DOLM_TESTS="$(usex test)"
55 - )
56 -
57 - cmake_src_configure
58 -}
59 -
60 -src_test() {
61 - BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
62 -}
63 -
64 -src_install() {
65 - use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
66 -
67 - cmake_src_install
68 -}