mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
sys-process/glances: clean up old.
Closes: https://bugs.gentoo.org/635694 Package-Manager: Portage-2.3.24, Repoman-2.3.6
This commit is contained in:
@@ -1,6 +1 @@
|
||||
DIST Glances-2.10.tar.gz 5625608 BLAKE2B 8c1292b17a3c4a83c62445ab0327596c63beb54830867e07add60a44d3f51eb018a624ab0bc234d21cf8f270d6820248b3c7491526ca95a864aab00ef6a5d5d0 SHA512 a63c8280cd50564c6304979d2ea41eb05fca33c0618f78777f8c956249a345138d14cc6d745441cd73de85e88bc1074d0d8445ff531b0dafe9d565a326337993
|
||||
DIST Glances-2.11.1.tar.gz 5665685 BLAKE2B 5de75e7770cc01a0ddd6fcb0583e5d23c02e5188c7d6cbd55d2999be9321a1affda351094b8614d206e640e5a1338266b5c77629ec53bb280b9166f7b6a996e2 SHA512 99adccff7d1531760834b76f9a9525df0bf9a8f6f57dbd1f7c3c0515ba3b5c94f26172e19bbc7c93cecbe4bdebcca87ab3a11dd592259509eff85346780ef43a
|
||||
DIST Glances-2.11.tar.gz 5658061 BLAKE2B feb59edfd600a969d63824683a9e73ac3a683fc6dfb3b6eb9bed8e9f43db037b4245ed6c1bacf24a505af672f4848f21e279fb36da4b0b7d32f84eb5fe1d2d9a SHA512 b215326df86e4168ce54237595746d0ef119100f5fc50ee50781fa8b17fff7b91e85d9b67dacf7cb53fc5d847472eab786e87443c43f769744bbdbc1f77f3007
|
||||
DIST Glances-2.7.1.tar.gz 13277845 BLAKE2B f504079403f18d535c856715bb186f9f71e24e02f85549db99f067a3d9b2b1371a4cda8a63b11de7bf9fac8969e69bd426c7615c58faf1dfa916a39ed26d9839 SHA512 c13e7fb8e6025d284cfabade4eaf10189f6605f53f219889c3c636780ac11773c579f39d956a9eebcf5618de2bffec42446982fb892d775109341af74e621b83
|
||||
DIST Glances-2.8.1.tar.gz 5530699 BLAKE2B 18508c13f81f20715953ce0346248ce9289331ccdd2bc502b2426e3d7e7bc0da86a92ea20e72efbcf6b35afd056f5c44ad74fe80707bf1fed552b17e930cf639 SHA512 27759f621d5e29e1f4da0465abf9112b3e4146a8644110481000a7bf0fc8f2d3171a8082e7db7acd9a4a12558a8b3de8db1ae1bf0b1e5503b618aa5648b07c10
|
||||
DIST Glances-2.9.1.tar.gz 5644812 BLAKE2B 9992681f37e7afe062fe0749836e68e55828dc60be505d045185700a574eab0c05ecce7adc61a29539fc44c7b7b764fd78ceae3263a99cde7e3abb2e04b4f2df SHA512 b4629d0225c2b027f0b983ed40801910e44043e232313c5f2920d90053224a33406575ab03d21e2b7ee5195528a842d6cd806c50c45258a6bb3f6621f4fb84a7
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1 eutils linux-info
|
||||
|
||||
DESCRIPTION="CLI curses based monitoring tool"
|
||||
HOMEPAGE="https://github.com/nicolargo/glances"
|
||||
SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
# There is another optional extra batinfo, absent from portage
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/psutil-2.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
|
||||
|
||||
S="${WORKDIR}/${P^}"
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# Remove duplicate entries of a prebuilt doc build and
|
||||
# ensure install of the file glances.conf in /etc/${PN}
|
||||
sed \
|
||||
-e '/share\/doc\/glances/d' \
|
||||
-e "s/'CONTRIBUTING.md',//" \
|
||||
-e "s:'conf/glances.conf':('/etc/glances', ['conf/glances.conf':g" \
|
||||
-i setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# add an intended file from original data set from setup.py to DOCS
|
||||
local DOCS=( README.rst CONTRIBUTING.md conf/glances.conf )
|
||||
# setup for pre-built html docs in setup.py
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "Action script feature" dev-python/pystache
|
||||
optfeature "Autodiscover mode" dev-python/zeroconf
|
||||
optfeature "Battery monitoring support" dev-python/batinfo
|
||||
optfeature "Docker monitoring support" dev-python/docker-py
|
||||
optfeature "Graphical/chart support" dev-python/matplotlib
|
||||
# https://bitbucket.org/gleb_zhulik/py3sensors
|
||||
# optfeature "Hardware monitoring support" dev-python/py3sensors
|
||||
optfeature "IP plugin" dev-python/netifaces
|
||||
optfeature "InfluxDB export module" dev-python/influxdb
|
||||
optfeature "Hard drive temperature monitoring" app-admin/hddtemp
|
||||
optfeature "Quicklook CPU info" dev-python/py-cpuinfo
|
||||
optfeature "RAID support" dev-python/pymdstat
|
||||
optfeature "RabbitMQ/ActiveMQ export module" dev-python/pika
|
||||
# https://github.com/banjiewen/bernhard
|
||||
# optfeature "Riemann export" dev-python/bernhard
|
||||
optfeature "SNMP support" dev-python/pysnmp
|
||||
optfeature "StatsD export module" dev-python/statsd
|
||||
optfeature "Web server mode" dev-python/bottle
|
||||
}
|
||||
@@ -1,72 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1 eutils linux-info
|
||||
|
||||
DESCRIPTION="CLI curses based monitoring tool"
|
||||
HOMEPAGE="https://github.com/nicolargo/glances"
|
||||
SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
# There is another optional extra batinfo, absent from portage
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/psutil-2.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
|
||||
|
||||
S="${WORKDIR}/${P^}"
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# Remove duplicate entries of a prebuilt doc build and
|
||||
# ensure install of the file glances.conf in /etc/${PN}
|
||||
sed \
|
||||
-e '/share\/doc\/glances/d' \
|
||||
-e "s:'conf/glances.conf':('etc/glances', ['conf/glances.conf':g" \
|
||||
-i setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# add an intended file from original data set from setup.py to DOCS
|
||||
local DOCS=( README.rst conf/glances.conf )
|
||||
# setup for pre-built html docs in setup.py
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "Action script feature" dev-python/pystache
|
||||
optfeature "Autodiscover mode" dev-python/zeroconf
|
||||
optfeature "Battery monitoring support" dev-python/batinfo
|
||||
optfeature "Docker monitoring support" dev-python/docker-py
|
||||
optfeature "Graphical/chart support" dev-python/matplotlib
|
||||
# https://bitbucket.org/gleb_zhulik/py3sensors
|
||||
# optfeature "Hardware monitoring support" dev-python/py3sensors
|
||||
optfeature "IP plugin" dev-python/netifaces
|
||||
optfeature "InfluxDB export module" dev-python/influxdb
|
||||
optfeature "Hard drive temperature monitoring" app-admin/hddtemp
|
||||
optfeature "Quicklook CPU info" dev-python/py-cpuinfo
|
||||
optfeature "RAID support" dev-python/pymdstat
|
||||
optfeature "RabbitMQ/ActiveMQ export module" dev-python/pika
|
||||
# https://github.com/banjiewen/bernhard
|
||||
# optfeature "Riemann export" dev-python/bernhard
|
||||
optfeature "SNMP support" dev-python/pysnmp
|
||||
optfeature "StatsD export module" dev-python/statsd
|
||||
optfeature "Web server mode" dev-python/bottle
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1 eutils linux-info
|
||||
|
||||
DESCRIPTION="CLI curses based monitoring tool"
|
||||
HOMEPAGE="https://github.com/nicolargo/glances"
|
||||
SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
# There is another optional extra batinfo, absent from portage
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/psutil-2.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
|
||||
|
||||
S="${WORKDIR}/${P^}"
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# Remove duplicate entries of a prebuilt doc build and
|
||||
# ensure install of the file glances.conf in /etc/${PN}
|
||||
sed \
|
||||
-e '/share\/doc\/glances/d' \
|
||||
-e "s/'CONTRIBUTING.md',//" \
|
||||
-e "s:'conf/glances.conf':('/etc/glances', ['conf/glances.conf':g" \
|
||||
-i setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# add an intended file from original data set from setup.py to DOCS
|
||||
local DOCS=( README.rst CONTRIBUTING.md conf/glances.conf )
|
||||
# setup for pre-built html docs in setup.py
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "Action script feature" dev-python/pystache
|
||||
optfeature "Autodiscover mode" dev-python/zeroconf
|
||||
optfeature "Battery monitoring support" dev-python/batinfo
|
||||
optfeature "Docker monitoring support" dev-python/docker-py
|
||||
optfeature "Graphical/chart support" dev-python/matplotlib
|
||||
# https://bitbucket.org/gleb_zhulik/py3sensors
|
||||
# optfeature "Hardware monitoring support" dev-python/py3sensors
|
||||
optfeature "IP plugin" dev-python/netifaces
|
||||
optfeature "InfluxDB export module" dev-python/influxdb
|
||||
optfeature "Hard drive temperature monitoring" app-admin/hddtemp
|
||||
optfeature "Quicklook CPU info" dev-python/py-cpuinfo
|
||||
optfeature "RAID support" dev-python/pymdstat
|
||||
optfeature "RabbitMQ/ActiveMQ export module" dev-python/pika
|
||||
# https://github.com/banjiewen/bernhard
|
||||
# optfeature "Riemann export" dev-python/bernhard
|
||||
optfeature "SNMP support" dev-python/pysnmp
|
||||
optfeature "StatsD export module" dev-python/statsd
|
||||
optfeature "Web server mode" dev-python/bottle
|
||||
}
|
||||
@@ -1,72 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1 eutils linux-info
|
||||
|
||||
DESCRIPTION="CLI curses based monitoring tool"
|
||||
HOMEPAGE="https://github.com/nicolargo/glances"
|
||||
SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
# There is another optional extra batinfo, absent from portage
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/psutil-2.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
|
||||
|
||||
S="${WORKDIR}/${P^}"
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# Remove duplicate entries of a prebuilt doc build and
|
||||
# ensure install of the file glances.conf in /etc/${PN}
|
||||
sed \
|
||||
-e '/share\/doc\/glances/d' \
|
||||
-e "s:'conf/glances.conf':('etc/glances', ['conf/glances.conf':g" \
|
||||
-i setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# add an intended file from original data set from setup.py to DOCS
|
||||
local DOCS=( README.rst conf/glances.conf )
|
||||
# setup for pre-built html docs in setup.py
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "Action script feature" dev-python/pystache
|
||||
optfeature "Autodiscover mode" dev-python/zeroconf
|
||||
optfeature "Battery monitoring support" dev-python/batinfo
|
||||
optfeature "Docker monitoring support" dev-python/docker-py
|
||||
optfeature "Graphical/chart support" dev-python/matplotlib
|
||||
# https://bitbucket.org/gleb_zhulik/py3sensors
|
||||
# optfeature "Hardware monitoring support" dev-python/py3sensors
|
||||
optfeature "IP plugin" dev-python/netifaces
|
||||
optfeature "InfluxDB export module" dev-python/influxdb
|
||||
optfeature "Hard drive temperature monitoring" app-admin/hddtemp
|
||||
optfeature "Quicklook CPU info" dev-python/py-cpuinfo
|
||||
optfeature "RAID support" dev-python/pymdstat
|
||||
optfeature "RabbitMQ/ActiveMQ export module" dev-python/pika
|
||||
# https://github.com/banjiewen/bernhard
|
||||
# optfeature "Riemann export" dev-python/bernhard
|
||||
optfeature "SNMP support" dev-python/pysnmp
|
||||
optfeature "StatsD export module" dev-python/statsd
|
||||
optfeature "Web server mode" dev-python/bottle
|
||||
}
|
||||
@@ -1,72 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1 eutils linux-info
|
||||
|
||||
DESCRIPTION="CLI curses based monitoring tool"
|
||||
HOMEPAGE="https://github.com/nicolargo/glances"
|
||||
SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
# There is another optional extra batinfo, absent from portage
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/psutil-2.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
|
||||
|
||||
S="${WORKDIR}/${P^}"
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# Remove duplicate entries of a prebuilt doc build and
|
||||
# ensure install of the file glances.conf in /etc/${PN}
|
||||
sed \
|
||||
-e '/share\/doc\/glances/d' \
|
||||
-e "s:'conf/glances.conf':('etc/glances', ['conf/glances.conf':g" \
|
||||
-i setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# add an intended file from original data set from setup.py to DOCS
|
||||
local DOCS=( README.rst conf/glances.conf )
|
||||
# setup for pre-built html docs in setup.py
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "Action script feature" dev-python/pystache
|
||||
optfeature "Autodiscover mode" dev-python/zeroconf
|
||||
optfeature "Battery monitoring support" dev-python/batinfo
|
||||
optfeature "Docker monitoring support" dev-python/docker-py
|
||||
optfeature "Graphical/chart support" dev-python/matplotlib
|
||||
# https://bitbucket.org/gleb_zhulik/py3sensors
|
||||
# optfeature "Hardware monitoring support" dev-python/py3sensors
|
||||
optfeature "IP plugin" dev-python/netifaces
|
||||
optfeature "InfluxDB export module" dev-python/influxdb
|
||||
optfeature "Hard drive temperature monitoring" app-admin/hddtemp
|
||||
optfeature "Quicklook CPU info" dev-python/py-cpuinfo
|
||||
optfeature "RAID support" dev-python/pymdstat
|
||||
optfeature "RabbitMQ/ActiveMQ export module" dev-python/pika
|
||||
# https://github.com/banjiewen/bernhard
|
||||
# optfeature "Riemann export" dev-python/bernhard
|
||||
optfeature "SNMP support" dev-python/pysnmp
|
||||
optfeature "StatsD export module" dev-python/statsd
|
||||
optfeature "Web server mode" dev-python/bottle
|
||||
}
|
||||
@@ -1,72 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_{4,5}} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1 eutils linux-info
|
||||
|
||||
DESCRIPTION="CLI curses based monitoring tool"
|
||||
HOMEPAGE="https://github.com/nicolargo/glances"
|
||||
SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
# There is another optional extra batinfo, absent from portage
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/psutil-2.0.0[${PYTHON_USEDEP}]"
|
||||
|
||||
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
|
||||
|
||||
S="${WORKDIR}/${P^}"
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# Remove duplicate entries of a prebuilt doc build and
|
||||
# ensure install of the file glances.conf in /etc/${PN}
|
||||
sed \
|
||||
-e '/share\/doc\/glances/d' \
|
||||
-e "s:'conf/glances.conf':('etc/glances', ['conf/glances.conf':g" \
|
||||
-i setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# add an intended file from original data set from setup.py to DOCS
|
||||
local DOCS=( README.rst conf/glances.conf )
|
||||
# setup for pre-built html docs in setup.py
|
||||
use doc && local HTML_DOCS=( docs/_build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
optfeature "Action script feature" dev-python/pystache
|
||||
optfeature "Autodiscover mode" dev-python/zeroconf
|
||||
optfeature "Battery monitoring support" dev-python/batinfo
|
||||
optfeature "Docker monitoring support" dev-python/docker-py
|
||||
optfeature "Graphical/chart support" dev-python/matplotlib
|
||||
# https://bitbucket.org/gleb_zhulik/py3sensors
|
||||
# optfeature "Hardware monitoring support" dev-python/py3sensors
|
||||
optfeature "IP plugin" dev-python/netifaces
|
||||
optfeature "InfluxDB export module" dev-python/influxdb
|
||||
optfeature "Hard drive temperature monitoring" app-admin/hddtemp
|
||||
optfeature "Quicklook CPU info" dev-python/py-cpuinfo
|
||||
optfeature "RAID support" dev-python/pymdstat
|
||||
optfeature "RabbitMQ/ActiveMQ export module" dev-python/pika
|
||||
# https://github.com/banjiewen/bernhard
|
||||
# optfeature "Riemann export" dev-python/bernhard
|
||||
optfeature "SNMP support" dev-python/pysnmp
|
||||
optfeature "StatsD export module" dev-python/statsd
|
||||
optfeature "Web server mode" dev-python/bottle
|
||||
}
|
||||
Reference in New Issue
Block a user