Hello community, here is the log from the commit of package trytond for openSUSE:Factory checked in at 2019-08-28 18:36:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond (Old) and /work/SRC/openSUSE:Factory/.trytond.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond" Wed Aug 28 18:36:18 2019 rev:34 rq:726597 version:4.6.19 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond/trytond.changes 2019-08-13 13:17:05.585480315 +0200 +++ /work/SRC/openSUSE:Factory/.trytond.new.7948/trytond.changes 2019-08-28 18:36:21.997274477 +0200 @@ -1,0 +2,5 @@ +Tue Aug 20 20:33:45 UTC 2019 - Axel Braun <[email protected]> + +- Version 4.6.19 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond-4.6.18.tar.gz New: ---- trytond-4.6.19.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond.spec ++++++ --- /var/tmp/diff_new_pack.kXRWri/_old 2019-08-28 18:36:24.417274056 +0200 +++ /var/tmp/diff_new_pack.kXRWri/_new 2019-08-28 18:36:24.417274056 +0200 @@ -20,7 +20,7 @@ %define majorver 4.6 %define base_name tryton Name: trytond -Version: %{majorver}.18 +Version: %{majorver}.19 Release: 0 Summary: An Enterprise Resource Planning (ERP) system ++++++ trytond-4.6.18.tar.gz -> trytond-4.6.19.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/.hgtags new/trytond-4.6.19/.hgtags --- old/trytond-4.6.18/.hgtags 2019-08-01 23:00:15.000000000 +0200 +++ new/trytond-4.6.19/.hgtags 2019-08-17 11:54:43.000000000 +0200 @@ -35,3 +35,4 @@ 22cde484eaa0c70946b12a272dbe1f69a1ee91f1 4.6.16 b05891693d5db22f2e585246559825f4b047f62c 4.6.17 2fab4255222aaa45586f14ecc9a91c7cba633a69 4.6.18 +d93c88d939d937c37beced393d7d9628529232eb 4.6.19 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/CHANGELOG new/trytond-4.6.19/CHANGELOG --- old/trytond-4.6.18/CHANGELOG 2019-08-01 23:00:14.000000000 +0200 +++ new/trytond-4.6.19/CHANGELOG 2019-08-17 11:54:43.000000000 +0200 @@ -1,3 +1,6 @@ +Version 4.6.19 - 2019-08-17 +* Bug fixes (see mercurial logs for details) + Version 4.6.18 - 2019-08-01 * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/PKG-INFO new/trytond-4.6.19/PKG-INFO --- old/trytond-4.6.18/PKG-INFO 2019-08-01 23:00:16.000000000 +0200 +++ new/trytond-4.6.19/PKG-INFO 2019-08-17 11:54:44.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond -Version: 4.6.18 +Version: 4.6.19 Summary: Tryton server Home-page: http://www.tryton.org/ Author: Tryton diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/setup.py new/trytond-4.6.19/setup.py --- old/trytond-4.6.18/setup.py 2018-08-20 22:55:19.000000000 +0200 +++ new/trytond-4.6.19/setup.py 2019-08-11 19:37:37.000000000 +0200 @@ -93,7 +93,8 @@ platforms='any', license='GPL-3', install_requires=[ - 'lxml >= 2.0', + 'lxml >= 2.0; python_version != "3.4"', + 'lxml >=2.0, < 4.4; python_version == "3.4"', 'relatorio[fodt] >= 0.7.0', 'Genshi', 'python-dateutil', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/trytond/__init__.py new/trytond-4.6.19/trytond/__init__.py --- old/trytond-4.6.18/trytond/__init__.py 2019-07-01 21:28:19.000000000 +0200 +++ new/trytond-4.6.19/trytond/__init__.py 2019-08-01 23:00:54.000000000 +0200 @@ -5,7 +5,7 @@ import warnings from email import charset -__version__ = "4.6.18" +__version__ = "4.6.19" os.environ['TZ'] = 'UTC' if hasattr(time, 'tzset'): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/trytond/tests/test_tryton.py new/trytond-4.6.19/trytond/tests/test_tryton.py --- old/trytond-4.6.18/trytond/tests/test_tryton.py 2018-11-25 21:57:50.000000000 +0100 +++ new/trytond-4.6.19/trytond/tests/test_tryton.py 2019-08-11 22:33:12.000000000 +0200 @@ -159,6 +159,7 @@ return not subprocess.call(cmd, env=env) except OSError: cache_name, _ = os.path.splitext(os.path.basename(cache_file)) + cache_name = backend.get('TableHandler').convert_name(cache_name) with Transaction().start( None, 0, close=True, autocommit=True, _nocache=True) \ as transaction: @@ -177,6 +178,7 @@ return not subprocess.call(cmd, env=env) except OSError: cache_name, _ = os.path.splitext(os.path.basename(cache_file)) + cache_name = backend.get('TableHandler').convert_name(cache_name) # Ensure any connection is left open backend.get('Database')(DB_NAME).close() with Transaction().start( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/trytond.egg-info/PKG-INFO new/trytond-4.6.19/trytond.egg-info/PKG-INFO --- old/trytond-4.6.18/trytond.egg-info/PKG-INFO 2019-08-01 23:00:15.000000000 +0200 +++ new/trytond-4.6.19/trytond.egg-info/PKG-INFO 2019-08-17 11:54:44.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond -Version: 4.6.18 +Version: 4.6.19 Summary: Tryton server Home-page: http://www.tryton.org/ Author: Tryton diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond-4.6.18/trytond.egg-info/requires.txt new/trytond-4.6.19/trytond.egg-info/requires.txt --- old/trytond-4.6.18/trytond.egg-info/requires.txt 2019-08-01 23:00:15.000000000 +0200 +++ new/trytond-4.6.19/trytond.egg-info/requires.txt 2019-08-17 11:54:44.000000000 +0200 @@ -1,4 +1,3 @@ -lxml>=2.0 relatorio[fodt]>=0.7.0 Genshi python-dateutil @@ -7,6 +6,12 @@ werkzeug wrapt +[:python_version != "3.4"] +lxml>=2.0 + +[:python_version == "3.4"] +lxml<4.4,>=2.0 + [BCrypt] bcrypt
