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-analyzer/scli/
Date: Thu, 26 Aug 2021 22:52:19
Message-Id: 1630018099.add260b086539850ff90c0278459915e38ba255d.sam@gentoo
1 commit: add260b086539850ff90c0278459915e38ba255d
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Sun Jul 11 14:42:17 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 26 22:48:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=add260b0
7
8 net-analyzer/scli: EAPI 7, ebuild improvements
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/21604
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 .../scli/{scli-0.4.0-r1.ebuild => scli-0.4.0-r2.ebuild} | 17 ++++++++---------
16 1 file changed, 8 insertions(+), 9 deletions(-)
17
18 diff --git a/net-analyzer/scli/scli-0.4.0-r1.ebuild b/net-analyzer/scli/scli-0.4.0-r2.ebuild
19 similarity index 77%
20 rename from net-analyzer/scli/scli-0.4.0-r1.ebuild
21 rename to net-analyzer/scli/scli-0.4.0-r2.ebuild
22 index 07dc0a5b43b..639430aa572 100644
23 --- a/net-analyzer/scli/scli-0.4.0-r1.ebuild
24 +++ b/net-analyzer/scli/scli-0.4.0-r2.ebuild
25 @@ -1,15 +1,15 @@
26 # Copyright 1999-2021 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=5
30 +EAPI=7
31
32 -inherit autotools epatch
33 +inherit autotools
34
35 DESCRIPTION="SNMP Command Line Interface"
36 HOMEPAGE="https://github.com/schoenw/scli"
37 SRC_URI="ftp://ftp.ibr.cs.tu-bs.de/pub/local/${PN}/${P}.tar.gz"
38
39 -LICENSE="GPL-2"
40 +LICENSE="GPL-2+"
41 SLOT="0"
42 KEYWORDS="amd64 x86 ~amd64-linux"
43
44 @@ -22,15 +22,14 @@ RDEPEND="
45 sys-libs/readline
46 sys-libs/zlib
47 "
48 -DEPEND="
49 - ${RDEPEND}
50 - virtual/pkgconfig
51 -"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="virtual/pkgconfig"
54 +
55 +PATCHES=( "${FILESDIR}"/${P}-configure.patch )
56
57 DOCS=( AUTHORS ChangeLog NEWS PORTING README TODO )
58
59 src_prepare() {
60 - epatch "${FILESDIR}"/${P}-configure.patch
61 -
62 + default
63 eautoreconf
64 }