commit:     6aa3a4ed37e4a477fdc200e2e50176e8477cf8b9
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 08:21:08 2019 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 08:23:59 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aa3a4ed

sys-process/glances: bump to 3.1.3

EAPI=7
new distutils magic for simpler ebuild

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 sys-process/glances/Manifest                   |  1 +
 sys-process/glances/files/3.1.3-fix-test.patch | 28 +++++++++
 sys-process/glances/glances-3.1.3.ebuild       | 83 ++++++++++++++++++++++++++
 3 files changed, 112 insertions(+)

diff --git a/sys-process/glances/Manifest b/sys-process/glances/Manifest
index d71fbb42e35..37e30b9d8a2 100644
--- a/sys-process/glances/Manifest
+++ b/sys-process/glances/Manifest
@@ -2,3 +2,4 @@ DIST Glances-2.11.1.tar.gz 5665685 BLAKE2B 
5de75e7770cc01a0ddd6fcb0583e5d23c02e5
 DIST glances-3.1.0.tar.gz 6688798 BLAKE2B 
9ae2e6a4944d1af871b88ea325bc23cad24f11e70ff4871eeb6e4a510eb3a1e6f03fa5fa2cfde30d8b9aa0c32137aacb51d2dcb335c7ee6729e8d5913ec4e999
 SHA512 
a888cafa5987ab7a88caa0248e0cb3d9f65466d71ee8f1ca63565c5a8a59282be77c14f29afb2302fba0e79294c39e96384791cd89d23aa7727bfd4f20e2814d
 DIST glances-3.1.1.tar.gz 6737781 BLAKE2B 
ffd20d6ee994428dccb9b4aea481c9c3f618f0f7895098ff9be3cda206c1dc82b924eef002d13d9a93b53c28ba4faa8d88cfdb5f0691097cf31d89b7e3237d50
 SHA512 
d42ced74c9dc5150ff7242b61aaba94fd6009e150f637cadd4b6c9a7fc7b8028ea2e8835ae0ecf66bd12321cbc3f68e75cd526c97f5aecad6cf6df578e1b222f
 DIST glances-3.1.2.tar.gz 6740649 BLAKE2B 
109ce18d045aafd921ccfff64aaab12a8106fbf44bb8a1ca352d544244d5fcf911f85158964c84142e279112e8add3f7bbcc1eff22fb5b3e05b40c94d13e960e
 SHA512 
f9b839532d2b53edb9dfeac9abe8f5a9e314b7bdf34e54083614c02262bb15f0db745762f06b609071d2a6fead8b52eed16b6f5a569904ef56dafb41b85b991b
+DIST glances-3.1.3.tar.gz 6759527 BLAKE2B 
6f164dde0c67d58d32495b7b9b331255b3c599784518c92e3a2a456a1de9ddece8342e846923a7d6d3b6965ce5dd283f3f8eae5351bdfd8b1eda1b7969609c6e
 SHA512 
7fcbfff9e94721de2dba5ce2e7a2899fab877283819dedd8e1d8c868f4fd6cb584887979379f7b7a50c0f3b2fec1e147db06afff267a8e8fa40ba189246beb79

diff --git a/sys-process/glances/files/3.1.3-fix-test.patch 
b/sys-process/glances/files/3.1.3-fix-test.patch
new file mode 100644
index 00000000000..5e087ce96ba
--- /dev/null
+++ b/sys-process/glances/files/3.1.3-fix-test.patch
@@ -0,0 +1,28 @@
+From abf64ffde31113f5f46ef286703ff061fc57395f Mon Sep 17 00:00:00 2001
+From: nicolargo <nico...@nicolargo.com>
+Date: Sat, 12 Oct 2019 11:45:36 +0200
+Subject: [PATCH] Correct unitest
+
+---
+ glances/plugins/glances_plugin.py | 7 ++++---
+ 1 file changed, 4 insertions(+), 3 deletions(-)
+
+diff --git a/glances/plugins/glances_plugin.py 
b/glances/plugins/glances_plugin.py
+index 6a1c8606..23a76f80 100644
+--- a/glances/plugins/glances_plugin.py
++++ b/glances/plugins/glances_plugin.py
+@@ -86,10 +86,11 @@ def __init__(self,
+         self.stats_history = self.init_stats_history()
+ 
+         # Init the limits (configuration keys) dictionnary
+-        logger.debug('Load section {} in {}'.format(self.plugin_name,
+-                                                    
config.config_file_paths()))
+         self._limits = dict()
+-        self.load_limits(config=config)
++        if config is not None:
++            logger.debug('Load section {} in {}'.format(self.plugin_name,
++                                                        
config.config_file_paths()))
++            self.load_limits(config=config)
+ 
+         # Init the actions
+         self.actions = GlancesActions(args=args)

diff --git a/sys-process/glances/glances-3.1.3.ebuild 
b/sys-process/glances/glances-3.1.3.ebuild
new file mode 100644
index 00000000000..123e7d05a15
--- /dev/null
+++ b/sys-process/glances/glances-3.1.3.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
+PYTHON_REQ_USE="ncurses"
+
+inherit distutils-r1 eutils linux-info
+
+DESCRIPTION="CLI curses based monitoring tool"
+HOMEPAGE="https://github.com/nicolargo/glances";
+SRC_URI="https://github.com/nicolargo/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="dev-python/future[${PYTHON_USEDEP}]
+       >=dev-python/psutil-5.4.3[${PYTHON_USEDEP}]"
+
+CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
+
+PATCHES=( "${FILESDIR}/${PV}-fix-test.patch" )
+
+distutils_enable_tests unittest
+distutils_enable_sphinx docs --no-autodoc
+
+pkg_setup() {
+       echo $DISTUTILS_USE_SETUPTOOLS
+       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 )
+       distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+       optfeature "Action script feature" dev-python/pystache
+       optfeature "Autodiscover mode" dev-python/zeroconf
+       optfeature "Cloud support" dev-python/requests
+       optfeature "Quicklook CPU info" dev-python/py-cpuinfo
+       optfeature "Docker monitoring support" dev-python/docker-py
+       #optfeature "Export module" \
+       #       unpackaged/bernhard \
+       #       unpackaged/cassandra-driver \
+       #       unpackaged/potsdb \
+       #       dev-python/couchdb-python \
+       #       dev-python/elasticsearch-py \
+       #       dev-python/influxdb \
+       #       dev-python/kafka-python \
+       #       dev-python/pika \
+       #       dev-python/paho-mqtt \
+       #       dev-python/prometheus_client \
+       #       dev-python/pyzmq \
+       #       dev-python/statsd
+       optfeature "Folder monitoring" dev-python/scandir
+       #optfeature "Nvidia GPU monitoring" unpackaged/nvidia-ml-py3
+       optfeature "SVG graph support" dev-python/pygal
+       optfeature "IP plugin" dev-python/netifaces
+       optfeature "RAID monitoring" dev-python/pymdstat
+       #optfeature "SMART support" unpackaged/pySMART.smartx
+       optfeature "RAID support" dev-python/pymdstat
+       optfeature "SNMP support" dev-python/pysnmp
+       #optfeature "sparklines plugin" unpackaged/sparklines
+       optfeature "Web server mode" dev-python/bottle dev-python/requests
+       optfeature "WIFI plugin" net-wireless/python-wifi
+}

Reply via email to