Gentoo Archives: gentoo-commits

From: Octiabrina Terrien-Puig <octiabrina@××××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/ncpamixer/
Date: Thu, 22 Apr 2021 14:39:53
Message-Id: 1619102387.b50d5fd13955fea0ed451522d728f467d89c6661.octiabrina@gentoo
1 commit: b50d5fd13955fea0ed451522d728f467d89c6661
2 Author: Octiabrina Terrien-Puig <octiabrina <AT> myrvogna <DOT> net>
3 AuthorDate: Thu Apr 22 14:37:30 2021 +0000
4 Commit: Octiabrina Terrien-Puig <octiabrina <AT> myrvogna <DOT> net>
5 CommitDate: Thu Apr 22 14:39:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b50d5fd1
7
8 media-sound/ncpamixer: drop live
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Octiabrina Terrien-Puig <octiabrina <AT> myrvogna.net>
12
13 media-sound/ncpamixer/ncpamixer-9999.ebuild | 37 -----------------------------
14 1 file changed, 37 deletions(-)
15
16 diff --git a/media-sound/ncpamixer/ncpamixer-9999.ebuild b/media-sound/ncpamixer/ncpamixer-9999.ebuild
17 deleted file mode 100644
18 index 94168ac46..000000000
19 --- a/media-sound/ncpamixer/ncpamixer-9999.ebuild
20 +++ /dev/null
21 @@ -1,37 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit cmake
28 -
29 -DESCRIPTION="A ncurses mixer for PulseAudio inspired by pavucontrol"
30 -HOMEPAGE="https://github.com/fulhax/ncpamixer"
31 -
32 -if [[ ${PV} == 9999 ]]; then
33 - EGIT_REPO_URI="https://github.com/fulhax/ncpamixer.git"
34 - inherit git-r3
35 -else
36 - SRC_URI="https://github.com/fulhax/ncpamixer/archive/${PV}.tar.gz -> ${P}.tar.gz"
37 - KEYWORDS="~amd64"
38 -fi
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -IUSE="+wide"
43 -
44 -DEPEND="
45 - media-sound/pulseaudio
46 - sys-libs/ncurses
47 -"
48 -RDEPEND="${DEPEND}"
49 -
50 -CMAKE_USE_DIR="${S}/src"
51 -
52 -src_configure() {
53 - local mycmakeargs=(
54 - -DUSE_WIDE="$(usex wide)"
55 - )
56 -
57 - cmake_src_configure
58 -}