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 5BC8A138334 for ; Thu, 29 Nov 2018 19:41:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28E02E0729; Thu, 29 Nov 2018 19:41:38 +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 02D76E0729 for ; Thu, 29 Nov 2018 19:41:37 +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 867E8335CFA for ; Thu, 29 Nov 2018 19:41:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68458445 for ; Thu, 29 Nov 2018 19:41:34 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1543520478.8ff162b1ce09f9ce2b80792705c98668237b83d9.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/phpsysinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/phpsysinfo/phpsysinfo-3.2.10-r1.ebuild X-VCS-Directories: www-apps/phpsysinfo/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 8ff162b1ce09f9ce2b80792705c98668237b83d9 X-VCS-Branch: master Date: Thu, 29 Nov 2018 19:41:34 +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: af2241e9-ad98-4fd1-9532-ba82716d10be X-Archives-Hash: 3f548f0d4a54eb95ffca3a6b1c3434fc commit: 8ff162b1ce09f9ce2b80792705c98668237b83d9 Author: Conrad Kostecki kostecki com> AuthorDate: Thu Nov 29 19:05:02 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Thu Nov 29 19:41:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff162b1 www-apps/phpsysinfo: revert bump to EAPI=7 webapps.eclass is not EAPI=7 compatible ans fails. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Conrad Kostecki kostecki.com> Closes: https://github.com/gentoo/gentoo/pull/10524 Signed-off-by: Virgil Dupras gentoo.org> www-apps/phpsysinfo/phpsysinfo-3.2.10-r1.ebuild | 51 ------------------------- 1 file changed, 51 deletions(-) diff --git a/www-apps/phpsysinfo/phpsysinfo-3.2.10-r1.ebuild b/www-apps/phpsysinfo/phpsysinfo-3.2.10-r1.ebuild deleted file mode 100644 index b662ec40f4f..00000000000 --- a/www-apps/phpsysinfo/phpsysinfo-3.2.10-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit webapp - -DESCRIPTION="A customizable PHP script that displays information about your system nicely" -HOMEPAGE="https://rk4an.github.com/phpsysinfo/" -SRC_URI="https://github.com/rk4an/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="apcupsd dmraid freeipmi hddtemp ipmitool ipmiutil iptables lm_sensors mdadm megactl nut quota smart snmp uptime" - -RDEPEND=" - dev-lang/php[simplexml,xml,xsl(+),xslt(+),unicode] - virtual/httpd-php - apcupsd? ( sys-power/apcupsd ) - dmraid? ( sys-fs/dmraid ) - freeipmi? ( sys-libs/freeipmi ) - hddtemp? ( app-admin/hddtemp ) - ipmitool? ( sys-apps/ipmitool ) - ipmiutil? ( sys-apps/ipmiutil ) - iptables? ( net-firewall/iptables ) - lm_sensors? ( sys-apps/lm_sensors ) - mdadm? ( sys-fs/mdadm ) - megactl? ( sys-block/megactl ) - nut? ( sys-power/nut ) - quota? ( sys-fs/quota ) - smart? ( sys-apps/smartmontools ) - snmp? ( net-analyzer/net-snmp ) - uptime? ( app-misc/uptimed ) -" - -need_httpd_cgi - -src_install() { - webapp_src_preinst - - dodoc CHANGELOG.md README* - rm CHANGELOG.md COPYING README* .gitignore .travis.yml || die - - insinto "${MY_HTDOCSDIR}" - doins -r . - newins phpsysinfo.ini{.new,} - - webapp_configfile "${MY_HTDOCSDIR}"/phpsysinfo.ini - - webapp_src_install -}