[tryton-debian-vcs] tryton-neso branch debian updated. debian/3.2.1-1-7-g581f445
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Oct 23 12:19:30 UTC 2014
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-neso.git;a=commitdiff;h=debian/3.2.1-1-7-g581f445
commit 581f445ef2872292f9d030da4518e93bd0976563
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Oct 23 13:32:11 2014 +0200
Releasing debian version 3.4.0-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 8c01a5a..b9b52c9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+tryton-neso (3.4.0-1) unstable; urgency=medium
+
+ * Updating signing key while using now plain .asc files instead of .pgp
+ binaries.
+ * Adding 01-desktop-icon.patch.
+ * Adding actual upstream signing key.
+ * Updating to Standards-Version: 3.9.6, no changes needed.
+ * Merging upstream version 3.4.0.
+ * Updating man page.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Tue, 21 Oct 2014 20:24:41 +0200
+
tryton-neso (3.2.1-1) unstable; urgency=medium
* Merging upstream version 3.2.1.
commit d69ddd501130901faacaf89a9ba5595f9098242f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Oct 21 18:15:09 2014 +0200
Updating man page.
diff --git a/debian/manpages/neso.1 b/debian/manpages/neso.1
index 47a19fa..78c4277 100644
--- a/debian/manpages/neso.1
+++ b/debian/manpages/neso.1
@@ -1,4 +1,4 @@
-.TH NESO 1 "2014\-04\-24" "3.2" "Tryton Application Platform"
+.TH NESO 1 "2014\-10\-21" "3.4" "Tryton Application Platform"
.SH NAME
neso \- Tryton Application Platform (Standalone Client/Server)
commit 4e44cf1938afa45022c62919b9f7b2bed0371bb4
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Oct 21 11:29:25 2014 +0200
Merging upstream version 3.4.0.
diff --git a/CHANGELOG b/CHANGELOG
index 2e97db8..f20c9ca 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-Version 3.2.1 - 2014-04-27
+Version 3.4.0 - 2014-10-20
* Bug fixes (see mercurial logs for details)
Version 3.2.0 - 2014-04-21
diff --git a/PKG-INFO b/PKG-INFO
index e62a117..7c49730 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: neso
-Version: 3.2.1
+Version: 3.4.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.2/
+Download-URL: http://downloads.tryton.org/3.4/
Description: neso
====
diff --git a/bin/neso b/bin/neso
index 851d8ab..72b9a04 100755
--- a/bin/neso
+++ b/bin/neso
@@ -75,7 +75,7 @@ for i in ('tryton', 'trytond'):
import tryton.client
TrytonClient = tryton.client.TrytonClient()
-from trytond.config import CONFIG
+from trytond.config import config
from tryton.config import get_home_dir
DATA_DIR = os.path.join(os.path.abspath(os.path.normpath(
@@ -89,11 +89,7 @@ VERSION_DATA_DIR = os.path.join(DATA_DIR, VERSION.rsplit('.', 1)[0])
if not os.path.isdir(VERSION_DATA_DIR):
os.mkdir(VERSION_DATA_DIR, 0700)
-CONFIG.options['jsonrpc'] = False
-CONFIG.options['xmlrpc'] = False
-CONFIG.options['webdav'] = False
-CONFIG.options['db_type'] = 'sqlite'
-CONFIG.options['data_path'] = VERSION_DATA_DIR
+config.set('database', 'path', VERSION_DATA_DIR)
for mod in sys.modules.keys():
if mod.startswith('trytond.') \
@@ -103,6 +99,10 @@ for mod in sys.modules.keys():
from trytond.pool import Pool
Pool.start()
+from trytond import security
+
+security.check_super = lambda *a: True
+
from trytond.protocols.dispatcher import dispatch
from trytond.exceptions import UserError, UserWarning, NotLogged, \
ConcurrencyException
@@ -218,9 +218,9 @@ def cron():
pool = Pool(dbname)
if 'ir.cron' not in pool.object_name_list():
continue
- cron_obj = pool.get('ir.cron')
+ Cron = pool.get('ir.cron')
thread = threading.Thread(
- target=cron_obj.run,
+ target=Cron.run,
args=(dbname,), kwargs={})
thread.start()
threads[dbname] = thread
diff --git a/neso.egg-info/PKG-INFO b/neso.egg-info/PKG-INFO
index e62a117..7c49730 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.2.1
+Version: 3.4.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.2/
+Download-URL: http://downloads.tryton.org/3.4/
Description: neso
====
diff --git a/neso.egg-info/requires.txt b/neso.egg-info/requires.txt
index 72fabf9..f976de0 100644
--- a/neso.egg-info/requires.txt
+++ b/neso.egg-info/requires.txt
@@ -1,2 +1,2 @@
-tryton >= 3.2, < 3.3
-trytond >= 3.2, < 3.3
\ No newline at end of file
+tryton >= 3.4, < 3.5
+trytond >= 3.4, < 3.5
\ No newline at end of file
diff --git a/neso/version.py b/neso/version.py
index 0e39619..ad64590 100644
--- a/neso/version.py
+++ b/neso/version.py
@@ -1,6 +1,6 @@
#This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
PACKAGE = "neso"
-VERSION = "3.2.1"
+VERSION = "3.4.0"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-neso
More information about the tryton-debian-vcs
mailing list