commit tryton for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tryton for openSUSE:Factory checked in at 2023-11-20 21:19:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tryton (Old) and /work/SRC/openSUSE:Factory/.tryton.new.2521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "tryton" Mon Nov 20 21:19:16 2023 rev:19 rq:1127524 version:6.0.31 Changes: -------- --- /work/SRC/openSUSE:Factory/tryton/tryton.changes 2023-11-13 22:24:56.652501257 +0100 +++ /work/SRC/openSUSE:Factory/.tryton.new.2521/tryton.changes 2023-11-20 21:19:52.995543061 +0100 @@ -1,0 +2,5 @@ +Sat Nov 18 09:52:01 UTC 2023 - Axel Braun <axel.braun@gmx.de> + +- Version 6.0.31 - Bugfix Release + +------------------------------------------------------------------- Old: ---- tryton-6.0.30.tar.gz tryton-6.0.30.tar.gz.asc New: ---- tryton-6.0.31.tar.gz tryton-6.0.31.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tryton.spec ++++++ --- /var/tmp/diff_new_pack.bhT9ph/_old 2023-11-20 21:19:53.695568897 +0100 +++ /var/tmp/diff_new_pack.bhT9ph/_new 2023-11-20 21:19:53.695568897 +0100 @@ -19,7 +19,7 @@ %define majorver 6.0 Name: tryton -Version: %{majorver}.30 +Version: %{majorver}.31 Release: 0 Summary: The client of the Tryton application platform License: GPL-3.0-or-later ++++++ tryton-6.0.30.tar.gz -> tryton-6.0.31.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.30/CHANGELOG new/tryton-6.0.31/CHANGELOG --- old/tryton-6.0.30/CHANGELOG 2023-11-03 17:51:06.000000000 +0100 +++ new/tryton-6.0.31/CHANGELOG 2023-11-17 19:36:49.000000000 +0100 @@ -1,4 +1,9 @@ +Version 6.0.31 - 2023-11-17 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.30 - 2023-11-03 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.30/PKG-INFO new/tryton-6.0.31/PKG-INFO --- old/tryton-6.0.30/PKG-INFO 2023-11-03 17:51:09.245874200 +0100 +++ new/tryton-6.0.31/PKG-INFO 2023-11-17 19:36:51.942645500 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tryton -Version: 6.0.30 +Version: 6.0.31 Summary: Tryton desktop client 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/tryton-6.0.30/setup-freeze.py new/tryton-6.0.31/setup-freeze.py --- old/tryton-6.0.30/setup-freeze.py 2023-05-17 23:03:30.000000000 +0200 +++ new/tryton-6.0.31/setup-freeze.py 2023-11-15 18:09:59.000000000 +0100 @@ -119,7 +119,7 @@ (ssl_paths.openssl_capath, os.path.join('etc', 'ssl', 'certs'))) version = Popen( - 'python setup.py --version', stdout=PIPE, shell=True, encoding='utf-8' + './setup.py --version', stdout=PIPE, shell=True, encoding='utf-8' ).stdout.read() version = version.strip() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.30/tryton/__init__.py new/tryton-6.0.31/tryton/__init__.py --- old/tryton-6.0.30/tryton/__init__.py 2023-10-05 00:01:45.000000000 +0200 +++ new/tryton-6.0.31/tryton/__init__.py 2023-11-03 17:51:21.000000000 +0100 @@ -1,6 +1,6 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. -__version__ = "6.0.30" +__version__ = "6.0.31" import gi import locale diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.30/tryton/common/number_entry.py new/tryton-6.0.31/tryton/common/number_entry.py --- old/tryton-6.0.30/tryton/common/number_entry.py 2023-11-01 18:07:14.000000000 +0100 +++ new/tryton-6.0.31/tryton/common/number_entry.py 2023-11-14 00:25:48.000000000 +0100 @@ -53,7 +53,7 @@ value = None if text not in ['-', self.__decimal_point]: try: - value = Decimal(locale.atof(text)) + value = Decimal(str(locale.atof(text))) except (ValueError, InvalidOperation): return position if (value and self.__digits is not None diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.30/tryton/config.py new/tryton-6.0.31/tryton/config.py --- old/tryton-6.0.30/tryton/config.py 2023-05-17 23:03:30.000000000 +0200 +++ new/tryton-6.0.31/tryton/config.py 2023-11-15 18:04:39.000000000 +0100 @@ -26,8 +26,7 @@ __version__.rsplit('.', 1)[0]) -if not os.path.isdir(get_config_dir()): - os.makedirs(get_config_dir(), 0o700) +os.makedirs(get_config_dir(), mode=0o700, exist_ok=True) class ConfigManager(object): Binary files old/tryton-6.0.30/tryton/data/locale/bg/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/bg/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/ca/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/ca/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/cs/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/cs/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/de/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/de/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/es/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/es/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/et/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/et/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/fa/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/fa/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/fi/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/fi/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/fr/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/fr/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/hu/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/hu/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/id/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/id/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/it/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/it/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/lo/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/lo/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/lt/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/lt/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/nl/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/nl/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/pl/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/pl/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/pt/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/pt/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/ro/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/ro/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/ru/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/ru/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/sl/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/sl/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/tr/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/tr/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.30/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo and new/tryton-6.0.31/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.30/tryton.egg-info/PKG-INFO new/tryton-6.0.31/tryton.egg-info/PKG-INFO --- old/tryton-6.0.30/tryton.egg-info/PKG-INFO 2023-11-03 17:51:08.000000000 +0100 +++ new/tryton-6.0.31/tryton.egg-info/PKG-INFO 2023-11-17 19:36:51.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tryton -Version: 6.0.30 +Version: 6.0.31 Summary: Tryton desktop client Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/
participants (1)
-
Source-Sync