[tryton-debian-vcs] tryton-modules-sale-supply-drop-shipment branch debian-stretch-4.4 created. debian/4.4.3-1
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 15 09:48:30 UTC 2017
The following commit has been merged in the debian-stretch-4.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale-supply-drop-shipment.git;a=commitdiff;h=debian/4.4.3-1
commit 8f0f1724939df4318bf5c53916f1c6fe14b3ef63
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 13:55:09 2017 +0100
Releasing debian version 4.4.3-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 231f71b..cc6e391 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-modules-sale-supply-drop-shipment (4.4.3-1) unstable; urgency=medium
+
+ * Bump the Standards-Version to 4.1.1, no changes needed.
+ * Setting the branch in the watch file to the fixed version 4.4.
+ * Merging upstream version 4.4.3.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 11 Nov 2017 13:55:09 +0100
+
tryton-modules-sale-supply-drop-shipment (4.4.2-1) unstable; urgency=medium
* Bump the Standards-Version to 4.1.0, no changes needed.
commit 915eb640414155be3177be42a56b98b9bf0302af
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 13:55:09 2017 +0100
Merging upstream version 4.4.3.
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 ddc42f9..38b7bc3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.3 - 2017-11-07
+* Bug fixes (see mercurial logs for details)
+
Version 4.4.2 - 2017-10-04
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 8d7001c..090ca64 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_sale_supply_drop_shipment
-Version: 4.4.2
+Version: 4.4.3
Summary: Tryton module for sale supply drop shipment
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/stock.py b/stock.py
index f9a3234..9014a1c 100644
--- a/stock.py
+++ b/stock.py
@@ -538,7 +538,8 @@ class Move:
@classmethod
def search_customer_drop(cls, name, clause):
return ['OR',
- ('origin.sale.party',) + tuple(clause[1:]) + ('sale.line',),
- (('origin.purchase.customer',) + tuple(clause[1:])
- + ('purchase.line',)),
+ ('origin.sale.party' + clause[0].lstrip(name),)
+ + tuple(clause[1:3]) + ('sale.line',) + tuple(clause[3:]),
+ ('origin.purchase.customer' + clause[0].lstrip(name),)
+ + tuple(clause[1:3]) + ('purchase.line',) + tuple(clause[3:]),
]
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 30e3ba1..66a6100 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.4.2
+version=4.4.3
depends:
company
ir
diff --git a/trytond_sale_supply_drop_shipment.egg-info/PKG-INFO b/trytond_sale_supply_drop_shipment.egg-info/PKG-INFO
index e4b9764..e31960a 100644
--- a/trytond_sale_supply_drop_shipment.egg-info/PKG-INFO
+++ b/trytond_sale_supply_drop_shipment.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-sale-supply-drop-shipment
-Version: 4.4.2
+Version: 4.4.3
Summary: Tryton module for sale supply drop shipment
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_sale_supply_drop_shipment.egg-info/SOURCES.txt b/trytond_sale_supply_drop_shipment.egg-info/SOURCES.txt
index d4197ad..89a4bcf 100644
--- a/trytond_sale_supply_drop_shipment.egg-info/SOURCES.txt
+++ b/trytond_sale_supply_drop_shipment.egg-info/SOURCES.txt
@@ -1,13 +1,21 @@
+.drone.yml
+.hgtags
CHANGELOG
COPYRIGHT
INSTALL
LICENSE
MANIFEST.in
README
+__init__.py
+party.py
+purchase.py
purchase.xml
+sale.py
sale.xml
setup.py
+stock.py
stock.xml
+tox.ini
tryton.cfg
./__init__.py
./party.py
@@ -68,7 +76,9 @@ locale/pt_BR.po
locale/ru.po
locale/sl.po
locale/zh_CN.po
+tests/__init__.py
tests/scenario_sale_supply_drop_shipment.rst
+tests/test_sale_supply_drop_shipment.py
trytond_sale_supply_drop_shipment.egg-info/PKG-INFO
trytond_sale_supply_drop_shipment.egg-info/SOURCES.txt
trytond_sale_supply_drop_shipment.egg-info/dependency_links.txt
commit 45de06ed86275ab31a1f9ee30bfab99288f1a9a9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Nov 6 12:26:10 2017 +0100
Setting the branch in the watch file to the fixed version 4.4.
diff --git a/debian/watch b/debian/watch
index 5630ebb..e8fbe0a 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,2 @@
version=3
-opts=pgpsigurlmangle=s/$/.asc/ http://downloads.tryton.org/current/ .*trytond_sale_supply_drop_shipment-(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
+opts=pgpsigurlmangle=s/$/.asc/ http://downloads.tryton.org/4.4/ .*trytond_sale_supply_drop_shipment-(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
--
tryton-modules-sale-supply-drop-shipment
More information about the tryton-debian-vcs
mailing list