diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2018-09-06 09:05:19 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2018-09-06 09:05:19 -0700 |
commit | 5d0890e83f7571bae54ad58bbe5a93c1d507b6e5 (patch) | |
tree | 4e54928d32a38441211652cc43a18a705c29bf52 | |
parent | net-misc/curl: amd64 stable wrt bug #665292 (diff) | |
download | gentoo-5d0890e83f7571bae54ad58bbe5a93c1d507b6e5.tar.gz gentoo-5d0890e83f7571bae54ad58bbe5a93c1d507b6e5.tar.bz2 gentoo-5d0890e83f7571bae54ad58bbe5a93c1d507b6e5.zip |
sys-process/glances: version bump to 3.0.1
Package-Manager: Portage-2.3.49, Repoman-2.3.10
-rw-r--r-- | sys-process/glances/Manifest | 1 | ||||
-rw-r--r-- | sys-process/glances/glances-3.0.1.ebuild | 82 |
2 files changed, 83 insertions, 0 deletions
diff --git a/sys-process/glances/Manifest b/sys-process/glances/Manifest index 06bd290d7327..5429a8959175 100644 --- a/sys-process/glances/Manifest +++ b/sys-process/glances/Manifest @@ -1,2 +1,3 @@ DIST Glances-2.11.1.tar.gz 5665685 BLAKE2B 5de75e7770cc01a0ddd6fcb0583e5d23c02e5188c7d6cbd55d2999be9321a1affda351094b8614d206e640e5a1338266b5c77629ec53bb280b9166f7b6a996e2 SHA512 99adccff7d1531760834b76f9a9525df0bf9a8f6f57dbd1f7c3c0515ba3b5c94f26172e19bbc7c93cecbe4bdebcca87ab3a11dd592259509eff85346780ef43a +DIST Glances-3.0.1.tar.gz 6247919 BLAKE2B 15c59c76037d0e268687762b7539deab0a40748c27837177aa59d97c551471694e5bef6caebc818b4d17e1e5aef5c7cfccbd671e4821446b3bc9175a7ad240ea SHA512 e035de66572facffb2f4ffd85cbb23bf035128ccfb3b31b22deee779b8d7c4606e390fa7c7eeb6421375fbfbdfc451f8d9f112cbf94f36092f2e6997f8cbe9d3 DIST Glances-3.0.tar.gz 6247724 BLAKE2B 0481782c7ad69459ae7a3b2d01f08c1ef45715c8a272ad78283c49c13bd9d7465f1a0ee96284b539b132f9cbc01e8432cf49239f0737da1858895f83b0b47cfe SHA512 8d77d429b553fcb603c627f0fd0a8998791d5bf86be3d89cd35b37e46e1b0546787607ba4f92d5a4981565db54a8b55d314cd3b9e7824a353324cd9d404f3c0b diff --git a/sys-process/glances/glances-3.0.1.ebuild b/sys-process/glances/glances-3.0.1.ebuild new file mode 100644 index 000000000000..8f7a7c3865df --- /dev/null +++ b/sys-process/glances/glances-3.0.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +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=" + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] + ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +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':('${EPREFIX}/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 ) + # build docs + if use doc; then + pushd docs + make html + popd + local HTML_DOCS=( docs/_build/html/. ) + fi + 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 +} |