Hello community,

here is the log from the commit of package proteus for openSUSE:Factory checked 
in at 2016-11-08 18:28:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/proteus (Old)
 and      /work/SRC/openSUSE:Factory/.proteus.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "proteus"

Changes:
--------
--- /work/SRC/openSUSE:Factory/proteus/proteus.changes  2016-09-23 
11:32:29.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.proteus.new/proteus.changes     2016-11-08 
18:28:07.000000000 +0100
@@ -1,0 +2,5 @@
+Sun Nov  6 19:25:44 UTC 2016 - [email protected]
+
+- version 3.8.5 
+
+-------------------------------------------------------------------

Old:
----
  proteus-3.8.4.tar.gz

New:
----
  proteus-3.8.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ proteus.spec ++++++
--- /var/tmp/diff_new_pack.tlw6Yr/_old  2016-11-08 18:28:08.000000000 +0100
+++ /var/tmp/diff_new_pack.tlw6Yr/_new  2016-11-08 18:28:08.000000000 +0100
@@ -14,34 +14,35 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 %define majorver 3.8
-Version:        %{majorver}.4
+Version:        %{majorver}.5
+Release:        0
 
 Name:           proteus
 # List of additional build dependencies
 BuildRequires:  fdupes
 BuildRequires:  python-devel 
-BuildRequires: python-psycopg2 
 BuildRequires: python-lxml 
+BuildRequires:  python-psycopg2
 BuildRequires: python-pydot 
 BuildRequires: python-setuptools
 
-Release:        0
-License:        GPL-3.0+
 Url:            http://www.tryton.org/
 Source0:        
http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz
-Group:          Productivity/Office/Management
 Summary:        A library to access Tryton's modules like a client
+License:        GPL-3.0+
+Group:          Productivity/Office/Management
 
 BuildArch:      noarch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Requires:              trytond
-Requires:              python-dateutil 
 Requires:              python-cdecimal
+Requires:       python-dateutil
 Requires:              python-simplejson
-
+Requires:       trytond
 
 %description
 Proteus allows you to access Tryton's modules like a client. Useful for 
automation, data load etc.

++++++ proteus-3.8.4.tar.gz -> proteus-3.8.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/proteus-3.8.4/CHANGELOG new/proteus-3.8.5/CHANGELOG
--- old/proteus-3.8.4/CHANGELOG 2016-09-03 12:12:23.000000000 +0200
+++ new/proteus-3.8.5/CHANGELOG 2016-11-06 17:51:55.000000000 +0100
@@ -1,3 +1,6 @@
+Version 3.8.5 - 2016-11-06
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.4 - 2016-09-03
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/proteus-3.8.4/PKG-INFO new/proteus-3.8.5/PKG-INFO
--- old/proteus-3.8.4/PKG-INFO  2016-09-03 12:12:36.000000000 +0200
+++ new/proteus-3.8.5/PKG-INFO  2016-11-06 17:52:06.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.8.4
+Version: 3.8.5
 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-3.8.4/proteus/__init__.py 
new/proteus-3.8.5/proteus/__init__.py
--- old/proteus-3.8.4/proteus/__init__.py       2016-09-03 12:12:02.000000000 
+0200
+++ new/proteus-3.8.5/proteus/__init__.py       2016-09-03 12:12:53.000000000 
+0200
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "3.8.4"
+__version__ = "3.8.5"
 __all__ = ['Model', 'Wizard', 'Report']
 import sys
 try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/proteus-3.8.4/proteus/config.py 
new/proteus-3.8.5/proteus/config.py
--- old/proteus-3.8.4/proteus/config.py 2016-04-27 22:50:45.000000000 +0200
+++ new/proteus-3.8.5/proteus/config.py 2016-11-06 17:51:42.000000000 +0100
@@ -91,7 +91,7 @@
     dct = {}
     items = self._stack[mark:]
     for i in range(0, len(items), 2):
-        dct[xmlrpclib._stringify(items[i])] = items[i + 1]
+        dct[items[i]] = items[i + 1]
     dct = XMLRPCDecoder()(dct)
     self._stack[mark:] = [dct]
     self._value = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/proteus-3.8.4/proteus.egg-info/PKG-INFO 
new/proteus-3.8.5/proteus.egg-info/PKG-INFO
--- old/proteus-3.8.4/proteus.egg-info/PKG-INFO 2016-09-03 12:12:35.000000000 
+0200
+++ new/proteus-3.8.5/proteus.egg-info/PKG-INFO 2016-11-06 17:52:05.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.8.4
+Version: 3.8.5
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to