From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B35A138334 for ; Mon, 23 Sep 2019 01:11:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D01BE07A5; Mon, 23 Sep 2019 01:11:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41A02E07A5 for ; Mon, 23 Sep 2019 01:11:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A24E034B496 for ; Mon, 23 Sep 2019 01:11:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E20C780 for ; Mon, 23 Sep 2019 01:11:22 +0000 (UTC) From: "Rafael Martins" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rafael Martins" Message-ID: <1569201052.036dec76dd8974493b8128b2b48e3c9614bc251c.rafaelmartins@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgisysinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild X-VCS-Directories: www-apps/cgisysinfo/ X-VCS-Committer: rafaelmartins X-VCS-Committer-Name: Rafael Martins X-VCS-Revision: 036dec76dd8974493b8128b2b48e3c9614bc251c X-VCS-Branch: master Date: Mon, 23 Sep 2019 01:11:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 37feb663-8ae8-4702-ab62-a403b2f5b942 X-Archives-Hash: d76560f89e048a7e0241661e2345be20 commit: 036dec76dd8974493b8128b2b48e3c9614bc251c Author: Rafael Martins gentoo org> AuthorDate: Mon Sep 23 01:04:49 2019 +0000 Commit: Rafael Martins gentoo org> CommitDate: Mon Sep 23 01:10:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036dec76 www-apps/cgisysinfo: removed -9999 logic. bump to eapi 7 Package-Manager: Portage-2.3.66, Repoman-2.3.11 Signed-off-by: Rafael Martins gentoo.org> www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild index 0dc2dac982c..15aea025958 100644 --- a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild +++ b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild @@ -1,22 +1,11 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI="7" inherit autotools -if [[ ${PV} = *9999* ]]; then - WANT_AUTOMAKE="1.10" - inherit git-r3 - EGIT_REPO_URI="https://github.com/rafaelmartins/${PN}" - KEYWORDS="" - DOCS=( "README.md" "AUTHORS" "NEWS" ) -else - SRC_URI="https://github.com/rafaelmartins/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" - DOCS=( "README" "AUTHORS" "NEWS" ) -fi - +SRC_URI="https://github.com/rafaelmartins/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" DESCRIPTION="A small cgi utility to show basic system information" HOMEPAGE="https://github.com/rafaelmartins/cgisysinfo" @@ -24,10 +13,14 @@ LICENSE="GPL-2" SLOT="0" IUSE="fastcgi" +KEYWORDS="~amd64 ~x86" +DOCS=( "README" "AUTHORS" "NEWS" ) + DEPEND="fastcgi? ( dev-libs/fcgi )" RDEPEND="${DEPEND}" src_prepare() { + default eautoreconf }