Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/srt/
Date: Sun, 30 May 2021 19:35:06
Message-Id: 1622403280.aaea5f5898a29a8a4ccd14ca907352ea35d885f4.asturm@gentoo
1 commit: aaea5f5898a29a8a4ccd14ca907352ea35d885f4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 22 17:16:44 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 19:34:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaea5f58
7
8 net-libs/srt: Drop 1.4.1-r1, cmake-utils--
9
10 Bug: https://bugs.gentoo.org/770568
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 net-libs/srt/Manifest | 1 -
15 net-libs/srt/srt-1.4.1-r1.ebuild | 49 ----------------------------------------
16 2 files changed, 50 deletions(-)
17
18 diff --git a/net-libs/srt/Manifest b/net-libs/srt/Manifest
19 index 5b3b65ea180..c57c0c949f1 100644
20 --- a/net-libs/srt/Manifest
21 +++ b/net-libs/srt/Manifest
22 @@ -1,2 +1 @@
23 -DIST srt-1.4.1.tar.gz 1316195 BLAKE2B 1831494c9817d03b7f69e46344b41ace13c22e1817aced2fdeef715ecc7da9e3cf421c399951177ce052328e5baa56445b66769b7a9e4762efee3394c43568a4 SHA512 ff30b7e413c4b9f0b5076d9ebf5f0942b5d802773a27ed1f7b886a12eb01eec0148d1c305e933d4f54ee1b451a445a48cba582111eb2057326c0f61fab097f94
24 DIST srt-1.4.2.tar.gz 1538231 BLAKE2B 1b3f625bb5a6436d6c35f957796217ed8c7f9d2412e96cbb2b83b8372f0738b5c9219b218b644e74f6f16457d1b8606fedc238310e800cce84fe127f86b33be1 SHA512 4c978e3898737e566f47222a0095df1b49591d79927850cc94c838b7eaccf401faf1c5d038fa45b6fd30c85f980e7c212a79c07ed6f9008430e8a5a594a31ffe
25
26 diff --git a/net-libs/srt/srt-1.4.1-r1.ebuild b/net-libs/srt/srt-1.4.1-r1.ebuild
27 deleted file mode 100644
28 index 4392bba2726..00000000000
29 --- a/net-libs/srt/srt-1.4.1-r1.ebuild
30 +++ /dev/null
31 @@ -1,49 +0,0 @@
32 -# Copyright 2018-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit cmake-multilib
38 -
39 -DESCRIPTION="Secure Reliable Transport (SRT) library and tools"
40 -HOMEPAGE="https://github.com/Haivision/srt"
41 -
42 -if [[ ${PV} == *9999 ]] ; then
43 - EGIT_REPO_URI="https://github.com/Haivision/${PN}.git"
44 - inherit git-r3
45 -else
46 - SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 -sparc x86 ~ppc-macos ~x64-macos"
48 -fi
49 -
50 -LICENSE="MPL-2.0"
51 -SLOT="0"
52 -IUSE="gnutls"
53 -
54 -DEPEND="
55 - gnutls? (
56 - dev-libs/nettle:0=[${MULTILIB_USEDEP}]
57 - net-libs/gnutls:0=[${MULTILIB_USEDEP}]
58 - )
59 - !gnutls? (
60 - dev-libs/openssl:0=[${MULTILIB_USEDEP}]
61 - )
62 -"
63 -RDEPEND="${DEPEND}"
64 -
65 -PATCHES=(
66 - "${FILESDIR}/${PN}-always-GNUInstallDirs.patch"
67 -)
68 -
69 -src_prepare() {
70 - cmake-utils_src_prepare
71 - sed -i -e "s:hcrypt_ut.c::" "${S}"/haicrypt/*.maf || die
72 -}
73 -
74 -src_configure() {
75 - local mycmakeargs=(
76 - -DENABLE_STATIC=OFF
77 - -DUSE_GNUTLS=$(usex gnutls)
78 - )
79 - cmake-multilib_src_configure
80 -}