From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BB70139083 for ; Sat, 16 Dec 2017 15:42:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 646D8E0EAC; Sat, 16 Dec 2017 15:42:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 435B8E0E2D for ; Sat, 16 Dec 2017 15:42:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CFFF133BF43 for ; Sat, 16 Dec 2017 15:42:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3625BAE87 for ; Sat, 16 Dec 2017 15:42:48 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1513438822.9d318cd2757922dc1c723207a65ea6237e64f30b.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sonata/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/sonata/sonata-1.6.2.1-r2.ebuild X-VCS-Directories: media-sound/sonata/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 9d318cd2757922dc1c723207a65ea6237e64f30b X-VCS-Branch: master Date: Sat, 16 Dec 2017 15:42:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e00a7b6c-387b-456e-88fb-05e2cf6d9cc4 X-Archives-Hash: 78636dd5e39b97999cad0f83fbb18c34 commit: 9d318cd2757922dc1c723207a65ea6237e64f30b Author: Pacho Ramos gentoo org> AuthorDate: Sat Dec 16 15:23:49 2017 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Dec 16 15:40:22 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d318cd2 media-sound/sonata: Disable optional trayicon support requiring dead egg-python (#640026) Package-Manager: Portage-2.3.18, Repoman-2.3.6 media-sound/sonata/sonata-1.6.2.1-r2.ebuild | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/media-sound/sonata/sonata-1.6.2.1-r2.ebuild b/media-sound/sonata/sonata-1.6.2.1-r2.ebuild new file mode 100644 index 00000000000..435883e6aa0 --- /dev/null +++ b/media-sound/sonata/sonata-1.6.2.1-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL="true" + +inherit distutils-r1 + +DESCRIPTION="An elegant GTK+ music client for the Music Player Daemon (MPD)" +HOMEPAGE="http://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" + +RDEPEND=" + >=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 ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +DOCS="CHANGELOG README TODO TRANSLATORS" +PATCHES=( "${FILESDIR}"/${P}-mpd18-compat.patch ) + +src_install() { + distutils-r1_src_install + rm -rf "${D}"/usr/share/sonata +}