Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-PyBindGen for openSUSE:Factory checked in at 2022-09-03 23:19:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-PyBindGen (Old) and /work/SRC/openSUSE:Factory/.python-PyBindGen.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PyBindGen" Sat Sep 3 23:19:27 2022 rev:4 rq:1001044 version:0.22.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-PyBindGen/python-PyBindGen.changes 2022-03-04 00:19:23.264307327 +0100 +++ /work/SRC/openSUSE:Factory/.python-PyBindGen.new.2083/python-PyBindGen.changes 2022-09-03 23:19:38.847905304 +0200 @@ -1,0 +2,6 @@ +Thu Sep 1 16:01:08 UTC 2022 - Stefan Br??ns <stefan.bru...@rwth-aachen.de> + +- Update to 0.22.1 + * Fix collections import (needed for Python 3.10) + +------------------------------------------------------------------- Old: ---- PyBindGen-0.22.0.tar.gz New: ---- PyBindGen-0.22.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-PyBindGen.spec ++++++ --- /var/tmp/diff_new_pack.49nmS8/_old 2022-09-03 23:19:39.339906598 +0200 +++ /var/tmp/diff_new_pack.49nmS8/_new 2022-09-03 23:19:39.347906619 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-PyBindGen -Version: 0.22.0 +Version: 0.22.1 Release: 0 Summary: Python Bindings Generator License: LGPL-2.1-only ++++++ PyBindGen-0.22.0.tar.gz -> PyBindGen-0.22.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyBindGen-0.22.0/PKG-INFO new/PyBindGen-0.22.1/PKG-INFO --- old/PyBindGen-0.22.0/PKG-INFO 2021-05-31 13:28:58.513759900 +0200 +++ new/PyBindGen-0.22.1/PKG-INFO 2022-03-30 11:59:18.683960200 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: PyBindGen -Version: 0.22.0 +Version: 0.22.1 Summary: Python Bindings Generator Home-page: https://github.com/gjcarneiro/pybindgen Author: Gustavo Carneiro diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyBindGen-0.22.0/PyBindGen.egg-info/PKG-INFO new/PyBindGen-0.22.1/PyBindGen.egg-info/PKG-INFO --- old/PyBindGen-0.22.0/PyBindGen.egg-info/PKG-INFO 2021-05-31 13:28:58.000000000 +0200 +++ new/PyBindGen-0.22.1/PyBindGen.egg-info/PKG-INFO 2022-03-30 11:59:18.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: PyBindGen -Version: 0.22.0 +Version: 0.22.1 Summary: Python Bindings Generator Home-page: https://github.com/gjcarneiro/pybindgen Author: Gustavo Carneiro diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyBindGen-0.22.0/pybindgen/cppclass.py new/PyBindGen-0.22.1/pybindgen/cppclass.py --- old/PyBindGen-0.22.0/pybindgen/cppclass.py 2020-10-04 17:02:21.000000000 +0200 +++ new/PyBindGen-0.22.1/pybindgen/cppclass.py 2022-03-30 11:58:19.000000000 +0200 @@ -39,7 +39,8 @@ try: collectionsCallable = collections.Callable except AttributeError: - collectionsCallable = collections + import collections.abc + collectionsCallable = collections.abc.Callable try: set diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyBindGen-0.22.0/pybindgen/version.py new/PyBindGen-0.22.1/pybindgen/version.py --- old/PyBindGen-0.22.0/pybindgen/version.py 2021-05-31 13:28:58.000000000 +0200 +++ new/PyBindGen-0.22.1/pybindgen/version.py 2022-03-30 11:59:18.000000000 +0200 @@ -1,4 +1,5 @@ # coding: utf-8 # file generated by setuptools_scm # don't change, don't track in version control -version = '0.22.0' +version = '0.22.1' +version_tuple = (0, 22, 1)