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-playlistsort/
Date: Wed, 03 Jan 2018 18:39:31
Message-Id: 1515004690.88dfffdf31d110daeb3fce0e5356a8a3b0e3c20b.soap@gentoo
1 commit: 88dfffdf31d110daeb3fce0e5356a8a3b0e3c20b
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 18:38:10 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 18:38:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88dfffdf
7
8 media-plugins/gmpc-playlistsort: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../gmpc-playlistsort/gmpc-playlistsort-0.20.0.ebuild | 18 +++++++-----------
13 1 file changed, 7 insertions(+), 11 deletions(-)
14
15 diff --git a/media-plugins/gmpc-playlistsort/gmpc-playlistsort-0.20.0.ebuild b/media-plugins/gmpc-playlistsort/gmpc-playlistsort-0.20.0.ebuild
16 index 9bc12016e41..ecf90faac63 100644
17 --- a/media-plugins/gmpc-playlistsort/gmpc-playlistsort-0.20.0.ebuild
18 +++ b/media-plugins/gmpc-playlistsort/gmpc-playlistsort-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 dialog to sort the current playlist"
28 HOMEPAGE="http://gmpc.wikia.com/"
29 @@ -12,18 +12,14 @@ SLOT="0"
30 KEYWORDS="amd64 ~ppc x86"
31 IUSE=""
32
33 -RDEPEND=">=media-sound/gmpc-${PV}
34 +RDEPEND="
35 + >=media-sound/gmpc-${PV}
36 >=gnome-base/libglade-2
37 - dev-libs/libxml2"
38 + dev-libs/libxml2:="
39 DEPEND="${RDEPEND}
40 virtual/pkgconfig"
41
42 -src_configure() {
43 - econf \
44 - --disable-dependency-tracking
45 -}
46 -
47 src_install() {
48 - emake DESTDIR="${D}" install || die
49 - find "${ED}" -name "*.la" -delete || die
50 + default
51 + find "${D}" -name '*.la' -delete || die
52 }