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 869AA138334 for ; Sat, 30 Mar 2019 10:00:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9841E0870; Sat, 30 Mar 2019 10:00:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 9AB36E086D for ; Sat, 30 Mar 2019 10:00:00 +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 6FFF0335D4B for ; Sat, 30 Mar 2019 09:59:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F01A1598 for ; Sat, 30 Mar 2019 09:59:54 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1553939903.045339dfc6963959004d535f2602a7c85c89e113.asturm@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: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 045339dfc6963959004d535f2602a7c85c89e113 X-VCS-Branch: master Date: Sat, 30 Mar 2019 09:59:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 013be6cf-c09e-47eb-9187-1593e1367457 X-Archives-Hash: 11d88b5f3941a81e7dff3f3a3d150480 commit: 045339dfc6963959004d535f2602a7c85c89e113 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Mar 30 09:33:13 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Mar 30 09:58:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=045339df media-sound/sonata: EAPI-7 bump, https Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/sonata/sonata-1.6.2.1-r2.ebuild | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/media-sound/sonata/sonata-1.6.2.1-r2.ebuild b/media-sound/sonata/sonata-1.6.2.1-r2.ebuild index 435883e6aa0..96a2bdd4d47 100644 --- a/media-sound/sonata/sonata-1.6.2.1-r2.ebuild +++ b/media-sound/sonata/sonata-1.6.2.1-r2.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + 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/" +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 @@ -17,7 +17,10 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="dbus lyrics taglib" -RDEPEND=" +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" >=dev-python/pygtk-2.12:2 x11-libs/gdk-pixbuf:2[jpeg] >=dev-python/python-mpd-0.2.1 @@ -25,14 +28,13 @@ RDEPEND=" lyrics? ( dev-python/zsi ) taglib? ( >=dev-python/tagpy-0.93 ) " -DEPEND="${RDEPEND} - virtual/pkgconfig -" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG README TODO TRANSLATORS ) -DOCS="CHANGELOG README TODO TRANSLATORS" PATCHES=( "${FILESDIR}"/${P}-mpd18-compat.patch ) src_install() { distutils-r1_src_install - rm -rf "${D}"/usr/share/sonata + rm -r "${D}"/usr/share/sonata || die }