aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny (tastytea) Gutbrod <gentoo@tastytea.de>2021-06-01 23:16:00 +0200
committerRonny (tastytea) Gutbrod <gentoo@tastytea.de>2021-06-01 23:16:00 +0200
commit80c79d26bd3a0e70035fa4a117a06ec2d5664bbb (patch)
tree22c2cc25a17d7cbbbe3921d7c35e99215494af4a
parentdev-libs/olm: Version bump 3.2.4. (diff)
downloadguru-80c79d26.tar.gz
guru-80c79d26.tar.bz2
guru-80c79d26.zip
dev-libs/olm: Remove old ebuild.
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
-rw-r--r--dev-libs/olm/Manifest1
-rw-r--r--dev-libs/olm/olm-3.2.2.ebuild38
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-libs/olm/Manifest b/dev-libs/olm/Manifest
index 1538ee704..5bf808fec 100644
--- a/dev-libs/olm/Manifest
+++ b/dev-libs/olm/Manifest
@@ -1,3 +1,2 @@
-DIST olm-3.2.2.tar.bz2 475682 BLAKE2B f6588281ef236c36c4a678eb02250e6b0d496719dc8736b1bdcbc346a16c3b579d988d6cbe99749473e53bbc03830e90c666ced112cd5a85b63f7ebe0704b6cb SHA512 a541299f2fbdaa2be5698a690cd753142311a3206011d70186e1122d575478f91e7feba207fe5d09ce506330dd1f9fbb71dccb3de7014c5333427fdd3b77b668
DIST olm-3.2.3.tar.bz2 478365 BLAKE2B d8b5069e07958a4fe12a0aeea2ba25a7b7c319c96c980abd78f78881489e68d400594a0076ecf345561364c657eb9faf54819043ca9b51af01633d8e21edf069 SHA512 b01b5bb41d828e15520a1054cd9a479ff5d464552bc379269b9bf12fd54929d2e4cd31a46c0ea07a26ead7410e50caf80d3711912131147794d88d96947ffe59
DIST olm-3.2.4.tar.bz2 479336 BLAKE2B 9de6b869c94a7f47b269b55526408ce6930ac5354495608038888f13efe72a6fab498c85c6ffe073a1f76391cbe4a83cfc6c65382d593bc487dafe64894ca0ed SHA512 94f661a2c9fe22f7dfefc89e488be37da2fe19dedd3ba296e09c55e63886ed82b71a30d84ecbdfa5dee820b1b6a918daefab248536c137459b8f244dc514920b
diff --git a/dev-libs/olm/olm-3.2.2.ebuild b/dev-libs/olm/olm-3.2.2.ebuild
deleted file mode 100644
index b9d2717a8..000000000
--- a/dev-libs/olm/olm-3.2.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Implementation of the olm and megolm cryptographic ratchets"
-HOMEPAGE="https://gitlab.matrix.org/matrix-org/olm"
-SRC_URI="https://gitlab.matrix.org/matrix-org/${PN}/-/archive/${PV}/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-src_configure() {
- local -a mycmakeargs=(
- -DOLM_TESTS="$(usex test)"
- )
-
- cmake_src_configure
-}
-
-src_test() {
- BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
-}
-
-src_install() {
- use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
-
- cmake_src_install
-}