Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libflowmanager/
Date: Sat, 27 Feb 2021 04:12:04
Message-Id: 1614399099.75dd25123cd7443481c8cd73cb96cf6794aa8474.sam@gentoo
1 commit: 75dd25123cd7443481c8cd73cb96cf6794aa8474
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 03:13:08 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 04:11:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75dd2512
7
8 net-libs/libflowmanager: port to EAPI 7, drop ltprune
9
10 Package-Manager: Portage-3.0.15, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 .../libflowmanager/libflowmanager-3.0.0-r1.ebuild | 21 ++++++++-------------
14 1 file changed, 8 insertions(+), 13 deletions(-)
15
16 diff --git a/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild b/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild
17 index f1337c58b2d..9891a9aa444 100644
18 --- a/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild
19 +++ b/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild
20 @@ -1,8 +1,7 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 -inherit eutils ltprune
27 +EAPI=7
28
29 DESCRIPTION="A library that measures and reports on packet flows"
30 HOMEPAGE="https://research.wand.net.nz/software/libflowmanager.php"
31 @@ -11,24 +10,20 @@ SRC_URI="https://research.wand.net.nz/software/${PN}/${P}.tar.gz"
32 LICENSE="GPL-2"
33 SLOT="0/3"
34 KEYWORDS="~amd64 ~x86"
35 -IUSE="static-libs"
36 -
37 -DEPEND="
38 - >=net-libs/libtrace-3.0.6
39 -"
40 -RDEPEND="
41 - ${DEPEND}
42 -"
43 +
44 +DEPEND=">=net-libs/libtrace-3.0.6"
45 +RDEPEND="${DEPEND}"
46 +
47 PATCHES=(
48 "${FILESDIR}"/${PN}-3.0.0-stdint_h.patch
49 )
50
51 src_configure() {
52 - econf $(use_enable static-libs static)
53 + econf --disable-static
54 }
55
56 src_install() {
57 default
58
59 - prune_libtool_files
60 + find "${ED}" -name '*.la' -delete || die
61 }