Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libshout/
Date: Fri, 13 May 2022 17:07:14
Message-Id: 1652461596.68c72ded5e880e325ff41c55a1b09c74f8d1db81.fordfrog@gentoo
1 commit: 68c72ded5e880e325ff41c55a1b09c74f8d1db81
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 17:06:30 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 17:06:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c72ded
7
8 media-libs/libshout: dropped obsolete 2.4.5
9
10 Bug: https://bugs.gentoo.org/844004
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/libshout/Manifest | 1 -
14 media-libs/libshout/libshout-2.4.5.ebuild | 51 -------------------------------
15 2 files changed, 52 deletions(-)
16
17 diff --git a/media-libs/libshout/Manifest b/media-libs/libshout/Manifest
18 index 79266e7a3d6d..708b174149db 100644
19 --- a/media-libs/libshout/Manifest
20 +++ b/media-libs/libshout/Manifest
21 @@ -1,2 +1 @@
22 -DIST libshout-2.4.5.tar.gz 543991 BLAKE2B a3ceabd150413e9d1cee2118fe9576959bfa05d86e261b2574969a9a665aba3da4ac1c39db2b27d033fe587232a69a569d80362f856bba667277b5454dd170ca SHA512 290844185da16961f03434d3e341573dd6cb0139e5fa81902903021b641382d2629302d7c356bc591b35656754e07f4e44a8d9e782e092b17a051b9ae8f54341
23 DIST libshout-2.4.6.tar.gz 571153 BLAKE2B 68a24ecd3fa8c1057883d2d9013b18b9b7507d0ee79876efe79c8ad1ae32c408421879340968b77c3d6bf6e8eb3c3c87a8ee5447f351fd871f13683fcbb5ab52 SHA512 e8478cdbf9a27674c16a7b620d1576f2e31a47262b8e29b314d0f46d4e5be24b9a29790b7b226f48939bc34cacf5734fae0aa5686c7ed5879cdbd827ff8e0339
24
25 diff --git a/media-libs/libshout/libshout-2.4.5.ebuild b/media-libs/libshout/libshout-2.4.5.ebuild
26 deleted file mode 100644
27 index a6d316796f74..000000000000
28 --- a/media-libs/libshout/libshout-2.4.5.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools multilib-minimal
37 -
38 -DESCRIPTION="library for connecting and sending data to icecast servers"
39 -HOMEPAGE="https://www.icecast.org/"
40 -SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
45 -IUSE="speex static-libs theora"
46 -
47 -RDEPEND="
48 - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
49 - >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
50 - dev-libs/openssl:0=
51 - speex? ( media-libs/speex[${MULTILIB_USEDEP}] )
52 - theora? ( media-libs/libtheora[${MULTILIB_USEDEP}] )
53 -"
54 -DEPEND="${RDEPEND}
55 - virtual/pkgconfig
56 -"
57 -
58 -MULTILIB_WRAPPED_HEADERS=(
59 - /usr/include/shout/shout.h
60 -)
61 -
62 -src_prepare() {
63 - default
64 - # Fix docdir
65 - sed '/^docdir/s@$(PACKAGE)@$(PF)@' -i Makefile.am || die
66 - eautoreconf
67 - multilib_copy_sources
68 -}
69 -
70 -multilib_src_configure() {
71 - local myeconfargs=(
72 - $(use_enable speex)
73 - $(use_enable static-libs static)
74 - $(use_enable theora)
75 - )
76 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
77 -}
78 -
79 -multilib_src_install_all() {
80 - find "${ED}" -name '*.la' -delete || die
81 -}