Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libclastfm/
Date: Fri, 15 Nov 2019 02:33:06
Message-Id: 1573785155.6737f4ad2fb694a86bd9579a5e279b371c751cd6.asturm@gentoo
1 commit: 6737f4ad2fb694a86bd9579a5e279b371c751cd6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 15 02:06:06 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 15 02:32:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6737f4ad
7
8 media-libs/libclastfm: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.18
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libclastfm/libclastfm-0.5.ebuild | 14 +++++++-------
14 1 file changed, 7 insertions(+), 7 deletions(-)
15
16 diff --git a/media-libs/libclastfm/libclastfm-0.5.ebuild b/media-libs/libclastfm/libclastfm-0.5.ebuild
17 index 78d0075ed22..ec203eb6894 100644
18 --- a/media-libs/libclastfm/libclastfm-0.5.ebuild
19 +++ b/media-libs/libclastfm/libclastfm-0.5.ebuild
20 @@ -1,7 +1,7 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=4
26 +EAPI=7
27
28 DESCRIPTION="C API library to the last.fm web service (unofficial)"
29 HOMEPAGE="http://liblastfm.sourceforge.net/"
30 @@ -12,11 +12,11 @@ SLOT="0"
31 KEYWORDS="amd64 x86"
32 IUSE="static-libs"
33
34 -RDEPEND="net-misc/curl"
35 -DEPEND="${RDEPEND}
36 - virtual/pkgconfig"
37 +BDEPEND="virtual/pkgconfig"
38 +DEPEND="net-misc/curl"
39 +RDEPEND="${DEPEND}"
40
41 -DOCS="AUTHORS README"
42 +DOCS=( AUTHORS README )
43
44 src_configure() {
45 econf $(use_enable static-libs static)
46 @@ -24,5 +24,5 @@ src_configure() {
47
48 src_install() {
49 default
50 - rm -f "${ED}"/usr/lib*/*.la
51 + find "${D}" -name '*.la' -type f -delete || die
52 }