Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/spotify-tray/
Date: Wed, 05 Jan 2022 16:42:45
Message-Id: 1641400955.ee5a8dacc289e957c9ef6f1a0cb224b4ef1b07dc.prometheanfire@gentoo
1 commit: ee5a8dacc289e957c9ef6f1a0cb224b4ef1b07dc
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 28 12:50:53 2021 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 5 16:42:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee5a8dac
7
8 media-sound/spotify-tray: drop desktop file
9
10 launching is now handled in spotify launch script from spotify ebuild
11
12 Package-Manager: Portage-3.0.30, Repoman-3.0.3
13 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
14 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
15
16 .../{spotify-tray-1.3.2.ebuild => spotify-tray-1.3.2-r1.ebuild} | 8 +++++++-
17 1 file changed, 7 insertions(+), 1 deletion(-)
18
19 diff --git a/media-sound/spotify-tray/spotify-tray-1.3.2.ebuild b/media-sound/spotify-tray/spotify-tray-1.3.2-r1.ebuild
20 similarity index 81%
21 rename from media-sound/spotify-tray/spotify-tray-1.3.2.ebuild
22 rename to media-sound/spotify-tray/spotify-tray-1.3.2-r1.ebuild
23 index 5de180e44e4e..dc3be566510a 100644
24 --- a/media-sound/spotify-tray/spotify-tray-1.3.2.ebuild
25 +++ b/media-sound/spotify-tray/spotify-tray-1.3.2-r1.ebuild
26 @@ -1,7 +1,7 @@
27 # Copyright 2019-2021 Gentoo Authors
28 # Distributed under the terms of the GNU General Public License v2
29
30 -EAPI=7
31 +EAPI=8
32
33 inherit autotools xdg
34
35 @@ -29,3 +29,9 @@ src_prepare() {
36 sed -i -e 's/Icon=spotify/Icon=spotify-client/g' spotify-tray.desktop.in || die
37 eautoreconf
38 }
39 +
40 +src_install() {
41 + default
42 + # remove desktop file, launching is handled in spotify ebuild
43 + rm "${ED}/usr/share/applications/spotify-tray.desktop" || die
44 +}