[tryton-debian-vcs] tryton-modules-production-routing branch debian-stretch-4.2 updated. debian/4.2.1-1-2-g2517f2a

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Sun Nov 12 16:33:08 UTC 2017


The following commit has been merged in the debian-stretch-4.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-production-routing.git;a=commitdiff;h=debian/4.2.1-1-2-g2517f2a

commit 2517f2a3d98555a15652a8e94278a68394c811a1
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sun Nov 12 16:28:11 2017 +0100

    Releasing debian version 4.2.2-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index c253987..33ba9d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-production-routing (4.2.2-1) unstable; urgency=medium
+
+  * Merging upstream version 4.2.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Sun, 12 Nov 2017 16:28:10 +0100
+
 tryton-modules-production-routing (4.2.1-1) unstable; urgency=medium
 
   * Add the actual upstream maintainer key to signing-key.asc.
commit 46c32ed1bb951c155febd54ad89afa54f6a0162e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sun Nov 12 16:28:10 2017 +0100

    Merging upstream version 4.2.2.

diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..c4fd423
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,9 @@
+image: python:all
+env:
+  - POSTGRESQL_URI=postgresql://postgres@127.0.0.1:5432/
+  - MYSQL_URI=mysql://root@127.0.0.1:3306/
+script:
+  - pip install tox
+  - tox -e "{py27,py33,py34,py35}-{sqlite,postgresql}" --skip-missing-interpreters
+services:
+  - postgres
diff --git a/CHANGELOG b/CHANGELOG
index 69e584c..df47b87 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.2.2 - 2017-11-08
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.1 - 2017-09-04
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index a825f4b..25af4b4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_production_routing
-Version: 4.2.1
+Version: 4.2.2
 Summary: Tryton module for production routing
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/routing.py b/routing.py
index 0f17f3e..6e4c65b 100644
--- a/routing.py
+++ b/routing.py
@@ -43,7 +43,7 @@ class RoutingStep(sequence_ordered(), ModelSQL, ModelView):
 
     @classmethod
     def search_rec_name(cls, name, clause):
-        return [('operation',) + tuple(clause[1:])]
+        return [('operation.rec_name',) + tuple(clause[1:])]
 
 
 class Routing_BOM(ModelSQL):
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..08e43cf
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,18 @@
+[tox]
+envlist = {py27,py33,py34,py35}-{sqlite,postgresql,mysql},pypy-{sqlite,postgresql}
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+    {py27,py33,py34,py35}-postgresql: psycopg2 >= 2.5
+    pypy-postgresql: psycopg2cffi >= 2.5
+    mysql: MySQL-python
+    sqlite: sqlitebck
+setenv =
+    sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
+    postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}
+    mysql: TRYTOND_DATABASE_URI={env:MYSQL_URI:mysql://}
+    sqlite: DB_NAME={env:SQLITE_NAME::memory:}
+    postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
+    mysql: DB_NAME={env:MYSQL_NAME:test}
+install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages}
diff --git a/tryton.cfg b/tryton.cfg
index a8a4ab0..8834d0b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.2.1
+version=4.2.2
 depends:
     ir
     production
diff --git a/trytond_production_routing.egg-info/PKG-INFO b/trytond_production_routing.egg-info/PKG-INFO
index e6003c2..879dc0e 100644
--- a/trytond_production_routing.egg-info/PKG-INFO
+++ b/trytond_production_routing.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-production-routing
-Version: 4.2.1
+Version: 4.2.2
 Summary: Tryton module for production routing
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/trytond_production_routing.egg-info/SOURCES.txt b/trytond_production_routing.egg-info/SOURCES.txt
index d7845d3..53a3d39 100644
--- a/trytond_production_routing.egg-info/SOURCES.txt
+++ b/trytond_production_routing.egg-info/SOURCES.txt
@@ -1,13 +1,20 @@
+.drone.yml
+.hgtags
 CHANGELOG
 COPYRIGHT
 INSTALL
 LICENSE
 MANIFEST.in
 README
+__init__.py
+product.py
 product.xml
+production.py
 production.xml
+routing.py
 routing.xml
 setup.py
+tox.ini
 tryton.cfg
 ./__init__.py
 ./product.py
@@ -69,6 +76,8 @@ locale/pt_BR.po
 locale/ru.po
 locale/sl.po
 locale/zh_CN.po
+tests/__init__.py
+tests/test_production_routing.py
 trytond_production_routing.egg-info/PKG-INFO
 trytond_production_routing.egg-info/SOURCES.txt
 trytond_production_routing.egg-info/dependency_links.txt
-- 
tryton-modules-production-routing



More information about the tryton-debian-vcs mailing list