From 18aee89d03ea7e028ab57eb2deb3340feb617545 Mon Sep 17 00:00:00 2001 From: Gerben Jan Dijkman Date: Tue, 27 Jun 2023 12:56:25 +0200 Subject: [PATCH] Dropped upstreamed --- dev-libs/olm/Manifest | 1 - dev-libs/olm/metadata.xml | 15 --------------- dev-libs/olm/olm-3.2.15.ebuild | 33 --------------------------------- 3 files changed, 49 deletions(-) delete mode 100644 dev-libs/olm/Manifest delete mode 100755 dev-libs/olm/metadata.xml delete mode 100644 dev-libs/olm/olm-3.2.15.ebuild diff --git a/dev-libs/olm/Manifest b/dev-libs/olm/Manifest deleted file mode 100644 index 75abd2e..0000000 --- a/dev-libs/olm/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST olm-3.2.15.tar.bz2 2744760 BLAKE2B 44486a63217998010a0bb7e01ff3315c88e139d686b97158e67af29b2f052912412541fb944a17c5d8931df9c641a73e521ef8d0ff352b80fe30bd6fb73b2e7b SHA512 81832766e477fc17908e8d1c49b5403d87b5977fd9102605d95ef2a3907619b7301e32fe0e18ec0f575b1f004ce248633307ff43b0f48bc9bb2313cdfefd6ea7 diff --git a/dev-libs/olm/metadata.xml b/dev-libs/olm/metadata.xml deleted file mode 100755 index 15a33f2..0000000 --- a/dev-libs/olm/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - gentoo@tastytea.de - Ronny (tastytea) Gutbrod - - - An implementation of the Double Ratchet cryptographic ratchet written in - C and C++11 and exposed as a C API. - - - https://github.com/matrix-org/olm/issues - - diff --git a/dev-libs/olm/olm-3.2.15.ebuild b/dev-libs/olm/olm-3.2.15.ebuild deleted file mode 100644 index 1f35b71..0000000 --- a/dev-libs/olm/olm-3.2.15.ebuild +++ /dev/null @@ -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 -}