diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-10-23 09:50:21 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-10-23 10:40:50 +0200 |
commit | 03eeca35f77421c64e3dbd6fab3d62c61536ac52 (patch) | |
tree | 6f768676df86c1a635901e01a567cea6c4bdc81e /media-sound | |
parent | dev-python/moddb: add 0.10.0 (diff) | |
download | gentoo-03eeca35f77421c64e3dbd6fab3d62c61536ac52.tar.gz gentoo-03eeca35f77421c64e3dbd6fab3d62c61536ac52.tar.bz2 gentoo-03eeca35f77421c64e3dbd6fab3d62c61536ac52.zip |
media-sound/spotify-tray: treeclean
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/spotify-tray/Manifest | 1 | ||||
-rw-r--r-- | media-sound/spotify-tray/metadata.xml | 12 | ||||
-rw-r--r-- | media-sound/spotify-tray/spotify-tray-1.3.2-r2.ebuild | 41 |
3 files changed, 0 insertions, 54 deletions
diff --git a/media-sound/spotify-tray/Manifest b/media-sound/spotify-tray/Manifest deleted file mode 100644 index 601df41d9063..000000000000 --- a/media-sound/spotify-tray/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST spotify-tray-1.3.2.tar.gz 22298 BLAKE2B da1399db3d42d969d983b9bae695ff55dbdff47ef49ac79e10e2681df45489505028901a0946dd70495a6a74b9eef979f9ef07a722a08cb93a2ba6749c106f4a SHA512 74ae5ebaa61497a0274646dad04d408bb4176bbbacbb0e80211bec9218d09e293c8abf4c9424de8123ba4440d63adb58c5b68ca53690d2e348d52efbbc3f88c1 diff --git a/media-sound/spotify-tray/metadata.xml b/media-sound/spotify-tray/metadata.xml deleted file mode 100644 index 1748f0786b3b..000000000000 --- a/media-sound/spotify-tray/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>andrewammerlaan@gentoo.org</email> - <name>Andrew Ammerlaan</name> - </maintainer> - <upstream> - <remote-id type="github">tsmetana/spotify-tray</remote-id> - <bugs-to>https://github.com/tsmetana/spotify-tray/issues</bugs-to> - </upstream> -</pkgmetadata> diff --git a/media-sound/spotify-tray/spotify-tray-1.3.2-r2.ebuild b/media-sound/spotify-tray/spotify-tray-1.3.2-r2.ebuild deleted file mode 100644 index 6630dbac467e..000000000000 --- a/media-sound/spotify-tray/spotify-tray-1.3.2-r2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2019-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools xdg - -DESCRIPTION="Wrapper around the Spotify client that adds a tray icon" -HOMEPAGE="https://github.com/tsmetana/spotify-tray" -SRC_URI="https://github.com/tsmetana/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -KEYWORDS="~amd64" -LICENSE="GPL-3" -SLOT="0" - -DEPEND=" - x11-libs/gtk+:3[X] -" -RDEPEND="${DEPEND} - media-sound/spotify -" - -src_prepare() { - default - # Fix error: AM_INIT_AUTOMAKE expanded multiple times - sed -i -e '/^AM_INIT_AUTOMAKE$/d' configure.ac || die - - # Fix the name of the icon - sed -i -e 's/Icon=spotify/Icon=spotify-client/g' spotify-tray.desktop.in || die - eautoreconf -} - -src_install() { - default - # remove desktop file, launching is handled in spotify ebuild - rm "${ED}/usr/share/applications/spotify-tray.desktop" || die - - # move executable outside of PATH to avoid accidentally launching it in a loop - mkdir -p "${ED}/opt/spotify/spotify-client" || die - mv "${ED}/usr/bin/spotify-tray" "${ED}/opt/spotify/spotify-client/spotify-tray" || die -} |