Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-libvirt-python for 
openSUSE:Factory checked in at 2025-06-10 08:56:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-libvirt-python (Old)
 and      /work/SRC/openSUSE:Factory/.python-libvirt-python.new.19631 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-libvirt-python"

Tue Jun 10 08:56:03 2025 rev:92 rq:1283753 version:11.4.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-libvirt-python/python-libvirt-python.changes  
    2025-05-07 19:15:10.747984507 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-libvirt-python.new.19631/python-libvirt-python.changes
   2025-06-10 08:56:09.608785297 +0200
@@ -1,0 +2,6 @@
+Fri Jun  6 22:43:10 UTC 2025 - James Fehlig <jfeh...@suse.com>
+
+- Update to 11.4.0
+  - Add all new APIs and constants in libvirt 11.4.0
+
+-------------------------------------------------------------------

Old:
----
  libvirt-python-11.3.0.tar.gz

New:
----
  libvirt-python-11.4.0.tar.gz

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

Other differences:
------------------
++++++ python-libvirt-python.spec ++++++
--- /var/tmp/diff_new_pack.5IqkmL/_old  2025-06-10 08:56:10.204809918 +0200
+++ /var/tmp/diff_new_pack.5IqkmL/_new  2025-06-10 08:56:10.204809918 +0200
@@ -24,7 +24,7 @@
 %{?sle15_python_module_pythons}
 Name:           python-libvirt-python
 URL:            https://libvirt.org/
-Version:        11.3.0
+Version:        11.4.0
 Release:        0
 Summary:        Library providing a virtualization API
 License:        LGPL-2.1-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.5IqkmL/_old  2025-06-10 08:56:10.240811405 +0200
+++ /var/tmp/diff_new_pack.5IqkmL/_new  2025-06-10 08:56:10.244811570 +0200
@@ -1,7 +1,7 @@
 <services>
   <service name="tar_scm" mode="manual">
     <param name="filename">libvirt-python</param>
-    <param name="revision">v11.3.0</param>
+    <param name="revision">v11.4.0</param>
     <param name="scm">git</param>
     <param name="submodules">disable</param>
     <param name="url">https://gitlab.com/libvirt/libvirt-python.git</param>

++++++ libvirt-python-11.3.0.tar.gz -> libvirt-python-11.4.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvirt-python-11.3.0/VERSION 
new/libvirt-python-11.4.0/VERSION
--- old/libvirt-python-11.3.0/VERSION   2025-04-01 12:04:39.000000000 +0200
+++ new/libvirt-python-11.4.0/VERSION   2025-05-27 13:57:59.000000000 +0200
@@ -1 +1 @@
-11.3.0
+11.4.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvirt-python-11.3.0/examples/topology.py 
new/libvirt-python-11.4.0/examples/topology.py
--- old/libvirt-python-11.3.0/examples/topology.py      2025-04-01 
12:04:39.000000000 +0200
+++ new/libvirt-python-11.4.0/examples/topology.py      2025-05-27 
13:57:59.000000000 +0200
@@ -26,23 +26,18 @@
 cells = host.getElementsByTagName('cells')[0]
 total_cpus = cells.getElementsByTagName('cpu').length
 
-socketIds = []
-siblingsIds = []
-
-socketIds = [
+socketIds = {
     proc.getAttribute('socket_id')
     for proc in cells.getElementsByTagName('cpu')
-    if proc.getAttribute('socket_id') not in socketIds
-]
+}
 
-siblingsIds = [
+siblingsIds = {
     proc.getAttribute('siblings')
     for proc in cells.getElementsByTagName('cpu')
-    if proc.getAttribute('siblings') not in siblingsIds
-]
+}
 
 print("Host topology")
 print("NUMA nodes:", cells.getAttribute('num'))
-print("   Sockets:", len(set(socketIds)))
-print("     Cores:", len(set(siblingsIds)))
+print("   Sockets:", len(socketIds))
+print("     Cores:", len(siblingsIds))
 print("   Threads:", total_cpus)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvirt-python-11.3.0/generator.py 
new/libvirt-python-11.4.0/generator.py
--- old/libvirt-python-11.3.0/generator.py      2025-04-01 12:04:39.000000000 
+0200
+++ new/libvirt-python-11.4.0/generator.py      2025-05-27 13:57:59.000000000 
+0200
@@ -1794,8 +1794,8 @@
     sys.exit(1)
 
 quiet = False
-if not os.path.exists("build"):
-    os.mkdir("build")
+if not os.path.exists(buildDir):
+    os.mkdir(buildDir)
 
 output = None
 if len(sys.argv) >= 4:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libvirt-python-11.3.0/setup.cfg 
new/libvirt-python-11.4.0/setup.cfg
--- old/libvirt-python-11.3.0/setup.cfg 2025-04-01 12:04:39.000000000 +0200
+++ new/libvirt-python-11.4.0/setup.cfg 2025-05-27 13:57:59.000000000 +0200
@@ -8,10 +8,10 @@
 maintainer = Libvirt Maintainers
 maintainer_email = libvir-l...@redhat.com
 license_files = COPYING
+license = LGPL-v2.0-or-later
 classifiers =
       Development Status :: 5 - Production/Stable
       Intended Audience :: Developers
-      License :: OSI Approved :: GNU Lesser General Public License v2 or later 
(LGPLv2+)
       Programming Language :: Python :: 3 :: Only
 
 [options]

Reply via email to