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/upnpscan/
Date: Sat, 27 Feb 2021 01:00:36
Message-Id: 1614387612.5e1d2248de33e2a6213ca5f71746d8fa4b70551f.sam@gentoo
1 commit: 5e1d2248de33e2a6213ca5f71746d8fa4b70551f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 00:36:30 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 01:00:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1d2248
7
8 net-analyzer/upnpscan: port to EAPI 7
9
10 Package-Manager: Portage-3.0.15, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-analyzer/upnpscan/upnpscan-0.4-r3.ebuild | 24 ++++++++++++++----------
14 1 file changed, 14 insertions(+), 10 deletions(-)
15
16 diff --git a/net-analyzer/upnpscan/upnpscan-0.4-r3.ebuild b/net-analyzer/upnpscan/upnpscan-0.4-r3.ebuild
17 index 91839f3352c..b92dcbfb396 100644
18 --- a/net-analyzer/upnpscan/upnpscan-0.4-r3.ebuild
19 +++ b/net-analyzer/upnpscan/upnpscan-0.4-r3.ebuild
20 @@ -1,23 +1,27 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 +EAPI=7
27
28 -AUTOTOOLS_AUTORECONF=1
29 -AUTOTOOLS_IN_SOURCE_BUILD=1
30 +inherit autotools
31
32 -inherit autotools-utils
33 -
34 -DESCRIPTION="Scans the network for UPNP capable devices"
35 +DESCRIPTION="Scans the network for UPnP capable devices"
36 HOMEPAGE="http://www.cqure.net/wp/upnpscan/"
37 SRC_URI="http://www.cqure.net/tools/${PN}-v${PV}-src.tgz"
38 +S="${WORKDIR}/${PN}"
39
40 LICENSE="GPL-2"
41 SLOT="0"
42 KEYWORDS="amd64 x86"
43
44 -S=${WORKDIR}/${PN}
45 -
46 DOCS=( AUTHORS ChangeLog NEWS README TODO )
47
48 -PATCHES=( "${FILESDIR}"/${P}-r2-cflags.patch )
49 +PATCHES=(
50 + "${FILESDIR}"/${P}-r2-cflags.patch
51 +)
52 +
53 +src_prepare() {
54 + default
55 +
56 + eautoreconf
57 +}