Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package proteus for openSUSE:Factory checked in at 2021-12-06 23:59:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/proteus (Old) and /work/SRC/openSUSE:Factory/.proteus.new.31177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "proteus" Mon Dec 6 23:59:42 2021 rev:19 rq:936102 version:5.0.10 Changes: -------- --- /work/SRC/openSUSE:Factory/proteus/proteus.changes 2021-07-02 13:29:04.940008629 +0200 +++ /work/SRC/openSUSE:Factory/.proteus.new.31177/proteus.changes 2021-12-07 00:00:54.188241669 +0100 @@ -1,0 +2,5 @@ +Mon Dec 6 17:50:27 UTC 2021 - Axel Braun <[email protected]> + +- Version 5.0.10 - Bugfix Release + +------------------------------------------------------------------- Old: ---- proteus-5.0.9.tar.gz proteus-5.0.9.tar.gz.asc New: ---- proteus-5.0.10.tar.gz proteus-5.0.10.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ proteus.spec ++++++ --- /var/tmp/diff_new_pack.WWDvDJ/_old 2021-12-07 00:00:54.984238854 +0100 +++ /var/tmp/diff_new_pack.WWDvDJ/_new 2021-12-07 00:00:54.988238840 +0100 @@ -19,7 +19,7 @@ %define majorver 5.0 Name: proteus -Version: %{majorver}.9 +Version: %{majorver}.10 Release: 0 Summary: A library to access Tryton's modules like a client License: GPL-3.0-or-later @@ -59,6 +59,6 @@ %defattr(-,root,root) %doc README %license LICENSE -%{python_sitelib}/* +%{python3_sitelib}/* %changelog ++++++ proteus-5.0.9.tar.gz -> proteus-5.0.10.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/proteus-5.0.9/.hgtags new/proteus-5.0.10/.hgtags --- old/proteus-5.0.9/.hgtags 2021-07-01 21:42:21.000000000 +0200 +++ new/proteus-5.0.10/.hgtags 2021-10-02 00:25:32.000000000 +0200 @@ -24,3 +24,4 @@ 12da615377eb694e54bfbd0c12aa36779bb33b27 5.0.7 df21f1e8edd84079d0619ef84b2f663e5a1c87e4 5.0.8 a49aa4240d49a817c4d98bdc146a31f23722016d 5.0.9 +de793cd5456707bf07e76af2e04aeeb6c733460a 5.0.10 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/proteus-5.0.9/CHANGELOG new/proteus-5.0.10/CHANGELOG --- old/proteus-5.0.9/CHANGELOG 2021-07-01 21:42:20.000000000 +0200 +++ new/proteus-5.0.10/CHANGELOG 2021-10-02 00:25:31.000000000 +0200 @@ -1,3 +1,6 @@ +Version 5.0.10 - 2021-10-01 +* Bug fixes (see mercurial logs for details) + Version 5.0.9 - 2021-07-01 * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/proteus-5.0.9/PKG-INFO new/proteus-5.0.10/PKG-INFO --- old/proteus-5.0.9/PKG-INFO 2021-07-01 21:42:22.141346200 +0200 +++ new/proteus-5.0.10/PKG-INFO 2021-10-02 00:25:33.256443700 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: proteus -Version: 5.0.9 +Version: 5.0.10 Summary: Library to access Tryton server as a client Home-page: http://www.tryton.org/ Author: Tryton diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/proteus-5.0.9/proteus/__init__.py new/proteus-5.0.10/proteus/__init__.py --- old/proteus-5.0.9/proteus/__init__.py 2021-06-23 22:57:00.000000000 +0200 +++ new/proteus-5.0.10/proteus/__init__.py 2021-07-01 21:42:28.000000000 +0200 @@ -10,7 +10,7 @@ import proteus.config -__version__ = "5.0.9" +__version__ = "5.0.10" __all__ = ['Model', 'Wizard', 'Report'] _MODELS = threading.local() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/proteus-5.0.9/proteus/config.py new/proteus-5.0.10/proteus/config.py --- old/proteus-5.0.9/proteus/config.py 2019-10-23 13:12:22.000000000 +0200 +++ new/proteus-5.0.10/proteus/config.py 2021-09-27 23:49:25.000000000 +0200 @@ -53,13 +53,23 @@ } self.dump_struct(value, write) + +def dump_long(self, value, write): + try: + self.dump_long(value, write) + except OverflowError: + write('<value><biginteger>') + write(str(int(value))) + write('</biginteger></value>\n') + + xmlrpc.client.Marshaller.dispatch[Decimal] = dump_decimal xmlrpc.client.Marshaller.dispatch[datetime.date] = dump_date xmlrpc.client.Marshaller.dispatch[datetime.time] = dump_time xmlrpc.client.Marshaller.dispatch[datetime.timedelta] = dump_timedelta if bytes != str: xmlrpc.client.Marshaller.dispatch[bytes] = dump_bytes -xmlrpc.client.Marshaller.dispatch[bytearray] = dump_bytes +xmlrpc.client.Marshaller.dispatch[int] = dump_long def dump_struct(self, value, write, escape=xmlrpc.client.escape): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/proteus-5.0.9/proteus.egg-info/PKG-INFO new/proteus-5.0.10/proteus.egg-info/PKG-INFO --- old/proteus-5.0.9/proteus.egg-info/PKG-INFO 2021-07-01 21:42:21.000000000 +0200 +++ new/proteus-5.0.10/proteus.egg-info/PKG-INFO 2021-10-02 00:25:32.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: proteus -Version: 5.0.9 +Version: 5.0.10 Summary: Library to access Tryton server as a client Home-page: http://www.tryton.org/ Author: Tryton
