commit: e9521490c6eaad94de362bac4e9ad3457450320d Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Wed Apr 27 16:09:56 2022 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Wed Apr 27 16:09:56 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9521490
media-sound/xnoise: treeclean Closes: https://bugs.gentoo.org/740484 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> media-sound/xnoise/Manifest | 1 - .../files/xnoise-0.2.21-QA-fix-desktop-file.patch | 54 ------------------- media-sound/xnoise/metadata.xml | 15 ------ media-sound/xnoise/xnoise-0.2.21.ebuild | 61 ---------------------- profiles/package.mask | 1 - 5 files changed, 132 deletions(-) diff --git a/media-sound/xnoise/Manifest b/media-sound/xnoise/Manifest deleted file mode 100644 index 29297a9fb636..000000000000 --- a/media-sound/xnoise/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST xnoise-0.2.21.tar.gz 3222030 BLAKE2B c58561f4e042ccf7d7fdeb271801ccc2d447138cf5c1afb2f8f0bb098135d957aa289799e59f2c96a76a01ccfeeb9574d87f0d987b1e3ace9d22a3ced8ec88b9 SHA512 e25f42795638a5b93f1922f1c761b0bdaf754414dfa0f7172407e0d10514c52844d0dc3146a32f93e6107a0b5bb0f8e9e5d098954e9659f28177c56f607d9851 diff --git a/media-sound/xnoise/files/xnoise-0.2.21-QA-fix-desktop-file.patch b/media-sound/xnoise/files/xnoise-0.2.21-QA-fix-desktop-file.patch deleted file mode 100644 index d57cb4b6f393..000000000000 --- a/media-sound/xnoise/files/xnoise-0.2.21-QA-fix-desktop-file.patch +++ /dev/null @@ -1,54 +0,0 @@ ---- a/data/misc/xnoise.desktop.in -+++ b/data/misc/xnoise.desktop.in -@@ -16,24 +16,19 @@ - [Desktop Action Play] - _Name=Play/Pause - Exec=xnoise --play-pause --OnlyShowIn=Unity; - - [Desktop Action Stop] - _Name=Stop - Exec=xnoise --stop --OnlyShowIn=Unity; - - [Desktop Action Next] - _Name=Goto next track - Exec=xnoise --next --OnlyShowIn=Unity; - - [Desktop Action Previous] - _Name=Goto previous track - Exec=xnoise --previous --OnlyShowIn=Unity; - - [Desktop Action Quit] - _Name=Quit application - Exec=xnoise --quit --OnlyShowIn=Unity; ---- a/data/misc/xnoise.desktop.in.in -+++ b/data/misc/xnoise.desktop.in.in -@@ -16,24 +16,19 @@ - [Desktop Action Play] - _Name=Play/Pause - Exec=xnoise --play-pause --OnlyShowIn=Unity; - - [Desktop Action Stop] - _Name=Stop - Exec=xnoise --stop --OnlyShowIn=Unity; - - [Desktop Action Next] - _Name=Goto next track - Exec=xnoise --next --OnlyShowIn=Unity; - - [Desktop Action Previous] - _Name=Goto previous track - Exec=xnoise --previous --OnlyShowIn=Unity; - - [Desktop Action Quit] - _Name=Quit application - Exec=xnoise --quit --OnlyShowIn=Unity; diff --git a/media-sound/xnoise/metadata.xml b/media-sound/xnoise/metadata.xml deleted file mode 100644 index 9ae5e1f58a48..000000000000 --- a/media-sound/xnoise/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>[email protected]</email> - <name>Gentoo Sound project</name> - </maintainer> - <use> - <flag name="lastfm">Enable support for lastfm cover art fetching and scrobbling</flag> - <flag name="lyrics">Enable support for lyrics fetching</flag> - </use> - <upstream> - <remote-id type="bitbucket">shuerhaaken/xnoise</remote-id> - </upstream> -</pkgmetadata> diff --git a/media-sound/xnoise/xnoise-0.2.21.ebuild b/media-sound/xnoise/xnoise-0.2.21.ebuild deleted file mode 100644 index b91eefbc5398..000000000000 --- a/media-sound/xnoise/xnoise-0.2.21.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg - -DESCRIPTION="A media player for Gtk+ with a slick GUI, great speed and lots of features" -HOMEPAGE="http://www.xnoise-media-player.com/" -SRC_URI="https://www.bitbucket.org/shuerhaaken/${PN}/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="appindicator +lastfm +lyrics" - -RDEPEND=" - dev-db/sqlite:3= - dev-libs/glib:2 - gnome-base/librsvg:2 - media-libs/gstreamer:1.0= - media-libs/gst-plugins-base:1.0= - media-libs/libtaginfo:= - media-plugins/gst-plugins-meta:1.0 - x11-libs/cairo:= - x11-libs/gtk+:3 - x11-libs/libX11 - appindicator? ( dev-libs/libappindicator:3= ) - lastfm? ( net-libs/libsoup:2.4= ) - lyrics? ( - net-libs/libsoup:2.4= - dev-libs/libxml2:2= - )" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-0.2.21-QA-fix-desktop-file.patch ) - -src_configure() { - econf \ - --enable-magnatune \ - --enable-mediakeys \ - --enable-mpris \ - --enable-soundmenu2 \ - $(use_enable appindicator) \ - $(use_enable lastfm) \ - $(use_enable lyrics lyricwiki) \ - $(use_enable lyrics chartlyrics) \ - $(use_enable lyrics azlyrics) -} - -src_install() { - default - rm -rf "${ED}"/usr/share/${PN}/license || die - - # no static archives - find "${D}" -name '*.la' -delete || die -} diff --git a/profiles/package.mask b/profiles/package.mask index 23d17cdf8977..57cf9b84b085 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -348,7 +348,6 @@ net-im/gg-transport # no other major distro carries this anymore. # Bug #631320, #740484, #830090, #836278, removal on 2022-04-26. media-libs/libtaginfo -media-sound/xnoise # David Seifert <[email protected]> (2022-03-20) # Mask gcc-8 branch (ended upstream support). Please switch
