Dropped upstreamed

This commit is contained in:
Gerben Jan Dijkman 2023-06-27 12:56:25 +02:00
parent 903660d8b4
commit 18aee89d03
3 changed files with 0 additions and 49 deletions

View File

@ -1 +0,0 @@
DIST olm-3.2.15.tar.bz2 2744760 BLAKE2B 44486a63217998010a0bb7e01ff3315c88e139d686b97158e67af29b2f052912412541fb944a17c5d8931df9c641a73e521ef8d0ff352b80fe30bd6fb73b2e7b SHA512 81832766e477fc17908e8d1c49b5403d87b5977fd9102605d95ef2a3907619b7301e32fe0e18ec0f575b1f004ce248633307ff43b0f48bc9bb2313cdfefd6ea7

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@tastytea.de</email>
<name>Ronny (tastytea) Gutbrod</name>
</maintainer>
<longdescription lang="en">
An implementation of the Double Ratchet cryptographic ratchet written in
C and C++11 and exposed as a C API.
</longdescription>
<upstream>
<bugs-to>https://github.com/matrix-org/olm/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -1,33 +0,0 @@
# Copyright 2020-2023 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"
KEYWORDS="~amd64 ~arm64"
IUSE="+pie test"
RESTRICT="!test? ( test )"
DOCS=( README.md docs/{{,meg}olm,signing}.md docs/{"DH ",double_}ratchet.svg )
src_configure() {
local mycmakeargs=(
-DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie)
-DOLM_TESTS=$(usex test)
)
cmake_src_configure
}
src_test() {
local -x BUILD_DIR="${BUILD_DIR}/tests"
cmake_src_test
}