Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdshconfig/
Date: Tue, 18 Feb 2020 19:11:51
Message-Id: 1582053052.b77637058726e0896999640c63fe12b137870f64.soap@gentoo
1 commit: b77637058726e0896999640c63fe12b137870f64
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 18 19:10:52 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 18 19:10:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7763705
7
8 dev-libs/libdshconfig: Port to EAPI 7
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild | 12 ++++--------
14 1 file changed, 4 insertions(+), 8 deletions(-)
15
16 diff --git a/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild b/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild
17 index 649f6761cc4..d7ed58d8cbb 100644
18 --- a/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild
19 +++ b/dev-libs/libdshconfig/libdshconfig-0.20.13.ebuild
20 @@ -1,9 +1,7 @@
21 # Copyright 1999-2020 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=4
25 -
26 -inherit eutils ltprune
27 +EAPI=7
28
29 DESCRIPTION="Library for parsing dsh.style configuration files"
30 HOMEPAGE="http://www.netfort.gr.jp/~dancer/software/downloads/"
31 @@ -12,18 +10,16 @@ SRC_URI="http://www.netfort.gr.jp/~dancer/software/downloads/${P}.tar.gz"
32 LICENSE="GPL-2"
33 SLOT="0"
34 KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~m68k-mint"
35 -IUSE="static-libs"
36
37 -DEPEND=""
38 RDEPEND="virtual/ssh"
39
40 src_configure() {
41 - econf \
42 - $(use_enable static-libs static)
43 + econf --disable-static
44 }
45
46 src_install() {
47 default
48
49 - prune_libtool_files --all
50 + # no static archives
51 + find "${D}" -name '*.la' -delete || die
52 }