Gentoo Archives: gentoo-commits

From: Rafael Martins <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgisysinfo/
Date: Mon, 23 Sep 2019 01:11:27
Message-Id: 1569201052.036dec76dd8974493b8128b2b48e3c9614bc251c.rafaelmartins@gentoo
1 commit: 036dec76dd8974493b8128b2b48e3c9614bc251c
2 Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 23 01:04:49 2019 +0000
4 Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 23 01:10:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036dec76
7
8 www-apps/cgisysinfo: removed -9999 logic. bump to eapi 7
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.11
11 Signed-off-by: Rafael Martins <rafaelmartins <AT> gentoo.org>
12
13 www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild | 21 +++++++--------------
14 1 file changed, 7 insertions(+), 14 deletions(-)
15
16 diff --git a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild
17 index 0dc2dac982c..15aea025958 100644
18 --- a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild
19 +++ b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild
20 @@ -1,22 +1,11 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI="5"
26 +EAPI="7"
27
28 inherit autotools
29
30 -if [[ ${PV} = *9999* ]]; then
31 - WANT_AUTOMAKE="1.10"
32 - inherit git-r3
33 - EGIT_REPO_URI="https://github.com/rafaelmartins/${PN}"
34 - KEYWORDS=""
35 - DOCS=( "README.md" "AUTHORS" "NEWS" )
36 -else
37 - SRC_URI="https://github.com/rafaelmartins/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
38 - KEYWORDS="~amd64 ~x86"
39 - DOCS=( "README" "AUTHORS" "NEWS" )
40 -fi
41 -
42 +SRC_URI="https://github.com/rafaelmartins/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 DESCRIPTION="A small cgi utility to show basic system information"
44 HOMEPAGE="https://github.com/rafaelmartins/cgisysinfo"
45
46 @@ -24,10 +13,14 @@ LICENSE="GPL-2"
47 SLOT="0"
48 IUSE="fastcgi"
49
50 +KEYWORDS="~amd64 ~x86"
51 +DOCS=( "README" "AUTHORS" "NEWS" )
52 +
53 DEPEND="fastcgi? ( dev-libs/fcgi )"
54 RDEPEND="${DEPEND}"
55
56 src_prepare() {
57 + default
58 eautoreconf
59 }