-DIST sonata-1.6.2.1.tar.bz2 314333 BLAKE2B a2d7f6f8b5fe4b774136c70e7a354a8b8d948f44e876e3d59b0a216cb482de6c9b5a38b1332347136466965bd0551a03ba53f9e554c969ce901e880fa691496e SHA512 8022b69380714e9c3c685c61d0f1e62be087fc2cbd77a55f32008edea53411f8493d416bd0a446ccb52b4b5603ba9f4a00b655af485d739932dc06af69345c27
DIST sonata-1.7_beta1_p20200212.tar.gz 2259353 BLAKE2B 78befe6896d75033649e4f7333bc1487cc7462a66564860d93b4770cb7e86a6cc4656377b6e13defb07591b0a81cbd22653f01c5e9f20d75fcbf28a84551f7fb SHA512 bdff3ee3ec4d94a18604409efbca398f94633a510780f33d449921b69787521ad5d68285aa0fe7252191c1227435c42cf60bca0fe7764e1a8b3d887ff4be4ae6
+++ /dev/null
-2014-06-08 Israel G. Lugo <israel.lugo@lugosys.com>
-
- Compatibility fix for mpd 0.18.
-
- * sonata/main.py (Base.update_status): Properly handle missing xfade
- property.
-
-diff -durNp sonata-1.6.2.1/sonata/main.py sonata-1.6.2.1-mpd0.18/sonata/main.py
---- sonata-1.6.2.1/sonata/main.py 2009-09-21 22:02:16.000000000 +0100
-+++ sonata-1.6.2.1-mpd0.18/sonata/main.py 2014-06-08 15:10:08.586659487 +0100
-@@ -989,7 +989,7 @@ class Base(object):
- self.repeatmenu.set_active(self.status['repeat'] == '1')
- if not self.last_random or self.last_random != self.status['random']:
- self.randommenu.set_active(self.status['random'] == '1')
-- if self.status['xfade'] == '0':
-+ if self.status.get('xfade', '0') == '0':
- self.config.xfade_enabled = False
- else:
- self.config.xfade_enabled = True
(MPD). It aims to be efficient (no toolbar, main menu, or statusbar),
user-friendly, and clean.
</longdescription>
- <use>
- <flag name="lyrics">Support for lyrics fetching</flag>
- </use>
</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL="true"
-inherit distutils-r1
-
-DESCRIPTION="Elegant GTK+ music client for the Music Player Daemon (MPD)"
-HOMEPAGE="https://www.nongnu.org/sonata/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-# now released at https://github.com/multani/sonata/releases
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="dbus lyrics taglib"
-
-BDEPEND="
- virtual/pkgconfig
-"
-DEPEND="
- >=dev-python/pygtk-2.12:2
- x11-libs/gdk-pixbuf:2[jpeg]
- >=dev-python/python-mpd-0.2.1
- dbus? ( dev-python/dbus-python )
- lyrics? ( dev-python/zsi )
- taglib? ( >=dev-python/tagpy-0.93 )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGELOG README TODO TRANSLATORS )
-
-PATCHES=( "${FILESDIR}"/${P}-mpd18-compat.patch )
-
-src_install() {
- distutils-r1_src_install
- rm -r "${D}"/usr/share/sonata || die
-}