Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-extraplaylist/
Date: Wed, 03 Jan 2018 18:39:21
Message-Id: 1515004681.034d5acd4a82bbae93bbb913dec826c925df6c70.soap@gentoo
1 commit: 034d5acd4a82bbae93bbb913dec826c925df6c70
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 18:38:01 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 18:38:01 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=034d5acd
7
8 media-plugins/gmpc-extraplaylist: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../gmpc-extraplaylist/gmpc-extraplaylist-0.20.0.ebuild | 15 ++++++++-------
13 1 file changed, 8 insertions(+), 7 deletions(-)
14
15 diff --git a/media-plugins/gmpc-extraplaylist/gmpc-extraplaylist-0.20.0.ebuild b/media-plugins/gmpc-extraplaylist/gmpc-extraplaylist-0.20.0.ebuild
16 index 399b44e3942..30eb2fccc6b 100644
17 --- a/media-plugins/gmpc-extraplaylist/gmpc-extraplaylist-0.20.0.ebuild
18 +++ b/media-plugins/gmpc-extraplaylist/gmpc-extraplaylist-0.20.0.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2012 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=3
25 +EAPI=6
26
27 DESCRIPTION="This plugin adds a second pane showing the playlist"
28 HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_EXTRA_PLAYLIST"
29 @@ -12,12 +12,13 @@ SLOT="0"
30 KEYWORDS="amd64 ppc x86"
31 IUSE=""
32
33 -RDEPEND=">=media-sound/gmpc-${PV}
34 - dev-libs/libxml2"
35 +RDEPEND="
36 + >=media-sound/gmpc-${PV}
37 + dev-libs/libxml2:="
38 DEPEND="${RDEPEND}
39 virtual/pkgconfig"
40
41 -src_install () {
42 - emake DESTDIR="${D}" install || die
43 - find "${ED}" -name "*.la" -delete || die
44 +src_install() {
45 + default
46 + find "${D}" -name '*.la' -delete || die
47 }