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 C908D138334 for ; Sun, 22 Dec 2019 11:52:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0161FE09F1; Sun, 22 Dec 2019 11:52:32 +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 CD813E09EC for ; Sun, 22 Dec 2019 11:52:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 763D134DA73 for ; Sun, 22 Dec 2019 11:52:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8679793E3 for ; Sun, 22 Dec 2019 11:52:29 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1577015520.bf834d15e15bc9eed2ca5dea9c972ec1ec65af6a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-lyricwiki/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/gmpc-lyricwiki/gmpc-lyricwiki-11.8.16.ebuild X-VCS-Directories: media-plugins/gmpc-lyricwiki/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bf834d15e15bc9eed2ca5dea9c972ec1ec65af6a X-VCS-Branch: master Date: Sun, 22 Dec 2019 11:52:29 +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: 7fe63233-c40e-4bc1-96ae-5c383df1a3b4 X-Archives-Hash: bcaf7c488b366e1cc2699d0438d0fb69 commit: bf834d15e15bc9eed2ca5dea9c972ec1ec65af6a Author: David Seifert gentoo org> AuthorDate: Sun Dec 22 11:52:00 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 22 11:52:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf834d15 media-plugins/gmpc-lyricwiki: Port to EAPI 7 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> .../gmpc-lyricwiki/gmpc-lyricwiki-11.8.16.ebuild | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/media-plugins/gmpc-lyricwiki/gmpc-lyricwiki-11.8.16.ebuild b/media-plugins/gmpc-lyricwiki/gmpc-lyricwiki-11.8.16.ebuild index 154402ca990..7241fd4d91e 100644 --- a/media-plugins/gmpc-lyricwiki/gmpc-lyricwiki-11.8.16.ebuild +++ b/media-plugins/gmpc-lyricwiki/gmpc-lyricwiki-11.8.16.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 DESCRIPTION="This plugin uses lyricwiki to fetch lyrics" HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_LYRICWIKI" @@ -12,12 +12,16 @@ SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="nls" -RDEPEND=">=media-sound/gmpc-${PV} - dev-libs/libxml2" -DEPEND="${RDEPEND} +RDEPEND=" + >=media-sound/gmpc-${PV} + dev-libs/libxml2:2" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig - nls? ( dev-util/intltool - sys-devel/gettext )" + nls? ( + dev-util/intltool + sys-devel/gettext + )" src_configure() { econf $(use_enable nls) @@ -25,5 +29,7 @@ src_configure() { src_install() { default - find "${ED}" -name "*.la" -exec rm {} + || die + + # plugins only + find "${D}" -name '*.la' -delete || die }