aboutsummaryrefslogtreecommitdiff
path: root/dev-libs/olm/olm-3.2.7.ebuild
diff options
context:
space:
mode:
authorJulien Roy <julien@jroy.ca>2021-12-10 23:02:56 -0500
committerJulien Roy <julien@jroy.ca>2021-12-10 23:02:56 -0500
commit04f482636432e5cc7ce073b793b47355852bdd01 (patch)
tree1cc6425fe6dc4d345a5e07f193e763bf0e250788 /dev-libs/olm/olm-3.2.7.ebuild
parent8458abc1cf675676f3b563d8dcdd01f91702f241 (diff)
downloadMrRoy-Overlay-04f482636432e5cc7ce073b793b47355852bdd01.tar.gz
MrRoy-Overlay-04f482636432e5cc7ce073b793b47355852bdd01.tar.bz2
MrRoy-Overlay-04f482636432e5cc7ce073b793b47355852bdd01.zip
Remove olm ebuild, use guru instead
Diffstat (limited to 'dev-libs/olm/olm-3.2.7.ebuild')
-rw-r--r--dev-libs/olm/olm-3.2.7.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-libs/olm/olm-3.2.7.ebuild b/dev-libs/olm/olm-3.2.7.ebuild
deleted file mode 100644
index 412091d..0000000
--- a/dev-libs/olm/olm-3.2.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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"
-IUSE="doc test"
-KEYWORDS="~amd64"
-
-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
-}