Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-Glances for openSUSE:Factory 
checked in at 2022-07-29 16:47:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Glances (Old)
 and      /work/SRC/openSUSE:Factory/.python-Glances.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-Glances"

Fri Jul 29 16:47:22 2022 rev:20 rq:991603 version:3.2.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-Glances/python-Glances.changes    
2022-04-13 22:15:30.532202626 +0200
+++ /work/SRC/openSUSE:Factory/.python-Glances.new.1533/python-Glances.changes  
2022-07-29 16:47:39.650613007 +0200
@@ -1,0 +2,43 @@
+Thu Jul 28 18:12:36 UTC 2022 - Michael Str??der <mich...@stroeder.com>
+
+- Update to version 3.2.7
+  * Version 3.2.7
+    + Enhancements:
+      * Config to disable all plugins by default (or enable an exclusive list) 
#2089
+      * Keybind(s) for modifying nice level #2081
+      * [WEBUI] Reorganize help screen #2037
+      * Add a Json stdout option #2060
+      * Improve error message when export error occures
+      * Improve error message when MQTT error occures
+      * Change the way core are displayed
+      * Remove unused key in the process list
+      * Refactor top menu of the curse interface
+      * Improve Irix display for the load plugin
+    + Bug corrected:
+      * In the sensor plugin thresholds in the configuration file should 
overwrite system ones #2058
+      * Drive names truncated in Web UI #2055
+      * Correct issue with CPU label
+    + Documentation and CI:
+      * Improve makefile help #2078
+      * Add quote to the update command line (already ok for the 
installation). Related to #2073
+      * Make Glances (almost) compliant with REUSE #2042
+      * Update README for Debian package users
+      * Update documentation for Docker
+      * Update docs for new shortcut
+      * Disable Pyright on the Git actions pipeline
+      * Refactor comments
+      * Except datutil import error
+      * Another dep issue solved in the Alpine Docker + issue in the outdated 
method
+  * Version 3.2.6
+    + Enhancement requests:
+      * Create a Show option in the configuration file to only show some stats 
#2052
+      * Use glances.conf file inside docker-compose folder for Docker images
+      * Optionally disable public ip #2030
+      * Update public ip at intervals #2029
+    + Bug corrected:
+      * Unitary tests should run loopback interface #2051
+      * Add python-datutil dep for Focker plugin #2045
+      * Add venv to list of .PHONY in Makefile #2043
+      * Glances API Documentation displays non valid json #2036
+
+-------------------------------------------------------------------

Old:
----
  v3.2.5.tar.gz

New:
----
  v3.2.7.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-Glances.spec ++++++
--- /var/tmp/diff_new_pack.xm1TDP/_old  2022-07-29 16:47:40.838616311 +0200
+++ /var/tmp/diff_new_pack.xm1TDP/_new  2022-07-29 16:47:40.846616332 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define         skip_python2 1
 Name:           python-Glances
-Version:        3.2.5
+Version:        3.2.7
 Release:        0
 Summary:        A cross-platform curses-based monitoring tool
 License:        LGPL-3.0-only

++++++ fix-tests.patch ++++++
--- /var/tmp/diff_new_pack.xm1TDP/_old  2022-07-29 16:47:40.874616411 +0200
+++ /var/tmp/diff_new_pack.xm1TDP/_new  2022-07-29 16:47:40.878616422 +0200
@@ -1,8 +1,7 @@
-diff --git a/unitest-restful.py b/unitest-restful.py
-index 7b77a2b..5f991bd 100755
---- a/unitest-restful.py
-+++ b/unitest-restful.py
-@@ -22,6 +22,7 @@
+diff -ur glances-3.2.7.orig/unitest-restful.py glances-3.2.7/unitest-restful.py
+--- glances-3.2.7.orig/unitest-restful.py      2022-07-28 18:10:35.000000000 
+0200
++++ glances-3.2.7/unitest-restful.py   2022-07-28 20:22:43.516291302 +0200
+@@ -12,6 +12,7 @@
  
  import shlex
  import subprocess
@@ -10,20 +9,19 @@
  import time
  import numbers
  import unittest
-@@ -64,7 +65,7 @@ class TestGlances(unittest.TestCase):
+@@ -54,7 +55,7 @@
          global pid
  
          print('INFO: [TEST_000] Start the Glances Web Server')
--        cmdline = "python -m glances -w -p %s" % SERVER_PORT
-+        cmdline = "%s -m glances -w -p %s" % (sys.executable, SERVER_PORT)
+-        cmdline = "python -m glances -B localhost -w -p %s" % SERVER_PORT
++        cmdline = "%s -m glances -B localhost -w -p %s" % (sys.executable, 
SERVER_PORT)
          print("Run the Glances Web Server on port %s" % SERVER_PORT)
          args = shlex.split(cmdline)
          pid = subprocess.Popen(args)
-diff --git a/unitest-xmlrpc.py b/unitest-xmlrpc.py
-index 7e52ec5..384fa46 100755
---- a/unitest-xmlrpc.py
-+++ b/unitest-xmlrpc.py
-@@ -23,6 +23,7 @@
+diff -ur glances-3.2.7.orig/unitest-xmlrpc.py glances-3.2.7/unitest-xmlrpc.py
+--- glances-3.2.7.orig/unitest-xmlrpc.py       2022-07-28 18:10:35.000000000 
+0200
++++ glances-3.2.7/unitest-xmlrpc.py    2022-07-28 20:22:49.160260716 +0200
+@@ -13,6 +13,7 @@
  import json
  import shlex
  import subprocess
@@ -31,11 +29,11 @@
  import time
  import unittest
  
-@@ -53,7 +54,7 @@ class TestGlances(unittest.TestCase):
+@@ -43,7 +44,7 @@
          global pid
  
          print('INFO: [TEST_000] Start the Glances Web Server')
--        cmdline = "python -m glances -s -p %s" % SERVER_PORT
+-        cmdline = "python -m glances -B localhost -s -p %s" % SERVER_PORT
 +        cmdline = "%s -m glances -s -p %s" % (sys.executable, SERVER_PORT)
          print("Run the Glances Server on port %s" % SERVER_PORT)
          args = shlex.split(cmdline)

++++++ v3.2.5.tar.gz -> v3.2.7.tar.gz ++++++
/work/SRC/openSUSE:Factory/python-Glances/v3.2.5.tar.gz 
/work/SRC/openSUSE:Factory/.python-Glances.new.1533/v3.2.7.tar.gz differ: char 
30, line 1

Reply via email to