Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7F41484EAC for ; Sun, 21 May 2023 17:41:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0rkIJU9Eq4FT for ; Sun, 21 May 2023 17:41:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4633984E8D for ; Sun, 21 May 2023 17:41:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3A255FA87; Sun, 21 May 2023 17:41:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168469086519560" MIME-Version: 1.0 Date: Sun, 21 May 2023 17:41:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/sysutils/py-Glances To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230521174105.3A255FA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168469086519560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun May 21 17:41:05 UTC 2023 Modified Files: pkgsrc/sysutils/py-Glances: Makefile PLIST distinfo pkgsrc/sysutils/py-Glances/patches: patch-glances_plugins_glances__cpu.py patch-glances_plugins_glances__quicklook.py Log Message: py-Glances: update to 3.4.0.3. =============== Version 3.4.0.3 =============== Bugs corrected: * Add glances binary to '/usr/local/bin' + Update ENV PATH to include '/venv/bin' in Dockerfiles #2419 * No more threshold display in the WebUI cpu/mem and memswap plugins #2420 =============== Version 3.4.0.2 =============== Bugs corrected: * Cannot start Glances 3.4.0.1 on Windows 10: SIGHUP not defined #2408 * Influxdb2 export not working #2407 =============== Version 3.4.0.1 =============== Bug corrected: * 3.4.0 crash on startupwith minimal deps #2401 =============== Version 3.4.0 =============== Enhancements: * Enhance process "extended stats" display (in Curses interface) #2225 _You can now *pin* a specific process to the top of the process list_ * Improve Glances start time by disabling Docker and Podman version getter - Related to #1985 * Customizable InfluxDB2 export interval #2348 * Improve kill signal management #2194 * Display a critical error message if Glances is ran with both webserver and rpcserver mode * Refactor the Cloud plugin, disable it by default in the default configuration file - Related to #2279 * Correct clear-text logging of sensitive information (security alert #29) * Use of a broken or weak cryptographic hashing algorithm (SHA256) on password storage #2175 Bug corrected: * Correct issue (error message) concerning the Cloud plugin - Related to #2392 * InfluxDB2 export doesn't process folders correctly - missing key #2327 * Index error when displaying programs on MacOS #2360 * Dissociate 2 sensors with exactly the same names #2280 * All times displayed in UTC - Container not using TZ/localtime (Docker) #2278 * It is not possible to return API data for a particular mount point (FS plugin) #1162 Documentation and CI: * chg: Dockerfile - structured & cleaner build process #2386 * Ubuntu is back as additional Docker images. Alpine stays the default one. Related to #2185 * Improve Makefile amd docker-compose to support Podman and GPU * Workaround to pin urlib3<2.0 - Related to #2392 * Error while generating the documentation (ModuleNotFoundError: No module named 'glances') #2391 * Update Flamegraph (memory profiling) * Improve template for issue report and feature request * Parameters in the VIRT column #2343 * Graph generation documentation is not clear #2336 * docs: Docker - include tag details * Add global architecture diagram (Excalidraw) * Links to documents in sample glances.conf are not valid. #2271 * Add semgrep support * Smartmontools missing from full docker image #2262 * Improve documentation regarding regexp in configuration file * Improve documentation about the [ip] plugin #2251 Cyber security update: * All libs have been updated to the latest version Full roadmap here: https://github.com/nicolargo/glances/milestone/62?closed=1 To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/sysutils/py-Glances/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/sysutils/py-Glances/PLIST cvs rdiff -u -r1.21 -r1.22 pkgsrc/sysutils/py-Glances/distinfo cvs rdiff -u -r1.3 -r1.4 \ pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__cpu.py \ pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__quicklook.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168469086519560 Content-Disposition: inline Content-Length: 6799 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-Glances/Makefile diff -u pkgsrc/sysutils/py-Glances/Makefile:1.22 pkgsrc/sysutils/py-Glances/Makefile:1.23 --- pkgsrc/sysutils/py-Glances/Makefile:1.22 Sat Feb 4 16:21:58 2023 +++ pkgsrc/sysutils/py-Glances/Makefile Sun May 21 17:41:04 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2023/02/04 16:21:58 fox Exp $ +# $NetBSD: Makefile,v 1.23 2023/05/21 17:41:04 wiz Exp $ -DISTNAME= Glances-3.3.1.1 +DISTNAME= Glances-3.4.0.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=G/Glances/} Index: pkgsrc/sysutils/py-Glances/PLIST diff -u pkgsrc/sysutils/py-Glances/PLIST:1.10 pkgsrc/sysutils/py-Glances/PLIST:1.11 --- pkgsrc/sysutils/py-Glances/PLIST:1.10 Mon Aug 8 09:28:06 2022 +++ pkgsrc/sysutils/py-Glances/PLIST Sun May 21 17:41:04 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2022/08/08 09:28:06 fox Exp $ +@comment $NetBSD: PLIST,v 1.11 2023/05/21 17:41:04 wiz Exp $ bin/glances-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -96,6 +96,9 @@ ${PYSITELIB}/glances/exports/glances_jso ${PYSITELIB}/glances/exports/glances_kafka.py ${PYSITELIB}/glances/exports/glances_kafka.pyc ${PYSITELIB}/glances/exports/glances_kafka.pyo +${PYSITELIB}/glances/exports/glances_mongodb.py +${PYSITELIB}/glances/exports/glances_mongodb.pyc +${PYSITELIB}/glances/exports/glances_mongodb.pyo ${PYSITELIB}/glances/exports/glances_mqtt.py ${PYSITELIB}/glances/exports/glances_mqtt.pyc ${PYSITELIB}/glances/exports/glances_mqtt.pyo @@ -186,6 +189,18 @@ ${PYSITELIB}/glances/password_list.pyo ${PYSITELIB}/glances/plugins/__init__.py ${PYSITELIB}/glances/plugins/__init__.pyc ${PYSITELIB}/glances/plugins/__init__.pyo +${PYSITELIB}/glances/plugins/containers/__init__.py +${PYSITELIB}/glances/plugins/containers/__init__.pyc +${PYSITELIB}/glances/plugins/containers/__init__.pyo +${PYSITELIB}/glances/plugins/containers/glances_docker.py +${PYSITELIB}/glances/plugins/containers/glances_docker.pyc +${PYSITELIB}/glances/plugins/containers/glances_docker.pyo +${PYSITELIB}/glances/plugins/containers/glances_podman.py +${PYSITELIB}/glances/plugins/containers/glances_podman.pyc +${PYSITELIB}/glances/plugins/containers/glances_podman.pyo +${PYSITELIB}/glances/plugins/containers/stats_streamer.py +${PYSITELIB}/glances/plugins/containers/stats_streamer.pyc +${PYSITELIB}/glances/plugins/containers/stats_streamer.pyo ${PYSITELIB}/glances/plugins/glances_alert.py ${PYSITELIB}/glances/plugins/glances_alert.pyc ${PYSITELIB}/glances/plugins/glances_alert.pyo @@ -198,6 +213,9 @@ ${PYSITELIB}/glances/plugins/glances_clo ${PYSITELIB}/glances/plugins/glances_connections.py ${PYSITELIB}/glances/plugins/glances_connections.pyc ${PYSITELIB}/glances/plugins/glances_connections.pyo +${PYSITELIB}/glances/plugins/glances_containers.py +${PYSITELIB}/glances/plugins/glances_containers.pyc +${PYSITELIB}/glances/plugins/glances_containers.pyo ${PYSITELIB}/glances/plugins/glances_core.py ${PYSITELIB}/glances/plugins/glances_core.pyc ${PYSITELIB}/glances/plugins/glances_core.pyo @@ -207,9 +225,6 @@ ${PYSITELIB}/glances/plugins/glances_cpu ${PYSITELIB}/glances/plugins/glances_diskio.py ${PYSITELIB}/glances/plugins/glances_diskio.pyc ${PYSITELIB}/glances/plugins/glances_diskio.pyo -${PYSITELIB}/glances/plugins/glances_docker.py -${PYSITELIB}/glances/plugins/glances_docker.pyc -${PYSITELIB}/glances/plugins/glances_docker.pyo ${PYSITELIB}/glances/plugins/glances_folders.py ${PYSITELIB}/glances/plugins/glances_folders.pyc ${PYSITELIB}/glances/plugins/glances_folders.pyo Index: pkgsrc/sysutils/py-Glances/distinfo diff -u pkgsrc/sysutils/py-Glances/distinfo:1.21 pkgsrc/sysutils/py-Glances/distinfo:1.22 --- pkgsrc/sysutils/py-Glances/distinfo:1.21 Sat Feb 4 16:21:58 2023 +++ pkgsrc/sysutils/py-Glances/distinfo Sun May 21 17:41:04 2023 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.21 2023/02/04 16:21:58 fox Exp $ +$NetBSD: distinfo,v 1.22 2023/05/21 17:41:04 wiz Exp $ -BLAKE2s (Glances-3.3.1.1.tar.gz) = d5d1d368195c1a2fb92f2df1ee36ef480948d6b141c6acd1a067e26569bcfb2a -SHA512 (Glances-3.3.1.1.tar.gz) = 18906cff8a6f2316a561bccea5af4df5ed68461ba7897a80a6016b49ee4a440b9bbf633abbafbcf764c4acc015f763cc05ff032c310cbe6730d21fb2024a256d -Size (Glances-3.3.1.1.tar.gz) = 6164349 bytes -SHA1 (patch-glances_plugins_glances__cpu.py) = c23747ee86e3a7d93e2f8072226b089b5cb3376a -SHA1 (patch-glances_plugins_glances__quicklook.py) = 20478f6097f84a2bcf0688703b5946c76b161779 +BLAKE2s (Glances-3.4.0.3.tar.gz) = baf3e16125a60614584b93820e44c589b2204bf8bc9e9f363a55282e98214419 +SHA512 (Glances-3.4.0.3.tar.gz) = 15686cc9f4e8be23a5ecf6c563204cf36026338aff36e0d8137e5ae65f504aa695c5e62e4c7087edcc23c32c35be5d266cc6ee91832b9249b1e972a20173c337 +Size (Glances-3.4.0.3.tar.gz) = 6441360 bytes +SHA1 (patch-glances_plugins_glances__cpu.py) = 1bac5f8496a37197e83bbe27fdd13f9be26bd4e1 +SHA1 (patch-glances_plugins_glances__quicklook.py) = caf9768b683e551c4217e5d1657a9e7466fb2e5e Index: pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__cpu.py diff -u pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__cpu.py:1.3 pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__cpu.py:1.4 --- pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__cpu.py:1.3 Sat Nov 12 06:19:26 2022 +++ pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__cpu.py Sun May 21 17:41:05 2023 @@ -1,6 +1,7 @@ -$NetBSD: patch-glances_plugins_glances__cpu.py,v 1.3 2022/11/12 06:19:26 fox Exp $ +$NetBSD: patch-glances_plugins_glances__cpu.py,v 1.4 2023/05/21 17:41:05 wiz Exp $ Disable system call counts in BSD. + --- glances/plugins/glances_cpu.py.orig 2022-11-03 14:30:13.000000000 +0000 +++ glances/plugins/glances_cpu.py @@ -12,7 +12,7 @@ Index: pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__quicklook.py diff -u pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__quicklook.py:1.3 pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__quicklook.py:1.4 --- pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__quicklook.py:1.3 Mon Aug 8 09:28:06 2022 +++ pkgsrc/sysutils/py-Glances/patches/patch-glances_plugins_glances__quicklook.py Sun May 21 17:41:05 2023 @@ -1,7 +1,8 @@ -$NetBSD: patch-glances_plugins_glances__quicklook.py,v 1.3 2022/08/08 09:28:06 fox Exp $ +$NetBSD: patch-glances_plugins_glances__quicklook.py,v 1.4 2023/05/21 17:41:05 wiz Exp $ It seems cpu_hz_current and cpu_hz is not available in NetBSD, so add additional check to see if the key exists. + --- glances/plugins/glances_quicklook.py.orig 2022-07-28 16:12:29.000000000 +0000 +++ glances/plugins/glances_quicklook.py @@ -64,10 +64,12 @@ class Plugin(GlancesPlugin): --_----------=_168469086519560--