[tryton-debian-vcs] tryton-modules-purchase-invoice-line-standalone branch debian-stretch-3.6 updated. debian/3.6.0-1-11-gae54cfb
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Nov 12 16:34:01 UTC 2017
The following commit has been merged in the debian-stretch-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-purchase-invoice-line-standalone.git;a=commitdiff;h=debian/3.6.0-1-11-gae54cfb
commit ae54cfb4bdc8d2742a029384881ecb973527053f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 17:40:13 2017 +0100
Releasing debian version 3.6.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 3e7654b..bef9db4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+tryton-modules-purchase-invoice-line-standalone (3.6.1-1) unstable; urgency=medium
+
+ * Updating year of debian copyright.
+ * Unifying package short description.
+ * Adapting section naming in gbp.conf to current git-buildpackage.
+ * Correcting package long description.
+ * Improving description why we can not run the module test suites.
+ * Setting the branch in the watch file to the fixed version 3.6.
+ * Updating signing-key.asc with the actual upstream maintainer keys.
+ * Add the actual upstream maintainer key to signing-key.asc.
+ * Merging upstream version 3.6.1.
+ * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 11 Nov 2017 17:40:13 +0100
+
tryton-modules-purchase-invoice-line-standalone (3.6.0-1) unstable; urgency=medium
* Wrapping and sorting control files (wrap-and-sort -bts).
commit b86bd3703b8f887ed3ec6416864130f4c71891b3
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 17:40:12 2017 +0100
Updating copyright file.
diff --git a/debian/copyright b/debian/copyright
index 46caba0..6d0349d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,9 +1,9 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
-Copyright: 2008-2015 Cédric Krier
+Copyright: 2008-2017 Cédric Krier
2008-2013 Bertrand Chenal
- 2008-2015 B2CK SPRL
+ 2008-2017 B2CK SPRL
License: GPL-3+
Files: debian/*
commit 71a73e7ec6fd2075e1704c4b08e9fe5ac4bee4e1
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 17:40:12 2017 +0100
Merging upstream version 3.6.1.
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..9d7c769
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,9 @@
+image: python2.7
+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-{sqlite,postgresql}"
+services:
+ - postgres
diff --git a/CHANGELOG b/CHANGELOG
index 9fb2c68..29831ad 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2017-11-07
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
* Add support for PyPy
diff --git a/COPYRIGHT b/COPYRIGHT
index 4c7ddcd..5af5413 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2015 Cédric Krier.
+Copyright (C) 2008-2017 Cédric Krier.
Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2015 B2CK SPRL.
+Copyright (C) 2008-2017 B2CK SPRL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index d71b5fb..3ad1f97 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_purchase_invoice_line_standalone
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module for standalone invoice line from purchase
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/purchase.py b/purchase.py
index 4866501..ca164a0 100644
--- a/purchase.py
+++ b/purchase.py
@@ -41,7 +41,7 @@ class Purchase:
@classmethod
def search_invoice_lines(cls, name, clause):
- return [('lines.invoice_lines',) + tuple(clause[1:])]
+ return [('lines.' + clause[0],) + tuple(clause[1:])]
def create_invoice(self, invoice_type):
pool = Pool()
diff --git a/setup.cfg b/setup.cfg
index 861a9f5..8bfd5a1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,4 @@
[egg_info]
tag_build =
tag_date = 0
-tag_svn_revision = 0
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..e9d2876
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,17 @@
+[tox]
+envlist = py27-{sqlite,postgresql,mysql},pypy-{sqlite,postgresql}
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+ py27-postgresql: psycopg2 >= 2.0
+ pypy-postgresql: psycopg2cffi >= 2.5
+ mysql: MySQL-python
+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 6673a69..09ee8d3 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.0
+version=3.6.1
depends:
account_invoice_line_standalone
ir
diff --git a/trytond_purchase_invoice_line_standalone.egg-info/PKG-INFO b/trytond_purchase_invoice_line_standalone.egg-info/PKG-INFO
index 107e215..51c18ed 100644
--- a/trytond_purchase_invoice_line_standalone.egg-info/PKG-INFO
+++ b/trytond_purchase_invoice_line_standalone.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-purchase-invoice-line-standalone
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module for standalone invoice line from purchase
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_purchase_invoice_line_standalone.egg-info/SOURCES.txt b/trytond_purchase_invoice_line_standalone.egg-info/SOURCES.txt
index 7b7dd0d..92ada6e 100644
--- a/trytond_purchase_invoice_line_standalone.egg-info/SOURCES.txt
+++ b/trytond_purchase_invoice_line_standalone.egg-info/SOURCES.txt
@@ -1,11 +1,17 @@
+.drone.yml
+.hgtags
CHANGELOG
COPYRIGHT
INSTALL
LICENSE
MANIFEST.in
README
+__init__.py
+invoice.py
+purchase.py
purchase.xml
setup.py
+tox.ini
tryton.cfg
./__init__.py
./invoice.py
@@ -41,7 +47,9 @@ locale/fr_FR.po
locale/nl_NL.po
locale/ru_RU.po
locale/sl_SI.po
+tests/__init__.py
tests/scenario_purchase_invoice_line_standalone.rst
+tests/test_purchase_invoice_line_standalone.py
trytond_purchase_invoice_line_standalone.egg-info/PKG-INFO
trytond_purchase_invoice_line_standalone.egg-info/SOURCES.txt
trytond_purchase_invoice_line_standalone.egg-info/dependency_links.txt
diff --git a/trytond_purchase_invoice_line_standalone.egg-info/requires.txt b/trytond_purchase_invoice_line_standalone.egg-info/requires.txt
index 7823ded..d944636 100644
--- a/trytond_purchase_invoice_line_standalone.egg-info/requires.txt
+++ b/trytond_purchase_invoice_line_standalone.egg-info/requires.txt
@@ -1,4 +1,4 @@
python-sql
trytond_account_invoice_line_standalone >= 3.6, < 3.7
trytond_purchase >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
\ No newline at end of file
+trytond >= 3.6, < 3.7
--
tryton-modules-purchase-invoice-line-standalone
More information about the tryton-debian-vcs
mailing list