[tryton-debian-vcs] tryton-neso branch upstream updated. upstream/3.6.2-2-g73e19f5

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Nov 11 11:31:10 UTC 2015


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-neso.git;a=commitdiff;h=upstream/3.6.2-2-g73e19f5

commit 73e19f5c67acc7037c142878eddeeea44d12fe06
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Nov 11 12:13:35 2015 +0100

    Adding upstream version 3.8.1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index ece6f4a..c1bf06c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.1 - 2015-11-02
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.0 - 2015-11-02
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 631ddf1..4a82c50 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.8.0
+Version: 3.8.1
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/bin/neso b/bin/neso
index c480681..80cb63a 100755
--- a/bin/neso
+++ b/bin/neso
@@ -75,13 +75,16 @@ for i in ('tryton', 'trytond'):
 import tryton.client
 
 from trytond.config import config
-from tryton.config import get_home_dir
 
 DATA_DIR = os.path.join(os.path.abspath(os.path.normpath(
     os.path.dirname(sys.argv[0]))), '.neso')
 if not os.path.isdir(DATA_DIR):
-    DATA_DIR = os.path.join(unicode(get_home_dir(),
-        sys.getfilesystemencoding()), '.neso')
+    if os.name == 'nt':
+        HOME = os.path.join(os.environ['HOMEDRIVE'], os.environ['HOMEPATH']
+            ).decode(sys.getfilesystemencoding())
+    else:
+        HOME = os.environ['HOME']
+    DATA_DIR = os.path.join(HOME, '.neso')
     if not os.path.isdir(DATA_DIR):
         os.mkdir(DATA_DIR, 0700)
 VERSION_DATA_DIR = os.path.join(DATA_DIR, __version__.rsplit('.', 1)[0])
@@ -215,7 +218,7 @@ def cron():
             if thread and thread.is_alive():
                 continue
             pool = Pool(dbname)
-            if not pool.local.acquire(0):
+            if not pool.lock.acquire(0):
                 continue
             try:
                 try:
diff --git a/neso.egg-info/PKG-INFO b/neso.egg-info/PKG-INFO
index 631ddf1..4a82c50 100644
--- a/neso.egg-info/PKG-INFO
+++ b/neso.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.8.0
+Version: 3.8.1
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/neso/__init__.py b/neso/__init__.py
index 3b7287f..4db434a 100644
--- a/neso/__init__.py
+++ b/neso/__init__.py
@@ -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__ = "3.8.0"
+__version__ = "3.8.1"
commit 53dd86a38f8f0aa8f7e40784e3e1ae5e084e56f0
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Nov 11 12:11:22 2015 +0100

    Adding upstream version 3.8.0.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 587cf6b..ece6f4a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,4 @@
-Version 3.6.2 - 2015-09-08
-* Bug fixes (see mercurial logs for details)
-
-Version 3.6.1 - 2015-07-13
+Version 3.8.0 - 2015-11-02
 * Bug fixes (see mercurial logs for details)
 
 Version 3.6.0 - 2015-04-20
diff --git a/PKG-INFO b/PKG-INFO
index 423d98a..631ddf1 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.6.2
+Version: 3.8.0
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.6/
+Download-URL: http://downloads.tryton.org/3.8/
 Description: neso
         ====
         
@@ -67,9 +67,10 @@ Classifier: Natural Language :: Dutch
 Classifier: Natural Language :: English
 Classifier: Natural Language :: French
 Classifier: Natural Language :: German
+Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Portuguese (Brazilian)
 Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Spanish
-Classifier: Natural Language :: Slovak
 Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Japanese
 Classifier: Operating System :: OS Independent
diff --git a/neso.egg-info/PKG-INFO b/neso.egg-info/PKG-INFO
index 423d98a..631ddf1 100644
--- a/neso.egg-info/PKG-INFO
+++ b/neso.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.6.2
+Version: 3.8.0
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.6/
+Download-URL: http://downloads.tryton.org/3.8/
 Description: neso
         ====
         
@@ -67,9 +67,10 @@ Classifier: Natural Language :: Dutch
 Classifier: Natural Language :: English
 Classifier: Natural Language :: French
 Classifier: Natural Language :: German
+Classifier: Natural Language :: Italian
+Classifier: Natural Language :: Portuguese (Brazilian)
 Classifier: Natural Language :: Russian
 Classifier: Natural Language :: Spanish
-Classifier: Natural Language :: Slovak
 Classifier: Natural Language :: Slovenian
 Classifier: Natural Language :: Japanese
 Classifier: Operating System :: OS Independent
diff --git a/neso.egg-info/SOURCES.txt b/neso.egg-info/SOURCES.txt
index 672a5e7..e141fe2 100644
--- a/neso.egg-info/SOURCES.txt
+++ b/neso.egg-info/SOURCES.txt
@@ -9,6 +9,7 @@ english.nsh
 french.nsh
 german.nsh
 neso.desktop
+portuguese.nsh
 setup.nsi
 setup.py
 slovenian.nsh
diff --git a/neso.egg-info/requires.txt b/neso.egg-info/requires.txt
index ad6a939..c83a19a 100644
--- a/neso.egg-info/requires.txt
+++ b/neso.egg-info/requires.txt
@@ -1,2 +1,2 @@
-tryton >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
\ No newline at end of file
+tryton >= 3.8, < 3.9
+trytond >= 3.8, < 3.9
\ No newline at end of file
diff --git a/neso/__init__.py b/neso/__init__.py
index db5050e..3b7287f 100644
--- a/neso/__init__.py
+++ b/neso/__init__.py
@@ -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__ = "3.6.2"
+__version__ = "3.8.0"
diff --git a/portuguese.nsh b/portuguese.nsh
new file mode 100644
index 0000000..5c7b998
--- /dev/null
+++ b/portuguese.nsh
@@ -0,0 +1,17 @@
+;This file is part of Tryton.  The COPYRIGHT file at the top level of
+;this repository contains the full copyright notices and license terms.
+
+!verbose 3
+
+!ifdef CURLANG
+    !undef CURLANG
+!endif
+!define CURLANG ${LANG_ENGLISH}
+
+LangString LicenseText ${CURLANG} "Neso é licenciado sobre a GNU General Public License como publicada pela Free Software Foundation, conforme a versão 3 da licença, ou (segundo sua escolha) qualquer versão posterior. Favor ler cuidadosamente a licença. Clique em Seguinte para continuar."
+LangString LicenseNext ${CURLANG} "&Seguinte"
+LangString PreviousInstall ${CURLANG} "Favor remover a instalação anterior do Neso"
+LangString SecNesoName ${CURLANG} "Neso"
+LangString SecNesoDesc ${CURLANG} "Instala neso.exe e outros arquivos necessários"
+LangString SecStartMenuName ${CURLANG} "Menu Iniciar e Atalhos da Área de Trabalho"
+LangString SecStartMenuDesc ${CURLANG} "Criar atalhos no menu iniciar e na Área de Trabalho"
diff --git a/setup.py b/setup.py
index 44c10ca..006799b 100644
--- a/setup.py
+++ b/setup.py
@@ -21,11 +21,15 @@ languages = (
     'de_DE',
     'es_AR',
     'es_CO',
+    'es_EC',
     'es_ES',
+    'es_MX',
     'fr_FR',
+    'it_IT',
     'ja_JP',
     'lt_LT',
     'nl_NL',
+    'pt_BR',
     'ru_RU',
     'sl_SI',
     )
@@ -184,9 +188,10 @@ dist = setup(name=name,
         'Natural Language :: English',
         'Natural Language :: French',
         'Natural Language :: German',
+        'Natural Language :: Italian',
+        'Natural Language :: Portuguese (Brazilian)',
         'Natural Language :: Russian',
         'Natural Language :: Spanish',
-        'Natural Language :: Slovak',
         'Natural Language :: Slovenian',
         'Natural Language :: Japanese',
         'Operating System :: OS Independent',
-- 
tryton-neso



More information about the tryton-debian-vcs mailing list