Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/scream/
Date: Wed, 12 Jan 2022 08:34:59
Message-Id: 1641976476.54a23786de97567ce2c3c32c5989fb96d65c7026.flow@gentoo
1 commit: 54a23786de97567ce2c3c32c5989fb96d65c7026
2 Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
3 AuthorDate: Tue Jan 11 19:28:02 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 12 08:34:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a23786
7
8 media-sound/scream: drop old
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
12 Closes: https://github.com/gentoo/gentoo/pull/23743
13 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
14
15 media-sound/scream/Manifest | 1 -
16 media-sound/scream/scream-3.8.ebuild | 43 ------------------------------------
17 2 files changed, 44 deletions(-)
18
19 diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest
20 index b3e52d7a1dfc..99e80ea18113 100644
21 --- a/media-sound/scream/Manifest
22 +++ b/media-sound/scream/Manifest
23 @@ -1,2 +1 @@
24 -DIST scream-3.8.tar.gz 1114613 BLAKE2B 7c178477bbe2e1079394319657ff5bef2cacddb7ebbac0c527ff676ebd1fb66c4f00cff6578202deda96baa78d1d3a95a994e658d2bc893f10a3f3f13cf3d2eb SHA512 0ec3e68177a5852528b8dc0eed35088c7b399a59762063c5f08e06581340884123d37aebcedc0534acfb0ab0702c2d6dfc033cfcbf6d7e80faf8963ab0827983
25 DIST scream-3.9.tar.gz 1114518 BLAKE2B f7ae8ca69bc786fdb8055b2d1d5cd8fb9350c147465e1d75936defba8ea630351b4a559e508ef3b1f3bbd24d9b2bf96b6450577c7e5e334aacfd54f71efc5928 SHA512 83cb5b9daca82395b955fc8e01be4a466c6ebcc3839179c47912a78294ca98abed3833b6c636632a37e9d944750f56680a2a55975376756d183c9ed9b1d3dede
26
27 diff --git a/media-sound/scream/scream-3.8.ebuild b/media-sound/scream/scream-3.8.ebuild
28 deleted file mode 100644
29 index 82133a82fe29..000000000000
30 --- a/media-sound/scream/scream-3.8.ebuild
31 +++ /dev/null
32 @@ -1,43 +0,0 @@
33 -# Copyright 2020-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit cmake
39 -
40 -DESCRIPTION="Plays sound received from network or from a QEMU Windows VM"
41 -HOMEPAGE="https://github.com/duncanthrax/scream"
42 -S="${WORKDIR}/${P}/Receivers/unix"
43 -
44 -if [[ ${PV} == *9999 ]]; then
45 - inherit git-r3
46 - EGIT_REPO_URI="https://github.com/duncanthrax/scream.git"
47 -else
48 - SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz"
49 - KEYWORDS="~amd64"
50 -fi
51 -
52 -LICENSE="Ms-PL"
53 -SLOT="0"
54 -IUSE="alsa jack pcap pulseaudio"
55 -
56 -RDEPEND="
57 - alsa? ( media-libs/alsa-lib )
58 - jack? (
59 - media-libs/soxr
60 - virtual/jack
61 - )
62 - pcap? ( net-libs/libpcap )
63 - pulseaudio? ( media-sound/pulseaudio )"
64 -DEPEND="${RDEPEND}"
65 -BDEPEND="virtual/pkgconfig"
66 -
67 -src_configure() {
68 - local mycmakeargs=(
69 - -DALSA_ENABLE=$(usex alsa)
70 - -DJACK_ENABLE=$(usex jack)
71 - -DPCAP_ENABLE=$(usex pcap)
72 - -DPULSEAUDIO_ENABLE=$(usex pulseaudio)
73 - )
74 - cmake_src_configure
75 -}