Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/yarock/
Date: Mon, 29 Nov 2021 13:28:54
Message-Id: 1638192516.ed393dbad7f510ad9c011f5d254d0e89c68bb91f.asturm@gentoo
1 commit: ed393dbad7f510ad9c011f5d254d0e89c68bb91f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 29 13:25:33 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 29 13:28:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed393dba
7
8 media-sound/yarock: Drop 1.4.0-r1
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/yarock/yarock-1.4.0-r1.ebuild | 61 -------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/media-sound/yarock/yarock-1.4.0-r1.ebuild b/media-sound/yarock/yarock-1.4.0-r1.ebuild
17 deleted file mode 100644
18 index 39414485b05d..000000000000
19 --- a/media-sound/yarock/yarock-1.4.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit cmake
28 -
29 -MY_P="Yarock_${PV}_Sources"
30 -DESCRIPTION="Qt-based music player"
31 -HOMEPAGE="https://seb-apps.github.io/yarock/"
32 -SRC_URI="https://launchpad.net/${PN}/1.x/${PV}/+download/${MY_P}.tar.gz"
33 -
34 -LICENSE="GPL-3"
35 -SLOT="0"
36 -KEYWORDS="~amd64"
37 -IUSE="mpv phonon vlc"
38 -
39 -BDEPEND="
40 - dev-qt/linguist-tools:5
41 -"
42 -RDEPEND="
43 - dev-cpp/htmlcxx
44 - dev-qt/qtcore:5
45 - dev-qt/qtdbus:5
46 - dev-qt/qtgui:5
47 - dev-qt/qtnetwork:5
48 - dev-qt/qtsql:5[sqlite]
49 - dev-qt/qtwidgets:5
50 - dev-qt/qtxml:5
51 - media-libs/taglib
52 - x11-libs/libX11
53 - phonon? ( >=media-libs/phonon-4.11.0 )
54 - vlc? ( media-video/vlc:= )
55 -"
56 -DEPEND="${RDEPEND}
57 - dev-qt/qtconcurrent:5
58 - dev-qt/qtx11extras:5
59 -"
60 -
61 -DOCS=( CHANGES.md README.md )
62 -
63 -S="${WORKDIR}/${MY_P}"
64 -
65 -src_prepare() {
66 - cmake_src_prepare
67 - sed -e "/^install.*org.yarock.appdata.xml/s:share/appdata:share/metadata:" \
68 - -i CMakeLists.txt || die
69 - sed -e "/^Version/d" \
70 - -i data/org.yarock.desktop || die
71 -}
72 -
73 -src_configure() {
74 - local mycmakeargs=(
75 - -DENABLE_QT5=ON
76 - -DENABLE_MPV=$(usex mpv)
77 - -DENABLE_PHONON=$(usex phonon)
78 - -DENABLE_VLC=$(usex vlc)
79 - )
80 -
81 - cmake_src_configure
82 -}