Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-PyQt6 for openSUSE:Factory 
checked in at 2023-02-09 16:41:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-PyQt6 (Old)
 and      /work/SRC/openSUSE:Factory/.python-PyQt6.new.4462 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-PyQt6"

Thu Feb  9 16:41:25 2023 rev:13 rq:1063979 version:6.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-PyQt6/python-PyQt6.changes        
2023-01-31 16:17:50.988760287 +0100
+++ /work/SRC/openSUSE:Factory/.python-PyQt6.new.4462/python-PyQt6.changes      
2023-02-09 16:41:26.328569234 +0100
@@ -1,0 +2,6 @@
+Thu Feb  9 10:16:13 UTC 2023 - Ben Greiner <c...@bnavigator.de>
+
+- Update to v6.4.2
+  * Fixed a regression in pylupdate
+
+-------------------------------------------------------------------

Old:
----
  PyQt6-6.4.1.tar.gz

New:
----
  PyQt6-6.4.2.tar.gz

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

Other differences:
------------------
++++++ python-PyQt6.spec ++++++
--- /var/tmp/diff_new_pack.SR0JtF/_old  2023-02-09 16:41:26.772571527 +0100
+++ /var/tmp/diff_new_pack.SR0JtF/_new  2023-02-09 16:41:26.776571548 +0100
@@ -20,7 +20,7 @@
 %define mname PyQt6
 %define pyqt_build_for_qt6 1
 Name:           python-%{mname}
-Version:        6.4.1
+Version:        6.4.2
 Release:        0
 Summary:        Python bindings for Qt 6
 License:        GPL-3.0-only OR SUSE-GPL-2.0-with-FLOSS-exception OR NonFree

++++++ PyQt6-6.4.1.tar.gz -> PyQt6-6.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyQt6-6.4.1/ChangeLog new/PyQt6-6.4.2/ChangeLog
--- old/PyQt6-6.4.1/ChangeLog   2023-01-27 13:28:35.196918500 +0100
+++ new/PyQt6-6.4.2/ChangeLog   2023-02-04 12:48:42.520630000 +0100
@@ -1,5 +1,15 @@
+2023-01-28  Phil Thompson  <p...@riverbankcomputing.com>
+
+       * NEWS, extras/lupdate/lupdate.py:
+       Fixed a regression in pylupdate.
+       [0cf0f5deb862] [6.4.2] <6.4-maint>
+
 2023-01-27  Phil Thompson  <p...@riverbankcomputing.com>
 
+       * .hgtags:
+       Added tag 6.4.1 for changeset f633ac74eeef
+       [ffbaf766f709] <6.4-maint>
+
        * NEWS, qpy/QtCore/qpycore_qt_conf.cpp:
        Fixed the embedded qt.conf on Windows where there are non-ASCII
        characters in the pathname of the installation directory.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyQt6-6.4.1/NEWS new/PyQt6-6.4.2/NEWS
--- old/PyQt6-6.4.1/NEWS        2023-01-27 13:28:35.198567200 +0100
+++ new/PyQt6-6.4.2/NEWS        2023-02-04 12:48:42.522349600 +0100
@@ -1,3 +1,6 @@
+v6.4.2 28th January 2023
+  - Bug fixes.
+
 v6.4.1 27th January 2023
   - Added allocationLimit() and setAllocationLimit() to QImageReader.
   - Added toHBITMAP(), fromHBITMAP(), toHICON() and fromHICON() to QImage on
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyQt6-6.4.1/PKG-INFO new/PyQt6-6.4.2/PKG-INFO
--- old/PyQt6-6.4.1/PKG-INFO    2023-01-27 13:28:44.305747000 +0100
+++ new/PyQt6-6.4.2/PKG-INFO    2023-02-04 12:48:54.435013300 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: PyQt6
-Version: 6.4.1
+Version: 6.4.2
 Requires-Python: >=3.6.1
 Summary: Python bindings for the Qt cross platform application toolkit
 Home-Page: https://www.riverbankcomputing.com/software/pyqt/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyQt6-6.4.1/lupdate/lupdate.py 
new/PyQt6-6.4.2/lupdate/lupdate.py
--- old/PyQt6-6.4.1/lupdate/lupdate.py  2023-01-27 13:28:35.404899400 +0100
+++ new/PyQt6-6.4.2/lupdate/lupdate.py  2023-02-04 12:48:42.722119000 +0100
@@ -45,8 +45,8 @@
     for source in sources:
         if os.path.isdir(source):
             for dirpath, dirnames, filenames in os.walk(source):
-                _remove_excludes(dirnames)
-                _remove_excludes(filenames)
+                _remove_excludes(dirnames, excludes)
+                _remove_excludes(filenames, excludes)
 
                 for fn in filenames:
                     filename = os.path.join(dirpath, fn)
@@ -89,14 +89,10 @@
     """ Remove all implicitly and explicitly excluded names from a list. """
 
     for name in list(names):
-        if fn.startswith('.'):
+        if name.startswith('.'):
             names.remove(name)
         else:
             for exclude in excludes:
-                if fnmatch.fnmatch(fn, exclude):
+                if fnmatch.fnmatch(name, exclude):
                     names.remove(name)
-                    fn = None
                     break
-
-            if fn is None:
-                continue
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyQt6-6.4.1/pyproject.toml 
new/PyQt6-6.4.2/pyproject.toml
--- old/PyQt6-6.4.1/pyproject.toml      2023-01-27 13:28:35.447659500 +0100
+++ new/PyQt6-6.4.2/pyproject.toml      2023-02-04 12:48:42.766171200 +0100
@@ -6,7 +6,7 @@
 # Specify the PEP 566 metadata for the project.
 [tool.sip.metadata]
 name = "PyQt6"
-version = "6.4.1"
+version = "6.4.2"
 summary = "Python bindings for the Qt cross platform application toolkit"
 home-page = "https://www.riverbankcomputing.com/software/pyqt/";
 author = "Riverbank Computing Limited"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PyQt6-6.4.1/sip/QtCore/QtCoremod.sip 
new/PyQt6-6.4.2/sip/QtCore/QtCoremod.sip
--- old/PyQt6-6.4.1/sip/QtCore/QtCoremod.sip    2023-01-27 13:28:43.198745300 
+0100
+++ new/PyQt6-6.4.2/sip/QtCore/QtCoremod.sip    2023-02-04 12:48:50.579733000 
+0100
@@ -74,8 +74,8 @@
 const char *PYQT_VERSION_STR;
 
 %ModuleCode
-static int PYQT_VERSION = 0x060401;
-static const char *PYQT_VERSION_STR = "6.4.1";
+static int PYQT_VERSION = 0x060402;
+static const char *PYQT_VERSION_STR = "6.4.2";
 %End
 
 %Include qglobal.sip

Reply via email to