From: Conrad Kostecki Date: Sat, 7 Jul 2018 21:55:59 +0000 (+0200) Subject: www-apps/phpsysinfo: bump to version 3.2.10 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=65184af2af342314df8ac61ea7045c80e90c4e9a;p=gentoo.git www-apps/phpsysinfo: bump to version 3.2.10 Closes: https://bugs.gentoo.org/613512 Closes: https://bugs.gentoo.org/615054 Closes: https://bugs.gentoo.org/636946 Package-Manager: Portage-2.3.41, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9095 Closes: https://bugs.gentoo.org/636946 --- diff --git a/www-apps/phpsysinfo/Manifest b/www-apps/phpsysinfo/Manifest index ca5c14cf1a95..e2f5795a3719 100644 --- a/www-apps/phpsysinfo/Manifest +++ b/www-apps/phpsysinfo/Manifest @@ -1,2 +1,3 @@ +DIST phpsysinfo-3.2.10.tar.gz 1021435 BLAKE2B b9db266021c0392902d6de58492165a889151716484d23f99648e8322c7e76edfda17e8a7b8f415fcc42d5970a98603ea84571989c1168e10e8d87ee3a2f6927 SHA512 56954e64e6c267c2a60baaf91a9a218d2c81d99dc4f159e35d752328bdd38135eb4e9d91d09798b3822cdbf0d04a6169a46385c2d02a812b136fe115b7310a88 DIST phpsysinfo-3.2.2.tar.gz 899974 BLAKE2B 4da569d90a4ee383535a5a155c754a40f104453d504148729fcde03a4ee6839e914dc0375115d392c81225a451a35e3009218c20019abf0661ba629c98377952 SHA512 fe1fae67379abf0fb75d166aaab87cb91ead33c87cfbd0569b61d95b9b3172820565dff37f6d35744fbf9332adc5a5af1ec49477a56572f55f57e53edb9164b9 DIST phpsysinfo-3.2.3.tar.gz 909045 BLAKE2B dc1f9d9f7cd83b60eb16f073607f5c7a5f5ad155b297d4defc9b1768c771cd12bd315af3e67f4c7a5f731ef66b8e9eb00da4083074f9cb3908ebbce9198a568c SHA512 33a77d96f3f9ac4e59a078e3106af656f68ec048aa7b89409915373cb4174fff7f709a3a3984cdba2990d397fd019930ae7f24b8fe5484061f3a89dc9f023eaa diff --git a/www-apps/phpsysinfo/metadata.xml b/www-apps/phpsysinfo/metadata.xml index 15b8d1f6508f..f8482ac659c0 100644 --- a/www-apps/phpsysinfo/metadata.xml +++ b/www-apps/phpsysinfo/metadata.xml @@ -1,10 +1,35 @@ + + ck+gentoo@bl4ckb0x.de + Conrad Kostecki + + + proxy-maint@gentoo.org + Proxy Maintainers + web-apps@gentoo.org Gentoo Webapps + + Install sys-power/apcupsd to display those stats. + Install sys-fs/dmraid to display those stats. + Install sys-libs/freeipmi to display those stats. + Install app-admin/hddtemp to display those stats. + Install sys-apps/ipmitool to display those stats. + Install sys-apps/ipmiutil to display those stats. + Install net-firewall/iptables to display those stats. + Install sys-apps/lm_sensors to display those stats. + Install sys-fs/mdadm to display those stats. + Install sys-block/megactl to display those stats. + Install sys-power/nut to display those stats. + Install sys-fs/quota to display those stats. + Install sys-apps/smartmontools to display those stats. + Install net-analyzer/net-snmp to display those stats. + Install app-misc/uptimed to display those stats. + rk4an/phpsysinfo diff --git a/www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild b/www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild new file mode 100644 index 000000000000..9cc1c23ec996 --- /dev/null +++ b/www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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 +}