Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-osc-tiny for openSUSE:Factory checked in at 2023-12-12 19:31:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-osc-tiny (Old) and /work/SRC/openSUSE:Factory/.python-osc-tiny.new.25432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-osc-tiny" Tue Dec 12 19:31:58 2023 rev:30 rq:1132553 version:0.8.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-osc-tiny/python-osc-tiny.changes 2023-11-30 22:05:16.573981173 +0100 +++ /work/SRC/openSUSE:Factory/.python-osc-tiny.new.25432/python-osc-tiny.changes 2023-12-12 19:32:11.236366305 +0100 @@ -1,0 +2,6 @@ +Mon Dec 11 15:55:04 UTC 2023 - Andreas Hasenkopf <ahasenk...@suse.com> + +- Release 0.8.1 + * Support for new OSC config + +------------------------------------------------------------------- Old: ---- osc-tiny-0.8.0.tar.gz New: ---- osc-tiny-0.8.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-osc-tiny.spec ++++++ --- /var/tmp/diff_new_pack.LQ49uM/_old 2023-12-12 19:32:11.788386673 +0100 +++ /var/tmp/diff_new_pack.LQ49uM/_new 2023-12-12 19:32:11.792386820 +0100 @@ -18,7 +18,7 @@ %define skip_python2 1 Name: python-osc-tiny -Version: 0.8.0 +Version: 0.8.1 Release: 0 Summary: Client API for openSUSE BuildService License: MIT ++++++ osc-tiny-0.8.0.tar.gz -> osc-tiny-0.8.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc-tiny-0.8.0/PKG-INFO new/osc-tiny-0.8.1/PKG-INFO --- old/osc-tiny-0.8.0/PKG-INFO 2023-11-29 15:48:58.173556800 +0100 +++ new/osc-tiny-0.8.1/PKG-INFO 2023-12-11 16:50:12.841865500 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: osc-tiny -Version: 0.8.0 +Version: 0.8.1 Summary: Client API for openSUSE BuildService Home-page: https://github.com/SUSE/osc-tiny Author: Andreas Hasenkopf diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc-tiny-0.8.0/osc_tiny.egg-info/PKG-INFO new/osc-tiny-0.8.1/osc_tiny.egg-info/PKG-INFO --- old/osc-tiny-0.8.0/osc_tiny.egg-info/PKG-INFO 2023-11-29 15:48:58.000000000 +0100 +++ new/osc-tiny-0.8.1/osc_tiny.egg-info/PKG-INFO 2023-12-11 16:50:12.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: osc-tiny -Version: 0.8.0 +Version: 0.8.1 Summary: Client API for openSUSE BuildService Home-page: https://github.com/SUSE/osc-tiny Author: Andreas Hasenkopf diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc-tiny-0.8.0/osctiny/__init__.py new/osc-tiny-0.8.1/osctiny/__init__.py --- old/osc-tiny-0.8.0/osctiny/__init__.py 2023-11-29 15:48:50.000000000 +0100 +++ new/osc-tiny-0.8.1/osctiny/__init__.py 2023-12-11 16:50:05.000000000 +0100 @@ -6,4 +6,4 @@ __all__ = ['Osc', 'bs_requests', 'buildresults', 'comments', 'packages', 'projects', 'search', 'users'] -__version__ = "0.8.0" +__version__ = "0.8.1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc-tiny-0.8.0/osctiny/utils/conf.py new/osc-tiny-0.8.1/osctiny/utils/conf.py --- old/osc-tiny-0.8.0/osctiny/utils/conf.py 2023-11-29 15:48:50.000000000 +0100 +++ new/osc-tiny-0.8.1/osctiny/utils/conf.py 2023-12-11 16:50:05.000000000 +0100 @@ -199,7 +199,12 @@ .. versionadded:: 0.8.0 """ if _conf is not None: - path = _conf._identify_osccookiejar() # pylint: disable=protected-access + try: + # New OSC config + path = _conf.config.cookiejar + except AttributeError: + # Backward compatibility to old OSC config style + path = _conf._identify_osccookiejar() # pylint: disable=protected-access if os.path.isfile(path): return LWPCookieJar(filename=path) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/osc-tiny-0.8.0/setup.py new/osc-tiny-0.8.1/setup.py --- old/osc-tiny-0.8.0/setup.py 2023-11-29 15:48:50.000000000 +0100 +++ new/osc-tiny-0.8.1/setup.py 2023-12-11 16:50:05.000000000 +0100 @@ -26,7 +26,7 @@ setup( name='osc-tiny', - version='0.8.0', + version='0.8.1', description='Client API for openSUSE BuildService', long_description=long_description, long_description_content_type="text/markdown",