summaryrefslogtreecommitdiff
path: root/media-sound/spotify-tray
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/spotify-tray')
-rw-r--r--media-sound/spotify-tray/Manifest3
-rw-r--r--media-sound/spotify-tray/metadata.xml12
-rw-r--r--media-sound/spotify-tray/spotify-tray-1.3.2-r2.ebuild41
3 files changed, 0 insertions, 56 deletions
diff --git a/media-sound/spotify-tray/Manifest b/media-sound/spotify-tray/Manifest
deleted file mode 100644
index 8ff7a37d22e6..000000000000
--- a/media-sound/spotify-tray/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST spotify-tray-1.3.2.tar.gz 22298 BLAKE2B da1399db3d42d969d983b9bae695ff55dbdff47ef49ac79e10e2681df45489505028901a0946dd70495a6a74b9eef979f9ef07a722a08cb93a2ba6749c106f4a SHA512 74ae5ebaa61497a0274646dad04d408bb4176bbbacbb0e80211bec9218d09e293c8abf4c9424de8123ba4440d63adb58c5b68ca53690d2e348d52efbbc3f88c1
-EBUILD spotify-tray-1.3.2-r2.ebuild 1103 BLAKE2B 111e91a39ebb6d00ec78f1a3e478068e52207961c079e1eac1765da701b1658a59c72614d6b0a4fa00ef8c0945e1040db50dfe24a2689112fb7c28c54b53c628 SHA512 17c9b39c1a5ba2e5bb1540c5d4e3c7557cc2017688e11e8524a9f00302b78608f6e9e3620cc4e1fb78e2ec11b9f93788cc3dab810db83f53acf959ba72a64401
-MISC metadata.xml 414 BLAKE2B ee33f5f467b025c775feaa293e883034769a1018a5907cc52e2914f54d2da159bcaa2b543bdcb5c29a0735d8a7644de030b3eed8be24b386f53a10a3169bc058 SHA512 c7ae1301aa33cbc2da3b283aa0f0a8cd29848875e999549e0500934d2de7c06e061e5b3cef036b3a804c77248828789f231bf06710715db9e491206fd4adbcdc
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
-}