Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/spotify-tray/
Date: Thu, 16 Sep 2021 18:04:23
Message-Id: 1631815438.8828233cfe93238bc49eda2f83a9d9ea2da7b592.andrewammerlaan@gentoo
1 commit: 8828233cfe93238bc49eda2f83a9d9ea2da7b592
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 16 18:03:58 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 16 18:03:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8828233c
7
8 media-sound/spotify-tray: add version 1.3.2
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 media-sound/spotify-tray/Manifest | 1 +
14 media-sound/spotify-tray/spotify-tray-1.3.2.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/media-sound/spotify-tray/Manifest b/media-sound/spotify-tray/Manifest
18 index 3bfe4a05e03..334c376f03c 100644
19 --- a/media-sound/spotify-tray/Manifest
20 +++ b/media-sound/spotify-tray/Manifest
21 @@ -1 +1,2 @@
22 DIST spotify-tray-1.3.1.tar.gz 22084 BLAKE2B ee8f269d1ac618794eee8a67b814f689f3a65f18433a1e3c2382465a2b9b247e70e16fb43f061d1c7cef9188f116d0c7e8478fe3ffe2ab5f2de54dc8ccb40808 SHA512 c1fd533e3879f2d9e451264969bc797c6b8ca35f191460d40822728fc6b637ec7487154b0794871f25cbd6e01b16c7ff5eb33806a1235ac09e45e49580d1337a
23 +DIST spotify-tray-1.3.2.tar.gz 22298 BLAKE2B da1399db3d42d969d983b9bae695ff55dbdff47ef49ac79e10e2681df45489505028901a0946dd70495a6a74b9eef979f9ef07a722a08cb93a2ba6749c106f4a SHA512 74ae5ebaa61497a0274646dad04d408bb4176bbbacbb0e80211bec9218d09e293c8abf4c9424de8123ba4440d63adb58c5b68ca53690d2e348d52efbbc3f88c1
24
25 diff --git a/media-sound/spotify-tray/spotify-tray-1.3.2.ebuild b/media-sound/spotify-tray/spotify-tray-1.3.2.ebuild
26 new file mode 100644
27 index 00000000000..28d534d9a35
28 --- /dev/null
29 +++ b/media-sound/spotify-tray/spotify-tray-1.3.2.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 2019-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools xdg
37 +
38 +DESCRIPTION="Wrapper around the Spotify client that adds a tray icon"
39 +HOMEPAGE="https://github.com/tsmetana/spotify-tray"
40 +SRC_URI="https://github.com/tsmetana/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +KEYWORDS="~amd64"
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +
46 +DEPEND="
47 + x11-libs/gtk+:3[X]
48 +"
49 +RDEPEND="${DEPEND}
50 + media-sound/spotify
51 +"
52 +
53 +src_prepare() {
54 + default
55 + # Fix the name of the icon
56 + sed -i -e 's/Icon=spotify/Icon=spotify-client/g' spotify-tray.desktop.in || die
57 + eautoreconf
58 +}