Hello community,

here is the log from the commit of package tryton for openSUSE:Factory checked 
in at 2017-12-14 11:00:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tryton (Old)
 and      /work/SRC/openSUSE:Factory/.tryton.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tryton"

Thu Dec 14 11:00:30 2017 rev:13 rq:556565 version:4.2.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/tryton/tryton.changes    2017-11-16 
14:03:16.952693613 +0100
+++ /work/SRC/openSUSE:Factory/.tryton.new/tryton.changes       2017-12-14 
11:01:41.635418739 +0100
@@ -1,0 +2,5 @@
+Tue Dec  5 20:20:08 UTC 2017 - [email protected]
+
+- Version 4.2.9 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  tryton-4.2.8.tar.gz

New:
----
  tryton-4.2.9.tar.gz

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

Other differences:
------------------
++++++ tryton.spec ++++++
--- /var/tmp/diff_new_pack.6HPmKo/_old  2017-12-14 11:01:42.223390355 +0100
+++ /var/tmp/diff_new_pack.6HPmKo/_new  2017-12-14 11:01:42.223390355 +0100
@@ -19,7 +19,7 @@
 
 %define majorver 4.2
 Name:           tryton
-Version:        %{majorver}.8
+Version:        %{majorver}.9
 Release:        0
 Summary:        The client of the Tryton application platform
 License:        GPL-3.0

++++++ tryton-4.2.8.tar.gz -> tryton-4.2.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/.hgtags new/tryton-4.2.9/.hgtags
--- old/tryton-4.2.8/.hgtags    2017-11-07 18:43:31.000000000 +0100
+++ new/tryton-4.2.9/.hgtags    2017-12-05 00:04:10.000000000 +0100
@@ -22,3 +22,4 @@
 1d5f229f55137720357d5840c140f4213fb0c9dc 4.2.6
 4b2685c0531fd4002c88c43c5232007780c5d3a7 4.2.7
 b4469b6b237a1422f00b4f7c5edf944ecdc88df2 4.2.8
+8c6b627e6b5b0ff4a41d22103146f6b12187823c 4.2.9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/CHANGELOG new/tryton-4.2.9/CHANGELOG
--- old/tryton-4.2.8/CHANGELOG  2017-11-07 18:43:30.000000000 +0100
+++ new/tryton-4.2.9/CHANGELOG  2017-12-05 00:04:10.000000000 +0100
@@ -1,3 +1,6 @@
+Version 4.2.9 - 2017-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.8 - 2017-11-07
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/PKG-INFO new/tryton-4.2.9/PKG-INFO
--- old/tryton-4.2.8/PKG-INFO   2017-11-07 18:43:32.000000000 +0100
+++ new/tryton-4.2.9/PKG-INFO   2017-12-05 00:04:11.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 4.2.8
+Version: 4.2.9
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/bin/tryton new/tryton-4.2.9/bin/tryton
--- old/tryton-4.2.8/bin/tryton 2017-10-03 21:26:32.000000000 +0200
+++ new/tryton-4.2.9/bin/tryton 2017-12-05 00:04:07.000000000 +0100
@@ -23,10 +23,19 @@
             etc, 'gtk-2.0', 'gdk-pixbuf.loaders')
     os.environ['GTK_IM_MODULE_FILE'] = os.path.join(
             etc, 'gtk-2.0', 'gtk.immodules')
-    os.environ.setdefault('SSL_CERT_FILE',
-        os.path.join(etc, 'ssl', 'cert.pem'))
-    os.environ.setdefault('SSL_CERT_DIR',
-        os.path.join(etc, 'ssl', 'certs'))
+    if sys.platform == 'win32':
+        # cx_freeze >= 5 put python modules under lib directory
+        sys.path.append(os.path.join(prefix, 'lib'))
+        os.environ.setdefault('SSL_CERT_FILE',
+            os.path.join(etc, 'ssl', 'cert.pem'))
+        os.environ.setdefault('SSL_CERT_DIR',
+            os.path.join(etc, 'ssl', 'certs'))
+
+    # On first launch the MacOSX app launcher may append an extra unique
+    # argument starting with -psn_. This must be filtered to not crash the
+    # option parser.
+    if sys.platform == 'darwin':
+        sys.argv = [a for a in sys.argv if not a.startswith('-psn_')]
 
 
 # Disable dbusmenu to show second menu in tabs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/darwin/gtk-2.0/gtk.immodules 
new/tryton-4.2.9/darwin/gtk-2.0/gtk.immodules
--- old/tryton-4.2.8/darwin/gtk-2.0/gtk.immodules       2017-05-03 
18:53:28.000000000 +0200
+++ new/tryton-4.2.9/darwin/gtk-2.0/gtk.immodules       2017-12-05 
00:04:07.000000000 +0100
@@ -2,7 +2,7 @@
 # Automatically generated file, do not edit
 # Created by gtk-query-immodules-2.0 from gtk+-2.24.30
 #
-# ModulesPath = 
/Users/ced/.gtk-2.0/2.10.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/.gtk-2.0/2.10.0/immodules:/Users/ced/.gtk-2.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/.gtk-2.0/immodules:@executable_path/lib/gtk-2.0/2.10.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/gtk/inst/lib/gtk-2.0/2.10.0/immodules:/Users/ced/gtk/inst/lib/gtk-2.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/gtk/inst/lib/gtk-2.0/immodules
+# ModulesPath = @executable_path/lib/gtk-2.0/immodules
 #
 "@executable_path/lib/gtk-2.0/2.10.0/immodules/im-am-et.so" 
 "am_et" "Amharic (EZ+)" "gtk20" "@executable_path/share/locale" "am" 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/make-darwin-installer.sh 
new/tryton-4.2.9/make-darwin-installer.sh
--- old/tryton-4.2.8/make-darwin-installer.sh   2017-05-03 18:53:28.000000000 
+0200
+++ new/tryton-4.2.9/make-darwin-installer.sh   2017-12-05 00:04:07.000000000 
+0100
@@ -1,5 +1,5 @@
 #!/bin/sh
-
+set -e
 version=`python setup.py --version`
 python setup-freeze.py bdist_mac
 rm -rf dist
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/make-win32-installer.sh 
new/tryton-4.2.9/make-win32-installer.sh
--- old/tryton-4.2.8/make-win32-installer.sh    2017-05-03 18:53:28.000000000 
+0200
+++ new/tryton-4.2.9/make-win32-installer.sh    2017-12-05 00:04:07.000000000 
+0100
@@ -1,5 +1,5 @@
 #!/bin/sh
-
+set -e
 version=`python setup.py --version`
 python setup-freeze.py install_exe -d dist
 makensis -DVERSION=${version} setup.nsi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/setup-freeze.py 
new/tryton-4.2.9/setup-freeze.py
--- old/tryton-4.2.8/setup-freeze.py    2017-10-03 21:26:32.000000000 +0200
+++ new/tryton-4.2.9/setup-freeze.py    2017-12-05 00:04:07.000000000 +0100
@@ -1,5 +1,6 @@
 import os
 import sys
+import user
 from subprocess import Popen, PIPE
 
 from cx_Freeze import setup, Executable
@@ -52,12 +53,10 @@
     version=version,
     options={
         'build_exe': {
-            'compressed': False,
+            'no_compress': True,
             'include_files': include_files,
             'silent': True,
             'packages': ['gtk'],
-            'icon': os.path.join(
-                'tryton', 'data', 'pixmaps', 'tryton', 'tryton.ico'),
             'include_msvcr': True,
             },
         'bdist_mac': {
@@ -68,4 +67,7 @@
         },
     executables=[Executable(
             'bin/tryton',
-            base='Win32GUI' if sys.platform == 'win32' else None)])
+            base='Win32GUI' if sys.platform == 'win32' else None,
+            icon=os.path.join(
+                'tryton', 'data', 'pixmaps', 'tryton', 'tryton.ico'),
+            )])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/tryton/__init__.py 
new/tryton-4.2.9/tryton/__init__.py
--- old/tryton-4.2.8/tryton/__init__.py 2017-10-03 21:30:54.000000000 +0200
+++ new/tryton-4.2.9/tryton/__init__.py 2017-11-07 18:43:45.000000000 +0100
@@ -1,3 +1,3 @@
 # 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__ = "4.2.8"
+__version__ = "4.2.9"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/tryton/config.py 
new/tryton-4.2.9/tryton/config.py
--- old/tryton-4.2.8/tryton/config.py   2017-11-07 18:43:27.000000000 +0100
+++ new/tryton-4.2.9/tryton/config.py   2017-12-05 00:04:07.000000000 +0100
@@ -169,7 +169,7 @@
 CONFIG = ConfigManager()
 CURRENT_DIR = os.path.dirname(__file__)
 if hasattr(sys, 'frozen'):
-    CURRENT_DIR = sys.executable
+    CURRENT_DIR = os.path.dirname(sys.executable)
 if not isinstance(CURRENT_DIR, unicode):
     CURRENT_DIR = unicode(CURRENT_DIR, sys.getfilesystemencoding())
 
Binary files old/tryton-4.2.8/tryton/data/locale/bg/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/bg/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/ca/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/ca/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/cs/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/cs/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/de/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/de/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/es/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/es/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo 
and new/tryton-4.2.9/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/fr/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/fr/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo 
and new/tryton-4.2.9/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo 
and new/tryton-4.2.9/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo 
and new/tryton-4.2.9/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/lo/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/lo/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/lt/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/lt/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/nl/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/nl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/pl/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/pl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo 
and new/tryton-4.2.9/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/ru/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/ru/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/sl/LC_MESSAGES/tryton.mo and 
new/tryton-4.2.9/tryton/data/locale/sl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-4.2.8/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo 
and new/tryton-4.2.9/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/tryton-4.2.8/tryton/gui/window/view_form/view/form_gtk/widget.py 
new/tryton-4.2.9/tryton/gui/window/view_form/view/form_gtk/widget.py
--- old/tryton-4.2.8/tryton/gui/window/view_form/view/form_gtk/widget.py        
2017-11-07 18:43:27.000000000 +0100
+++ new/tryton-4.2.9/tryton/gui/window/view_form/view/form_gtk/widget.py        
2017-12-05 00:04:07.000000000 +0100
@@ -171,7 +171,7 @@
             label.set_mnemonic_widget(widget)
             self.widget.translate_widget_set(widget, fuzzy_value)
             self.widget.translate_widget_set_readonly(widget, True)
-            yopt = None
+            yopt = 0
             if self.widget.expand:
                 yopt = gtk.EXPAND | gtk.FILL
             table.attach(widget, 1, 2, i, i + 1, yoptions=yopt)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/tryton-4.2.8/tryton/gui/window/view_form/view/list.py 
new/tryton-4.2.9/tryton/gui/window/view_form/view/list.py
--- old/tryton-4.2.8/tryton/gui/window/view_form/view/list.py   2017-05-03 
18:53:29.000000000 +0200
+++ new/tryton-4.2.9/tryton/gui/window/view_form/view/list.py   2017-12-05 
00:04:07.000000000 +0100
@@ -828,7 +828,7 @@
             return True
         if drop_info:
             path, position = drop_info
-            check_path = path
+            check_path = tuple(path)
             if position in (gtk.TREE_VIEW_DROP_BEFORE,
                     gtk.TREE_VIEW_DROP_AFTER):
                 check_path = path[:-1]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/tryton.egg-info/PKG-INFO 
new/tryton-4.2.9/tryton.egg-info/PKG-INFO
--- old/tryton-4.2.8/tryton.egg-info/PKG-INFO   2017-11-07 18:43:31.000000000 
+0100
+++ new/tryton-4.2.9/tryton.egg-info/PKG-INFO   2017-12-05 00:04:11.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 4.2.8
+Version: 4.2.9
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-4.2.8/win32/gtk-2.0/gdk-pixbuf.loaders 
new/tryton-4.2.9/win32/gtk-2.0/gdk-pixbuf.loaders
--- old/tryton-4.2.8/win32/gtk-2.0/gdk-pixbuf.loaders   2017-05-03 
18:53:29.000000000 +0200
+++ new/tryton-4.2.9/win32/gtk-2.0/gdk-pixbuf.loaders   2017-12-05 
00:04:07.000000000 +0100
@@ -2,7 +2,7 @@
 # Automatically generated file, do not edit
 # Created by gdk-pixbuf-query-loaders.exe from gdk-pixbuf-2.35.4
 #
-# LoaderDir = C:\msys32\mingw32/lib/gdk-pixbuf-2.0/2.10.0/loaders
+# LoaderDir = lib/gdk-pixbuf-2.0/2.10.0/loaders
 #
 "lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.dll"
 "svg" 6 "gdk-pixbuf" "Scalable Vector Graphics" "LGPL"


Reply via email to