commit trytond for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package trytond for openSUSE:Factory checked in at 2023-11-20 21:19:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond (Old) and /work/SRC/openSUSE:Factory/.trytond.new.2521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "trytond" Mon Nov 20 21:19:15 2023 rev:89 rq:1127523 version:6.0.38 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond/trytond.changes 2023-11-13 22:24:57.748541612 +0100 +++ /work/SRC/openSUSE:Factory/.trytond.new.2521/trytond.changes 2023-11-20 21:19:50.343445183 +0100 @@ -1,0 +2,5 @@ +Sat Nov 18 09:51:44 UTC 2023 - Axel Braun <axel.braun@gmx.de> + +- Version 6.0.38 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond-6.0.37.tar.gz trytond-6.0.37.tar.gz.asc New: ---- trytond-6.0.38.tar.gz trytond-6.0.38.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond.spec ++++++ --- /var/tmp/diff_new_pack.q8R4R4/_old 2023-11-20 21:19:52.415521655 +0100 +++ /var/tmp/diff_new_pack.q8R4R4/_new 2023-11-20 21:19:52.415521655 +0100 @@ -20,7 +20,7 @@ %define majorver 6.0 %define base_name tryton Name: trytond -Version: %{majorver}.37 +Version: %{majorver}.38 Release: 0 Summary: An Enterprise Resource Planning (ERP) system License: GPL-3.0-or-later ++++++ trytond-6.0.37.tar.gz -> trytond-6.0.38.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-6.0.37/CHANGELOG new/trytond-6.0.38/CHANGELOG --- old/trytond-6.0.37/CHANGELOG 2023-11-03 17:46:35.000000000 +0100 +++ new/trytond-6.0.38/CHANGELOG 2023-11-17 19:32:53.000000000 +0100 @@ -1,4 +1,9 @@ +Version 6.0.38 - 2023-11-17 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.37 - 2023-11-03 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-6.0.37/PKG-INFO new/trytond-6.0.38/PKG-INFO --- old/trytond-6.0.37/PKG-INFO 2023-11-03 17:46:38.357915000 +0100 +++ new/trytond-6.0.38/PKG-INFO 2023-11-17 19:32:56.021417000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond -Version: 6.0.37 +Version: 6.0.38 Summary: Tryton server Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-6.0.37/trytond/__init__.py new/trytond-6.0.38/trytond/__init__.py --- old/trytond-6.0.37/trytond/__init__.py 2023-10-04 23:56:45.000000000 +0200 +++ new/trytond-6.0.38/trytond/__init__.py 2023-11-03 17:46:52.000000000 +0100 @@ -7,7 +7,7 @@ from lxml import etree, objectify -__version__ = "6.0.37" +__version__ = "6.0.38" os.environ['TZ'] = 'UTC' if hasattr(time, 'tzset'): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-6.0.37/trytond/filestore.py new/trytond-6.0.38/trytond/filestore.py --- old/trytond-6.0.37/trytond/filestore.py 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond-6.0.38/trytond/filestore.py 2023-11-15 18:04:31.000000000 +0100 @@ -31,8 +31,7 @@ id = self._id(data) filename = self._filename(id, prefix) dirname = os.path.dirname(filename) - if not os.path.exists(dirname): - os.makedirs(dirname, 0o770) + os.makedirs(dirname, mode=0o770, exist_ok=True) collision = 0 while True: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-6.0.37/trytond/tests/test_tryton.py new/trytond-6.0.38/trytond/tests/test_tryton.py --- old/trytond-6.0.37/trytond/tests/test_tryton.py 2023-07-10 23:32:40.000000000 +0200 +++ new/trytond-6.0.38/trytond/tests/test_tryton.py 2023-11-15 18:05:53.000000000 +0100 @@ -102,8 +102,7 @@ def backup_db_cache(name): if DB_CACHE: - if not os.path.exists(DB_CACHE): - os.makedirs(DB_CACHE) + os.makedirs(DB_CACHE, exist_ok=True) cache_file = _db_cache_file(DB_CACHE, name) if not os.path.exists(cache_file): if backend.name == 'sqlite': diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-6.0.37/trytond.egg-info/PKG-INFO new/trytond-6.0.38/trytond.egg-info/PKG-INFO --- old/trytond-6.0.37/trytond.egg-info/PKG-INFO 2023-11-03 17:46:37.000000000 +0100 +++ new/trytond-6.0.38/trytond.egg-info/PKG-INFO 2023-11-17 19:32:55.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond -Version: 6.0.37 +Version: 6.0.38 Summary: Tryton server Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/
participants (1)
-
Source-Sync