mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
media-sound/quodlibet: drop old
Bug: https://bugs.gentoo.org/704172 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Matthias Maier <tamiko@gentoo.org>
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
DIST quodlibet-3.8.1.tar.gz 3697363 BLAKE2B 67c56281a998d93b2ea457656473ab7fc45a1d4d80aa561fc1946e129ac91a01c65fdb34bd314b5742756708714ac043341cae6ee38e93e37a7a16e3bf481c20 SHA512 5f8f7ba3157dea83782c64989114ad38295c660300284b72e825eba46eae053120c96e60518d573b4010dd49e396a4fe8d04788e632e61e38fa6edd953014275
|
||||
DIST quodlibet-3.9.1.tar.gz 3850929 BLAKE2B c4317521259f1d46e927276ee8bd927afd72708f7b6e260a68e2cfe6e949f44e08df5884f3613804955b18b7284f0140f9d2d409833bd0a139732728903ae978 SHA512 6d6b6380de2fc2d3ab1614b304f2d7219ff1d823e03f532baa0e9b1308fd36094ad745433494253d956182ae9914eb62846df3d3e5fea92dddccdaa725178563
|
||||
DIST quodlibet-4.1.0.tar.gz 4882607 BLAKE2B 1e0c519eb3f1d377dc7fc0ee2a08faa51632eabd1f21638e38aaf5edc4faa6707274edfe314910b32895e59a5cdd27434914afb1c33aa2914788e644db2d2aaf SHA512 987001b6335e18ce18d25b71be327261c3fe5e0a142395ce061d7460e9ade2543a3372a64560b804be3e4d70889017612e9bc1a72215d45b215caf4da545e9ae
|
||||
DIST quodlibet-4.2.0.tar.gz 4894320 BLAKE2B 0109322ee845e0ca99d620f396c937c0c340e98bfd4b4ffb5aab0253177bdbdac7b59789f05a78f5f610bd2e0037c5cfbc919aea65542d663ce5f65a032bae61 SHA512 3a978acdddd5f7e2736e4d3764d8921d000ec8602c18e319d54d881f606ac97a4c06f23aa4c6f8813121855ed97982a63cd51d594aa12095c7c4cdc32da64eb2
|
||||
DIST quodlibet-4.2.1.tar.gz 4908102 BLAKE2B 0c1535e925842d42aafd5ff819b33a5d4527995977dd5d56b84b26462c677d81fcfb6d1de60ce50004a4b4a3eaa69896e430d36d31d904175c38f9deb23c044b SHA512 3817611c887b7c1878ccf852311020ded0a813feec1067f861d1157de6331760166c34992a6e4fe225552ae6ed4472000585fe58a3397faf277ae250f6f3c138
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit distutils-r1 gnome2-utils xdg-utils
|
||||
|
||||
DESCRIPTION="audio library tagger, manager, and player for GTK+"
|
||||
HOMEPAGE="http://quodlibet.readthedocs.org"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ppc ppc64 x86"
|
||||
IUSE="+dbus gstreamer ipod +udev"
|
||||
|
||||
RDEPEND="dev-libs/keybinder:3[introspection]
|
||||
dev-python/feedparser[${PYTHON_USEDEP}]
|
||||
dev-python/futures[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
>=media-libs/mutagen-1.32[${PYTHON_USEDEP}]
|
||||
net-libs/libsoup[introspection]
|
||||
x11-libs/gtk+[introspection]
|
||||
gstreamer? (
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-base:1.0
|
||||
media-libs/gst-plugins-good:1.0
|
||||
media-plugins/gst-plugins-meta:1.0
|
||||
)
|
||||
!gstreamer? ( media-libs/xine-lib )
|
||||
dbus? (
|
||||
app-misc/media-player-info
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
)
|
||||
ipod? ( media-libs/libgpod[python,${PYTHON_USEDEP}] )
|
||||
udev? ( virtual/udev )
|
||||
!media-plugins/quodlibet-plugins"
|
||||
DEPEND="dev-util/intltool"
|
||||
REQUIRED_USE="ipod? ( dbus )"
|
||||
|
||||
S="${WORKDIR}/${PN}-release-${PV}/${PN}"
|
||||
|
||||
src_prepare() {
|
||||
local qlconfig=${PN}/config.py
|
||||
|
||||
if ! use gstreamer; then
|
||||
sed -i -e '/backend/s:gstbe:xinebe:' ${qlconfig} || die
|
||||
fi
|
||||
|
||||
sed -i -e '/gst_pipeline/s:"":"alsasink":' ${qlconfig} || die
|
||||
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
dodoc NEWS README
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit distutils-r1 gnome2-utils xdg-utils
|
||||
|
||||
DESCRIPTION="audio library tagger, manager, and player for GTK+"
|
||||
HOMEPAGE="http://quodlibet.readthedocs.org"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ppc ppc64 x86"
|
||||
IUSE="+dbus gstreamer ipod +udev"
|
||||
|
||||
RDEPEND="dev-libs/keybinder:3[introspection]
|
||||
dev-python/feedparser[${PYTHON_USEDEP}]
|
||||
dev-python/faulthandler[${PYTHON_USEDEP}]
|
||||
dev-python/futures[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
>=media-libs/mutagen-1.32[${PYTHON_USEDEP}]
|
||||
net-libs/libsoup[introspection]
|
||||
x11-libs/gtk+[introspection]
|
||||
gstreamer? (
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-base:1.0
|
||||
media-libs/gst-plugins-good:1.0
|
||||
media-plugins/gst-plugins-meta:1.0
|
||||
)
|
||||
!gstreamer? ( media-libs/xine-lib )
|
||||
dbus? (
|
||||
app-misc/media-player-info
|
||||
dev-python/dbus-python[${PYTHON_USEDEP}]
|
||||
)
|
||||
ipod? ( media-libs/libgpod[python,${PYTHON_USEDEP}] )
|
||||
udev? ( virtual/udev )
|
||||
!media-plugins/quodlibet-plugins"
|
||||
DEPEND="dev-util/intltool"
|
||||
REQUIRED_USE="ipod? ( dbus )"
|
||||
|
||||
S="${WORKDIR}/${PN}-release-${PV}/${PN}"
|
||||
|
||||
src_prepare() {
|
||||
local qlconfig=${PN}/config.py
|
||||
|
||||
if ! use gstreamer; then
|
||||
sed -i -e '/backend/s:gstbe:xinebe:' ${qlconfig} || die
|
||||
fi
|
||||
|
||||
sed -i -e '/gst_pipeline/s:"":"alsasink":' ${qlconfig} || die
|
||||
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
dodoc NEWS README
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
gnome2_icon_savelist
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
gnome2_icon_cache_update
|
||||
}
|
||||
Reference in New Issue
Block a user