public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ronny Gutbrod" <gentoo@tastytea.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/olm/
Date: Fri,  3 Jun 2022 14:52:02 +0000 (UTC)	[thread overview]
Message-ID: <1654267902.123208cb2c347bc1007d4adfe6b6af32f46ca0d1.tastytea@gentoo> (raw)

commit:     123208cb2c347bc1007d4adfe6b6af32f46ca0d1
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Jun  3 14:50:28 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Jun  3 14:51:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=123208cb

dev-libs/olm: drop 3.2.8, 3.2.9

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 dev-libs/olm/Manifest         |  2 --
 dev-libs/olm/olm-3.2.8.ebuild | 35 -----------------------------------
 dev-libs/olm/olm-3.2.9.ebuild | 35 -----------------------------------
 3 files changed, 72 deletions(-)

diff --git a/dev-libs/olm/Manifest b/dev-libs/olm/Manifest
index f7958ee00..6b464a7a2 100644
--- a/dev-libs/olm/Manifest
+++ b/dev-libs/olm/Manifest
@@ -1,4 +1,2 @@
 DIST olm-3.2.11.tar.bz2 2735303 BLAKE2B 577465d5a5246cda85848e0caa2912bd225af520c23a247cacec06669bae2ab0b7c3bf209a203e8bf2f7e0e573f7f30f8699704a2b6cf2e7996209eade69bb8c SHA512 4ab2263395efd33ecb336577d72845c8eaf6f6478448d78f104424ea7f48f6273e13df4038f96a05e946dbe5f6beb952bbbc86b81eaca035195dbdaaf9a2dd26
 DIST olm-3.2.12.tar.bz2 2742680 BLAKE2B 47c3bacaf05cc0bb6088da34e6a031f9c770893771ddcf9f13bc0e10a050139f14969dfc91f38684336872089b4cbf9d66e4bd85692989eba5fc3df966da3cd2 SHA512 a25db4c72910512beca9120db59ebeeefc5fff6a381e88ae7cf261bc5ab896edc2cfe25ece57b7b28b2e3d8bc66367c457133c147e1a3514f926714159b5cf6f
-DIST olm-3.2.8.tar.bz2 489350 BLAKE2B bf8b31262c15da2cffd5eeb1f426fe60e83dc60b3377191d65b4b4992133f92adfb7d18deb69b075207550b1b32220a1d807f331e58b41839d8aa5330a80bf3d SHA512 2a249b6880ff0c368458c14d6bae3103890f23dceaaf5753d140884185590fd54f1d7bcb8959f43b3b0f5c9302f76e380e6cdfe3340feab7f9fff60362a39303
-DIST olm-3.2.9.tar.bz2 2734794 BLAKE2B 6c5cc89804071f961ebd571dd5d3fac43aa9517fda4e029a0855fc89f4ec46e49b784aa2cfbf8cec8e34b8ef06c5e61f2111ec30fc872f44c90795359892f205 SHA512 c196430054920d78587fc79eed25312d11498594257b9a12057bfb2feaf2abfb7df35854952b4a36bc22a8c62b99b58e55f9434001a00791ca62ca47556957a5

diff --git a/dev-libs/olm/olm-3.2.8.ebuild b/dev-libs/olm/olm-3.2.8.ebuild
deleted file mode 100644
index aa65115cc..000000000
--- a/dev-libs/olm/olm-3.2.8.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2020-2021 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="doc test"
-RESTRICT="!test? ( test )"
-
-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
-}

diff --git a/dev-libs/olm/olm-3.2.9.ebuild b/dev-libs/olm/olm-3.2.9.ebuild
deleted file mode 100644
index 19d31a4cd..000000000
--- a/dev-libs/olm/olm-3.2.9.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2020-2022 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="doc test"
-RESTRICT="!test? ( test )"
-
-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
-}


             reply	other threads:[~2022-06-03 14:52 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-03 14:52 Ronny Gutbrod [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-08 12:36 [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/olm/ Anna Vyalkova
2023-05-12 16:26 Ronny Gutbrod
2023-05-12 16:26 Ronny Gutbrod
2023-02-23 14:02 Ronny Gutbrod
2023-02-17 15:01 Anna Vyalkova
2022-12-09 16:26 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-12-09  1:26 ` [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-12-09  1:26 Ronny Gutbrod
2022-10-08 14:28 Ronny Gutbrod
2022-10-08 14:28 Ronny Gutbrod
2022-10-08 14:28 Ronny Gutbrod
2022-06-03 14:52 Ronny Gutbrod
2022-05-18 18:19 Tony Olagbaiye
2022-05-18 17:01 Tony Olagbaiye
2022-04-09  3:30 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-04-09  2:45 ` [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-01-08  3:05 Ronny Gutbrod
2021-12-13 16:23 Ronny Gutbrod
2021-12-13 16:23 Ronny Gutbrod
2021-12-07  8:41 Ronny Gutbrod
2021-12-07  8:41 Ronny Gutbrod
2021-09-17  9:53 Ronny Gutbrod
2021-09-17  9:53 Ronny Gutbrod
2021-09-17  9:53 Ronny Gutbrod
2021-06-22 22:43 Marco Scardovi
2021-06-22 15:27 Marco Scardovi
2021-06-01 21:16 Ronny Gutbrod
2021-06-01 21:16 Ronny Gutbrod
2021-05-25  7:04 Ronny Gutbrod
2021-05-25  7:04 Ronny Gutbrod
2021-03-28  9:39 Andrew Ammerlaan
2021-02-22 23:28 Ronny Gutbrod
2021-02-22 23:28 Ronny Gutbrod
2020-10-06 22:40 Ronny Gutbrod
2020-10-06 19:55 Ronny Gutbrod
2020-10-06 19:53 Ronny Gutbrod
2020-06-11 17:48 Ronny Gutbrod
2020-05-25  1:03 Ronny Gutbrod

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1654267902.123208cb2c347bc1007d4adfe6b6af32f46ca0d1.tastytea@gentoo \
    --to=gentoo@tastytea.de \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox