[tryton-commits] changeset in modules/sale_product_customer:default Prevent domai...

2020-05-01 Thread Sergi Almacellas Abellana
changeset 3bef7a63ee9c in modules/sale_product_customer:default
details: 
https://hg.tryton.org/modules/sale_product_customer?cmd=changeset;node=3bef7a63ee9c
description:
Prevent domain error when copy products with product customers on 
variants

issue9017
review315221002
diffstat:

 product.py |  56 +++-
 1 files changed, 55 insertions(+), 1 deletions(-)

diffs (77 lines):

diff -r 051f513b7592 -r 3bef7a63ee9c product.py
--- a/product.pySat Apr 25 23:53:51 2020 +0200
+++ b/product.pyFri May 01 20:32:37 2020 +0200
@@ -3,7 +3,7 @@
 
 from trytond.model import (fields, ModelSQL, ModelView, sequence_ordered,
 MatchMixin)
-from trytond.pool import PoolMeta
+from trytond.pool import PoolMeta, Pool
 from trytond.pyson import If, Eval, Bool
 from trytond.tools import lstrip_wildcard
 
@@ -84,6 +84,31 @@
 if product_customer.match(pattern):
 yield product_customer
 
+@classmethod
+def copy(cls, templates, default=None):
+pool = Pool()
+ProductCustomer = pool.get('sale.product_customer')
+if default is None:
+default = {}
+else:
+default = default.copy()
+
+copy_customers = 'product_customers' not in default
+default.setdefault('product_customers', None)
+new_templates = super().copy(templates, default)
+if copy_customers:
+old2new = {}
+to_copy = []
+for template, new_template in zip(templates, new_templates):
+to_copy.extend(
+pc for pc in template.product_customers if not pc.product)
+old2new[template.id] = new_template.id
+if to_copy:
+ProductCustomer.copy(to_copy, {
+'template': lambda d: old2new[d['template']],
+})
+return new_templates
+
 
 class Product(metaclass=PoolMeta):
 __name__ = 'product.product'
@@ -103,3 +128,32 @@
 yield product_customer
 pattern['product'] = None
 yield from self.template.product_customer_used(**pattern)
+
+@classmethod
+def copy(cls, products, default=None):
+pool = Pool()
+ProductCustomer = pool.get('sale.product_customer')
+if default is None:
+default = {}
+else:
+default = default.copy()
+
+copy_customers = 'product_customers' not in default
+if 'template' in default:
+default.setdefault('product_customers', None)
+new_products = super().copy(products, default)
+if 'template' in default and copy_customers:
+template2new = {}
+product2new = {}
+to_copy = []
+for product, new_product in zip(products, new_products):
+if product.product_customers:
+to_copy.extend(product.product_customers)
+template2new[product.template.id] = new_product.template.id
+product2new[product.id] = new_product.id
+if to_copy:
+ProductCustomer.copy(to_copy, {
+'product': lambda d: product2new[d['product']],
+'template': lambda d: template2new[d['template']],
+})
+return new_products



[tryton-commits] changeset in modules/purchase:default Prevent domain error when ...

2020-05-01 Thread Sergi Almacellas Abellana
changeset c43a5ec13cf7 in modules/purchase:default
details: https://hg.tryton.org/modules/purchase?cmd=changeset;node=c43a5ec13cf7
description:
Prevent domain error when copy products with product suppliers on 
variants

issue9017
review315221002V
diffstat:

 product.py |  54 ++
 1 files changed, 54 insertions(+), 0 deletions(-)

diffs (71 lines):

diff -r 0c64a201a7c4 -r c43a5ec13cf7 product.py
--- a/product.pySat Apr 25 23:53:51 2020 +0200
+++ b/product.pyFri May 01 20:31:02 2020 +0200
@@ -85,6 +85,31 @@
 name, gettext('purchase.msg_change_purchase_uom'))
 super(Template, cls).write(*args)
 
+@classmethod
+def copy(cls, templates, default=None):
+pool = Pool()
+ProductSupplier = pool.get('purchase.product_supplier')
+if default is None:
+default = {}
+else:
+default = default.copy()
+
+copy_suppliers = 'product_suppliers' not in default
+default.setdefault('product_suppliers', None)
+new_templates = super().copy(templates, default)
+if copy_suppliers:
+old2new = {}
+to_copy = []
+for template, new_template in zip(templates, new_templates):
+to_copy.extend(
+ps for ps in template.product_suppliers if not ps.product)
+old2new[template.id] = new_template.id
+if to_copy:
+ProductSupplier.copy(to_copy, {
+'template': lambda d: old2new[d['template']],
+})
+return new_templates
+
 
 class Product(metaclass=PoolMeta):
 __name__ = 'product.product'
@@ -181,6 +206,35 @@
 prices[product.id], currency, round=False)
 return prices
 
+@classmethod
+def copy(cls, products, default=None):
+pool = Pool()
+ProductSupplier = pool.get('purchase.product_supplier')
+if default is None:
+default = {}
+else:
+default = default.copy()
+
+copy_suppliers = 'product_suppliers' not in default
+if 'template' in default:
+default.setdefault('product_suppliers', None)
+new_products = super().copy(products, default)
+if 'template' in default and copy_suppliers:
+template2new = {}
+product2new = {}
+to_copy = []
+for product, new_product in zip(products, new_products):
+if product.product_suppliers:
+to_copy.extend(product.product_suppliers)
+template2new[product.template.id] = new_product.template.id
+product2new[product.id] = new_product.id
+if to_copy:
+ProductSupplier.copy(to_copy, {
+'product': lambda d: product2new[d['product']],
+'template': lambda d: template2new[d['template']],
+})
+return new_products
+
 
 class ProductSupplier(sequence_ordered(), ModelSQL, ModelView, MatchMixin):
 'Product Supplier'



[tryton-commits] changeset in modules/sale_product_customer:default Add test for ...

2020-05-01 Thread Sergi Almacellas Abellana
changeset b9f0c4001c11 in modules/sale_product_customer:default
details: 
https://hg.tryton.org/modules/sale_product_customer?cmd=changeset;node=b9f0c4001c11
description:
Add test for product customers copy

issue9017
review315221002
diffstat:

 tests/scenario_sale_copy_product_customer.rst |  58 +++
 tests/test_sale_product_customer.py   |   5 ++
 2 files changed, 63 insertions(+), 0 deletions(-)

diffs (75 lines):

diff -r 3bef7a63ee9c -r b9f0c4001c11 
tests/scenario_sale_copy_product_customer.rst
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/tests/scenario_sale_copy_product_customer.rst Fri May 01 20:33:05 
2020 +0200
@@ -0,0 +1,58 @@
+===
+Sale Copy Product Customer Scenario
+===
+
+Imports::
+
+>>> from decimal import Decimal
+>>> from proteus import Model
+>>> from trytond.tests.tools import activate_modules
+>>> from trytond.modules.company.tests.tools import create_company, \
+... get_company
+
+Install purchase::
+
+>>> config = activate_modules('sale_product_customer')
+
+Create company::
+
+>>> _ = create_company()
+>>> company = get_company()
+
+Create party::
+
+>>> Party = Model.get('party.party')
+>>> customer = Party(name='customer')
+>>> customer.save()
+
+Create a product with customers::
+
+>>> ProductUom = Model.get('product.uom')
+>>> unit, = ProductUom.find([('name', '=', 'Unit')])
+>>> ProductTemplate = Model.get('product.template')
+
+>>> template = ProductTemplate()
+>>> template.name = 'product'
+>>> template.default_uom = unit
+>>> template.type = 'goods'
+>>> template.salable = True
+>>> template.list_price = Decimal('10')
+>>> template.cost_price_method = 'fixed'
+>>> product_customer = template.product_customers.new()
+>>> product_customer.party = customer
+>>> template.save()
+>>> product, = template.products
+>>> product_customer = product.product_customers.new()
+>>> product_customer.party = customer
+>>> product_customer.template == template
+True
+>>> product.save()
+
+Customer is copied when copying the template::
+
+>>> template_copy, = template.duplicate()
+>>> product_copy, = template_copy.products
+>>> len(template_copy.product_customers)
+2
+>>> len(product_copy.product_customers)
+1
diff -r 3bef7a63ee9c -r b9f0c4001c11 tests/test_sale_product_customer.py
--- a/tests/test_sale_product_customer.py   Fri May 01 20:32:37 2020 +0200
+++ b/tests/test_sale_product_customer.py   Fri May 01 20:33:05 2020 +0200
@@ -26,4 +26,9 @@
 tearDown=doctest_teardown, encoding='utf-8',
 checker=doctest_checker,
 optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
+suite.addTests(doctest.DocFileSuite(
+'scenario_sale_copy_product_customer.rst',
+tearDown=doctest_teardown, encoding='utf-8',
+checker=doctest_checker,
+optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
 return suite



[tryton-commits] changeset in modules/purchase:default Add test for product suppl...

2020-05-01 Thread Sergi Almacellas Abellana
changeset 5ad1972d3f00 in modules/purchase:default
details: https://hg.tryton.org/modules/purchase?cmd=changeset;node=5ad1972d3f00
description:
Add test for product suppliers copy

issue9017
review315221002
diffstat:

 tests/scenario_purchase_copy_product_suppliers.rst |  58 ++
 tests/test_purchase.py |   5 +
 2 files changed, 63 insertions(+), 0 deletions(-)

diffs (75 lines):

diff -r c43a5ec13cf7 -r 5ad1972d3f00 
tests/scenario_purchase_copy_product_suppliers.rst
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/tests/scenario_purchase_copy_product_suppliers.rstFri May 01 
20:32:01 2020 +0200
@@ -0,0 +1,58 @@
+
+Purchase Copy Product Suppliers Scenario
+
+
+Imports::
+
+>>> from decimal import Decimal
+>>> from proteus import Model
+>>> from trytond.tests.tools import activate_modules
+>>> from trytond.modules.company.tests.tools import create_company, \
+... get_company
+
+Install purchase::
+
+>>> config = activate_modules('purchase')
+
+Create company::
+
+>>> _ = create_company()
+>>> company = get_company()
+
+Create party::
+
+>>> Party = Model.get('party.party')
+>>> supplier = Party(name='Supplier')
+>>> supplier.save()
+
+Create a product with suppliers::
+
+>>> ProductUom = Model.get('product.uom')
+>>> unit, = ProductUom.find([('name', '=', 'Unit')])
+>>> ProductTemplate = Model.get('product.template')
+
+>>> template = ProductTemplate()
+>>> template.name = 'product'
+>>> template.default_uom = unit
+>>> template.type = 'goods'
+>>> template.purchasable = True
+>>> template.list_price = Decimal('10')
+>>> template.cost_price_method = 'fixed'
+>>> product_supplier = template.product_suppliers.new()
+>>> product_supplier.party = supplier
+>>> template.save()
+>>> product, = template.products
+>>> product_supplier = product.product_suppliers.new()
+>>> product_supplier.party = supplier
+>>> product_supplier.template == template
+True
+>>> product.save()
+
+Supplier is copied when copying the template::
+
+>>> template_copy, = template.duplicate()
+>>> product_copy, = template_copy.products
+>>> len(template_copy.product_suppliers)
+2
+>>> len(product_copy.product_suppliers)
+1
diff -r c43a5ec13cf7 -r 5ad1972d3f00 tests/test_purchase.py
--- a/tests/test_purchase.pyFri May 01 20:31:02 2020 +0200
+++ b/tests/test_purchase.pyFri May 01 20:32:01 2020 +0200
@@ -127,4 +127,9 @@
 tearDown=doctest_teardown, encoding='utf-8',
 optionflags=doctest.REPORT_ONLY_FIRST_FAILURE,
 checker=doctest_checker))
+suite.addTests(doctest.DocFileSuite(
+'scenario_purchase_copy_product_suppliers.rst',
+tearDown=doctest_teardown, encoding='utf-8',
+optionflags=doctest.REPORT_ONLY_FIRST_FAILURE,
+checker=doctest_checker))
 return suite



[tryton-commits] changeset in tryton-overlay:default app-office/trytond: Versions...

2020-05-01 Thread Cédric Krier
changeset 031aff939944 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=031aff939944
description:
app-office/trytond: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-office/trytond/Manifest  |   29 +++-
 app-office/trytond/trytond-5.0.20.ebuild |  100 --
 app-office/trytond/trytond-5.0.21.ebuild |  100 ++
 app-office/trytond/trytond-5.2.14.ebuild |  101 ---
 app-office/trytond/trytond-5.2.15.ebuild |  101 +++
 app-office/trytond/trytond-5.4.7.ebuild  |  101 ---
 app-office/trytond/trytond-5.4.8.ebuild  |  101 +++
 7 files changed, 325 insertions(+), 308 deletions(-)

diffs (668 lines):

diff -r b115aefc69a5 -r 031aff939944 app-office/trytond/Manifest
--- a/app-office/trytond/Manifest   Fri May 01 19:42:21 2020 +0200
+++ b/app-office/trytond/Manifest   Fri May 01 19:43:18 2020 +0200
@@ -1,13 +1,30 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 AUX trytond-conf.d-2 183 BLAKE2B 
0be9580db18911823fffc694ca372fccb68d2cc2c1b80f6604f92ef3e94c9e29d94be505631dd9189abf466d5662b4a447977fcea0b522d0dec650d12504374a
 SHA512 
c3d21f8bfb53c6927d1e328baf314af3d71ac79203b62eae890475c3263917507700904b4c9c7029c6f59f399673900e4dc12720ad398797246d00326e125a67
 AUX trytond-cron-init.d-2 824 BLAKE2B 
6084a7c7d1ea12a6dbff3a774598d83761c60281560e6b4d8a057103c3d2aba31c36cebd314f2f10cd76c6ecdd302ab95d18d177739a266a91f4f8a55b642238
 SHA512 
7bbb6b5b9815778b49303186e5b9981539878cdaf5d9a0f10eb5cc5ee9c4afd107b9cbe75e3e0ddf3860c5b165a8b548e722a55a2eda45c08c8254a53f9c3723
 AUX trytond-init.d 538 BLAKE2B 
9e1abe67243c8828941f5b981208dc9874d65de52113421b13676026558a3cd95fdfd8f4ad47744c91b8d02c0b25def4bf00334a26f41edbc433fb6c7c9a825f
 SHA512 
a86febe62bb7921b2808b9896e67c7c9b20c3082ee324f1562146550681c64e443e4548fdae6b782f4b84060181331eebf8165d6ef9f37baca3556c2ee69438d
 AUX trytond-init.d-2 799 BLAKE2B 
78dcf251feb3e9f04ba5014359c8da069cc54e14a626f6d9e03306008a30e4e412354c409ad7bb8beb47dfa65e1cc9eb12ab9459ea56f47e2994b25f113297c0
 SHA512 
1c6f1aa4fa8ad1da7e88e2ed5c53646802747c3ea1b4108ec51b400214eb7dd0a586548fa76d864be0087d24c1b9913343cba28339323e7a1a7fa370a8bce1c6
 AUX trytond-worker-init.d 827 BLAKE2B 
e87b93697abbbf1be85bfce382ffafe67fa951cd60cab530f64854485fa3d729524936356ec9dc9e2844addb3f92e04f73168e1f977003e1ea59e20126706fa1
 SHA512 
4d49e4b27d089462c86ecad6a7b9ba2143acbdeb60f2287305dedc8c9f8843487a8ab870e9dd9f883f4582949d4672a470d0f2498618aec54feee4db4c4d256b
-DIST trytond-5.0.20.tar.gz 649402 BLAKE2B 
f8923e5e9e700523baa62dd666921d04de8252651827526d5e374133c422c74d3f247ace60a81b10cd80bd48fe2aacb386d54bd774e79f489032d530c9c85fee
 SHA512 
1255b0decd310f172f8ad3d85acb1ee183bb5d60a944a14f45aceae472e6d0a0bed017a73a30cbf0dcf6d6d923023332167ff312b0bec4172ee60cea13efbb15
-DIST trytond-5.2.14.tar.gz 738030 BLAKE2B 
114207a8cf7d45d268f5476943979be2d7fd6e84245ca3ab91e1ee1ce0bf35980ba24ee4a017fa987be20deb63a8f66268e2b22a05c52b94abe20fcca15c3dff
 SHA512 
96abcf8a1e1e2cf4082c6b58293d7b4172d325b07ba8934f18df1c1c24fe1e09e7f82668c8b08f53420eb4abb015d1eec007d9230fa0c8bf9ecf08ce1b986d1c
-DIST trytond-5.4.7.tar.gz 687139 BLAKE2B 
135d1318f8ab7ca5422c70fd6db9bd8231b93d17264355c668cfbfe693faae44bb9e19d4ec4bc485faa238146728399d1497ec3b589d8929b8a05337c48fb59a
 SHA512 
05a3774caefa4d6b89d1623a0e637ecc40b1664f2ef6ae7b97a363befd06750e1a74c22f78478d42850fa09e5af8797f5db60e84b90866ef798d44ba5e66786d
-EBUILD trytond-5.0.20.ebuild 2798 BLAKE2B 
abb5bab19a7c6571da268b47116c7b4817b5036f86c3676f4d2628c0b27e6871bdda7111609877490515591cca74c42fcdd010544589328fd2aa9ba0addc418d
 SHA512 
9b3f909236ee8d4c459fc20621a5105364a8eefcd41fec3b2c0db4ad62615f26db09f1144aa1bc5df2da8d9d4720a2d980820d4ead95d4b29ac4bb2bbed7982e
-EBUILD trytond-5.2.14.ebuild 2859 BLAKE2B 
5365d67cbe97f899b44cc4c21be4903a3ffcad0638916ca4cb4eea27e15ea44adaaa09ba791bfdbbd0f94b23e4e25a5066b3ffb8244381b0267deb819db48ad9
 SHA512 
67b71a10e355f59d2e7026dd5b846cf805345ce2de9967c8b893d6e52d50f60977eac0588ed69f63b8dc394b2ef5928c919e7642165bc0b403c792732d57497b
-EBUILD trytond-5.4.7.ebuild 2875 BLAKE2B 
30f2ccba68ca47329a3b99100a2a497efcf5ce7ac59194319c911b70a26404094bc41036d881975e816afdce05ded67be507b2e27728fc0dac1637a8fdba
 SHA512 
aacbb1f8400d95277ca9af82448754ba19c7081d325a363ac9cc11579f97158205e38772c5773e4c61824a34d8435ceead3f9af306b42ea2d28e5c79c21e2fbc
+DIST trytond-5.0.21.tar.gz 649596 BLAKE2B 
f0a62dafab621dc6bd366fb0cc3c4e8362ecd089536d0155827c336b1de3adf3ef8fb870261d8cc0204a66727433c74e33174fa61200e2f053f07ed0772a1431
 SHA512 
c57549bf8318fd9fe30bd561a4ee6241d310bd7681e9605fd88809b8780fc001ce0ab86e704ef21968e7303456d548b41b5a4e4adbc998e516aee9e51046db95
+DIST trytond-5.2.15.tar.gz 738401 BLAKE2B 

[tryton-commits] changeset in tryton-overlay:default app-tryton/analytic_invoice:...

2020-05-01 Thread Cédric Krier
changeset 25e8c19b385b in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=25e8c19b385b
description:
app-tryton/analytic_invoice: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/analytic_invoice/Manifest  |  29 +--
 app-tryton/analytic_invoice/analytic_invoice-5.0.2.ebuild |  35 ---
 app-tryton/analytic_invoice/analytic_invoice-5.0.3.ebuild |  35 +++
 app-tryton/analytic_invoice/analytic_invoice-5.2.1.ebuild |  35 ---
 app-tryton/analytic_invoice/analytic_invoice-5.2.2.ebuild |  35 +++
 app-tryton/analytic_invoice/analytic_invoice-5.4.1.ebuild |  35 ---
 app-tryton/analytic_invoice/analytic_invoice-5.4.2.ebuild |  35 +++
 7 files changed, 128 insertions(+), 111 deletions(-)

diffs (269 lines):

diff -r fe2ccc0cf35a -r 25e8c19b385b app-tryton/analytic_invoice/Manifest
--- a/app-tryton/analytic_invoice/Manifest  Fri May 01 19:28:37 2020 +0200
+++ b/app-tryton/analytic_invoice/Manifest  Fri May 01 19:29:33 2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_analytic_invoice-5.0.2.tar.gz 24883 BLAKE2B 
3fd576ca01893351fc8aa99c4cebe229f6beeb430b1bad396b81bebb58022d0035e0f7bf0d483dcafa6fabeabe449f951295a478afa89d4dc1c2fe1f6220f235
 SHA512 
885f634827cb632cf22fb3542bb6acbfc4fb5520126b67e3f8ea403b525869332a73f927de8a91df84b1fea02b8b610525265093ebf3c8682e4eebf5fb57d872
-DIST trytond_analytic_invoice-5.2.1.tar.gz 23806 BLAKE2B 
0ca383a9c01f6340984ab89b52f8f3564c0937470c6670a55b986161c72f044055942dff01c07302f53fae44cf03bf91ff092529fa0266cb2bc6c1042b79ff86
 SHA512 
edaeb0ea867cb3e24a0c0b9741251e6b473729f7b35c1f58781da21fd17b90a050ba1d6ddd5733975ca9a1a9b0b6fbacd24b075a8f379860089db4f8bfd7bb28
-DIST trytond_analytic_invoice-5.4.1.tar.gz 23922 BLAKE2B 
4440d820b151f959c7aab09c5dface2a8792a2c913581189a7d74e367e36f95abe50798e44111bebe1699b93aeb583433019b81032635eacacb24660ffa1d2fe
 SHA512 
21f0b0baeefa86a68a58396c5c635a060eaa8bfaabf0c6c87f890f29bba5dac124c3040bcdc2f965a37f09f1e845b2944f2ae24ab44269b8d21372219bdc61a5
-EBUILD analytic_invoice-5.0.2.ebuild 892 BLAKE2B 
280c3e87bd8a1eb9ba4ad3db4592d5d249191575c8c7af8cfb67385e13b969752a17372f40af0b341934cc19706f17f9b17d94f50c474569b7ec69fdf6a88b42
 SHA512 
81e49b9a4c3cf14ddbc4ab7a45e8e54eaf1587b53088699d1e4812d514b8002b9677826fb97456d687467b33bfd18f65e450a2845afdec88e7c8caf77390b70b
-EBUILD analytic_invoice-5.2.1.ebuild 891 BLAKE2B 
11ffa62ac2d1707528c313c36316cdb66ae0a206ef21f5ce7df1f6e2582c1dd8465810761ae4260d9d04519591cab1394feff1b22796fb85e4ba19e80dba
 SHA512 
a102c49704c76ea292d8944ecf62c4047c53f0194f9f158a030e063eda81c3edbf994c9700c4d54f6cf66844a5853df71bf047e0cce2f0b1684be2d605dd2637
-EBUILD analytic_invoice-5.4.1.ebuild 895 BLAKE2B 
0e2f840836326e7753571b213fe91f5faec051dc5254bf69c0e1d5379dd742c5809a6bba90abc82d6c2edd762c480698c9fcea0152d39fb25c7fc187f36c4d80
 SHA512 
bb454b4de7e24d05bea96fc90dee8ec1d7e18e13dc4d093aedb6526894d7dc64ca56d361c30a2286d505b30cbca0ebf2bdb9552ad086b3b6cb4b96342d7a553e
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_analytic_invoice-5.0.3.tar.gz 24946 BLAKE2B 
e85be3faa833669fec536d7b3e6481a572473c82a54447bc9319d956cb4de891a1829a9d035ae2738d72734bdc13bcc2d3b7d83672c5f851ac7e5d62bb184736
 SHA512 
59d16bd2de6cd6ef424e0301646203086997a0acc309cd5c88de42cebd82bf788d168eb04546ecfeee45b6dd21a596b7df163816388635a0ffe930461d2ad6f2
+DIST trytond_analytic_invoice-5.2.2.tar.gz 23870 BLAKE2B 
4e534abd6f3fea53acad66cc39f8f51f1ff847cde0f5001559b560bad1c855fb4183e2118c26a460d23bba8e3b083e1b2a2ab6c822ed819f95308582d2c814e4
 SHA512 
e7c30747238a0bf7ec69b98458dbddc5ae546d00c6e991341dd2e45019d72ccb76ad0e342038e1b8d6f44667031bb6f419ffc63b292d2193c10fd6b4e5b701bb
+DIST trytond_analytic_invoice-5.4.2.tar.gz 24007 BLAKE2B 
16773db83f2147c45f37e481c66f02682537732756ab6042e6c3687f723c3deda2e4d3c7ca967a536416d2712d726ce7278ba2d529384081a3e4da0c0c30ed85
 SHA512 
5a47f276cb49b8be023879db931673917b971bf657fc63593d42713414e357fa688753b2e3b5bdbaf5bc7199c09adfcb6b4916d0a1018ed9c35294f07149e060
+EBUILD analytic_invoice-5.0.3.ebuild 892 BLAKE2B 
2ced2b28a6f5c6208bf03aae166915c793921a2798ea1de1b94213acfc70ee3c9d2410b3cc4f1cca8906b29c8f19026768042ccddae883f86c8303035b939d59
 SHA512 
9b732db883257bd07aa50f053869998dba780fabb31c7126a8357e2d27116629bf32f8b8058dba01c6af352416c6ddbfcec46d58d33849c9c6efca38b2ffdde9
+EBUILD analytic_invoice-5.2.2.ebuild 891 BLAKE2B 
201adff4bb27059cd2f4b6700b496d3c4d28418eec152dda3de6edc6eb8e121497121d2afd5428ee741a61e8b67667b31af4ccf744eada1b71cf658c3d68853a
 SHA512 
4fa4889d08eacb954d5ad1c861ad31dd38a0502e6f16b6996c481cc28fdf88ef01f8b3a7d9eab39ac596d799690cee8c1b62526da84ab0ed2d86dde72a9893ef
+EBUILD analytic_invoice-5.4.2.ebuild 895 BLAKE2B 

[tryton-commits] changeset in tryton-overlay:default app-tryton/user_role: Versio...

2020-05-01 Thread Cédric Krier
changeset b0b8132fd8ab in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=b0b8132fd8ab
description:
app-tryton/user_role: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/user_role/Manifest   |  25 +++---
 app-tryton/user_role/user_role-5.2.1.ebuild |  32 -
 app-tryton/user_role/user_role-5.2.2.ebuild |  32 +
 app-tryton/user_role/user_role-5.4.1.ebuild |  32 -
 app-tryton/user_role/user_role-5.4.2.ebuild |  32 +
 5 files changed, 85 insertions(+), 68 deletions(-)

diffs (174 lines):

diff -r 5046e8a3e3e7 -r b0b8132fd8ab app-tryton/user_role/Manifest
--- a/app-tryton/user_role/Manifest Fri May 01 19:39:16 2020 +0200
+++ b/app-tryton/user_role/Manifest Fri May 01 19:40:09 2020 +0200
@@ -1,5 +1,22 @@
-DIST trytond_user_role-5.2.1.tar.gz 23520 BLAKE2B 
ae654386c0e8a1721716b68f59a94b0790e4e63fbae524a97c02fd0d9e1762370c824b1197a30a7f4fe8ee24911e0d6386a6b1d6b560c2776fb1f5c064130812
 SHA512 
23ed3806e30c7c4dab6c77c67882c89ae257597e9f4ce75fb33913896bb51eb6186d2f25f90488b0cdf0e02bdcd211f1c569a079c0911a6a44c8c279313d1433
-DIST trytond_user_role-5.4.1.tar.gz 22525 BLAKE2B 
1dc1f15122021254675f0307ecbe6c50be002c867d94a24272d5187a18d6714fd7a04790921ef361635e219529597cd0b8b73ed4820b9c1e566f1237fd96d321
 SHA512 
df7614059e9d1941c140802426d572a2875c86b33443e5ec58bbf8d77d314b10262f99627275640e887ad9c3f5c216b803cf08bb9afdd1f587babf72db96470b
-EBUILD user_role-5.2.1.ebuild 702 BLAKE2B 
c34f1753e4a61b91d78f4b58dea6d17af38e4e961b529794ec5eea24f457e88210bd1a6d8f28994c0cc50e761597d9096c61e4692ddcda5892eb01d4d83ce858
 SHA512 
4b017fbc84683be631ff51b406ff04a25019a44203f72730586533e764f9cdf9a65aa632d91d438950a351ea469183db0905e730933e9e33c427f890b8ae5c6c
-EBUILD user_role-5.4.1.ebuild 706 BLAKE2B 
6a9aeb563381176e100e83fe22746a8e015fbf4afb41e467325d07479b1f566bbab2dcd9673a69a1c294c24c1d679d1dda31fc174b8d7cc1b444de14173a5191
 SHA512 
e259a0a529f5d51a09884eb98aeb1afc1dfa45bcb71cfb149ff06ffdb61d9922167eb2b5a92dee585cc3b729de4a21f85cef50f7d77faa4970dea3da5df513b5
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_user_role-5.2.2.tar.gz 23582 BLAKE2B 
249bb409a3bf337e425a86abbabb27993adfeb1a6efb96653a570060a255689d2744fa9c6a811d680d74ad6f73bda811b63e7b8346da87516a7b86c1158e9d0d
 SHA512 
46fd32db5272252daec738bea4da891df75ff69dc494f7a28d4ce81dff50ca7e484ec97d67ea099e12099b8fb7a145fdd7a92d58d0c4722941ba472244f927bd
+DIST trytond_user_role-5.4.2.tar.gz 22608 BLAKE2B 
5dec6e208125cdba0dc2f6e52e6d4b01ae1434ddd5f6bd69dedaa2c36590277705a9554ef23af0d73555283021cdd40ea269715d50c5ee154de75ecaf079f415
 SHA512 
6093f8244cf7c1c57f79f67e3f732125824ecbddbd92be2ce3ba2a78a27cf3471825ed8487805572088e77ffad6a3843f90e4c1e85da1d4f70637a3a211a2367
+EBUILD user_role-5.2.2.ebuild 702 BLAKE2B 
10a29b187390827461b9abfc9273fa20213933aae5c8bf18487eb5f5c41a3abf3fb961b0d9158c5df2a8b884e98ced91cbc0908eda280e5fabf7aa63a5e4ca5d
 SHA512 
509640b188f122cc8d88ef088eeb5d4f4e6eff3a22e09149876e55079a6b862d38044b1cef441a4d317c404c4046042fe8aabc1ba68095a7f77743e8b005dea9
+EBUILD user_role-5.4.2.ebuild 706 BLAKE2B 
c9965c26b43f463424cff1d10f4d4a80f3bf9f642b90a4c11548be3391050c8815420a9353cfa48e3fe25f5936b87aeb230c9b58a36db32df04d6260d9b64f0c
 SHA512 
dbd62dd8ee8fd2aba7cd07f4157a4fc54c5b61e12a652585ff4118028279bbba43137eba5c0b3e453b41ba9bf6d9bda289766af2e375a1a7887cad9c10784410
 MISC metadata.xml 293 BLAKE2B 
d8a5a8cfc8b3e88b4e2e8cfffcca51ba809d59c4acde7301836369e0a5706b60c2a1ea19f318c84c9b4e9bd7cdb6e7854c4b43e848067576b415f335dc3659a6
 SHA512 
420ebcdcd3f8967912435c39c2f6d172e08e207cf1d785f474c24b444976009cdc0dd95cb7f5e7b8fa67c4ff37a257dcaa1de6981e3b1d44a227e77a4ba143e2
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQGTBAEBCAB9FiEEdP/VdIYNMe45RAljV09u/05HdRcFAl6sXvhfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDc0
+RkZENTc0ODYwRDMxRUUzOTQ0MDk2MzU3NEY2RUZGNEU0Nzc1MTcACgkQV09u/05H
+dRclLwgAolX8KgAIOuUutofZia3vdFfj5xJCdLmCczNATrHtZi0UTpAyXFWSSOFR
+GLq2qOZEbTVTdLcayxVZ8IzHEyxFwVLfeFmhpJjDwK7ohnBg77RjEX6Yi3ur5kDX
+jpsl+O9GwjRqgV3AHP4wtsF3qtjCC8G7yNCYbzhZB8biCU40UOftXWyqidvFAOK9
+Qy1V28/T6hQAl3PzvKS1x4xph69iK2dD36eoZxGN9Sie5ZL6W+gPv+di/QXf+YKQ
+Nq7A8GMk3DlzgsHEU+r5oUtYSD9Gy3TDqD6ixnPvaNW2KK3PQnYpxCodPccqbBnv
+JqN3cagHdPPAo798lRy+81MzXE2QSQ==
+=t1zz
+-END PGP SIGNATURE-
diff -r 5046e8a3e3e7 -r b0b8132fd8ab app-tryton/user_role/user_role-5.2.1.ebuild
--- a/app-tryton/user_role/user_role-5.2.1.ebuild   Fri May 01 19:39:16 
2020 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +
@@ -1,32 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="User Role Module"

[tryton-commits] changeset in tryton-overlay:default app-tryton/sale_complaint: V...

2020-05-01 Thread Cédric Krier
changeset f44b5cc4f433 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=f44b5cc4f433
description:
app-tryton/sale_complaint: Version bumps

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/sale_complaint/Manifest|  29 ---
 app-tryton/sale_complaint/sale_complaint-5.0.3.ebuild |  36 ---
 app-tryton/sale_complaint/sale_complaint-5.0.4.ebuild |  36 +++
 app-tryton/sale_complaint/sale_complaint-5.2.2.ebuild |  36 ---
 app-tryton/sale_complaint/sale_complaint-5.2.3.ebuild |  36 +++
 app-tryton/sale_complaint/sale_complaint-5.4.1.ebuild |  36 ---
 app-tryton/sale_complaint/sale_complaint-5.4.2.ebuild |  36 +++
 7 files changed, 131 insertions(+), 114 deletions(-)

diffs (275 lines):

diff -r 1a95b4d3057e -r f44b5cc4f433 app-tryton/sale_complaint/Manifest
--- a/app-tryton/sale_complaint/ManifestFri May 01 19:33:36 2020 +0200
+++ b/app-tryton/sale_complaint/ManifestFri May 01 19:35:51 2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_sale_complaint-5.0.3.tar.gz 40445 BLAKE2B 
66ef8c720d39aeb41610e18f9108b6c58af76ced921c2edf1af11aee86393e922996a6be0a2d2b1d77aed9aea4eafc872e76ead74082750c2ef044b8067abeb6
 SHA512 
51553179cdc470823da37100cac2ef52d9d2bab11b87903700ad10521869362653457e8fc8968840afd494ca94e192e27377a3e21944be9a0b4fb5a43ebe3e0b
-DIST trytond_sale_complaint-5.2.2.tar.gz 43058 BLAKE2B 
988f6e635290512496e580e6673f8d8b1bc8d6bbecb1dd5a765b83daf00de80b492a297b563ea3e84e48df0bf6427398af0febe9f0cd41d874ac0626f6c1
 SHA512 
c40ab84164eeb342fdff95527d8c75ae8eb8fd33477c565ed304450a64a450d5d3d7866c477b44b868a0df7e3ce8b711210f2803fe1f25bd79b87b88e15983fc
-DIST trytond_sale_complaint-5.4.1.tar.gz 39789 BLAKE2B 
dae42242ed420a1f17537f377d3837accdcf57d419346b9a72ef6bcd978d1f841f25d6ab4d21098e2055bec239ca07656a19ce471a2ac3d873cd03c53b4ba79b
 SHA512 
0ee394b0c2cac8eb10ed832256b7afb2eb78d798f04b4f10989c085034abc1068bb065384fe605b39fa920b1cc2003ef91c5600d66feeb0f2cc3a8e4fdc2033b
-EBUILD sale_complaint-5.0.3.ebuild 941 BLAKE2B 
eb44ea96dbc2cc7825c4b717bfe045b1552ce76ced4f542f9f83b6c88408e1e93952d0f164d61e84e0f622296da1fe28c4ca84b2c41a9b63dc46c114f709572a
 SHA512 
8dacbaea401ccf42ebb32cc02f27db0352b1c789afc33d93b2ef0391b8cd70a5122652fb8eddc1d99d47dcc4712538e87710e04814af08c1a1a78bb84abeed06
-EBUILD sale_complaint-5.2.2.ebuild 930 BLAKE2B 
582927525e05fa1e76a075c11a93b54b087f922e2ef24773b5e5cd4d89095781e8f14ff49dc4c3eb9ef341995cadeb3e05645157d4904321297ffd2edfa2
 SHA512 
70f8dd413e407608aeb5e1074a9b215e4eeaee8c38aca4e7c02ede42e8a0e3c236d2f2017df9efde3f589cbe75bfdf4673a4c7b221867b8d263416f6697fcb3c
-EBUILD sale_complaint-5.4.1.ebuild 934 BLAKE2B 
9e45c259ba6728a94abd16280e536dc4f11641b9c7ceee9d92e5f5a0eb3968a769d12141e76e46cb2f482644520797d3f3be1e99e26f3b6ee7080c4de99ccd4b
 SHA512 
8b45d2925ce18a9135380261d15fa4f5e25fd71eb39eb34d6fc3e3204b7d70415ceef8a556189c580f71208346f127ebca53e19d46d00185b4b31bc3d9285db6
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_sale_complaint-5.0.4.tar.gz 40504 BLAKE2B 
009dd34a7b90a4cc2dd902e1f0dd2b92722f246e9fc5e60756c20b60f7a78aea877f428705a9e882d43fa67b269ff417358ae01c2f7700119c0c21d24ca10a2b
 SHA512 
65e5f1e9293dfe476b368c189532c352b5a47f98a845bd6450f546c6769ef36e7b5af87a0bc2fe63243bdd6741112cd08e911edb7c0571af2ddc0aeaebc419cf
+DIST trytond_sale_complaint-5.2.3.tar.gz 43188 BLAKE2B 
f20851e5d23ae64b8be6f484d277883ab850d3f38829e19a25c6b3f0e75e77f4020803949ad4de1dcf89ddd1f873c529bad7907b278ea41cb6208092ab0d2eb7
 SHA512 
098a33f9923590641781eb38b53a176ccd8a987aaf13253c40228025b41cf3cbf3e5afde5345a2f2ce54c9ad69fb095d546ff0a6a8e9fb0a593aacd97f74
+DIST trytond_sale_complaint-5.4.2.tar.gz 39846 BLAKE2B 
bec67e449f955cf7a1c307fee50004985b6981da550de3f86f0e254f1030266c44f553125f9cc58201ca81fdcd6994ce456bbfffbf526146a7535f6edeb8f128
 SHA512 
d5a930d09661be0dd7b091922948fc4d0d97269eef0eafaeff1fe2da90c387cfe7bdf84610ec74cbd4dd23e1d1ee571abff84ddb66b094c336fb7a6dcf23aa2f
+EBUILD sale_complaint-5.0.4.ebuild 941 BLAKE2B 
e0d38c589d338717c5905e6016ddf3bc878c47bdc12fec75a07d0a0f10d8d5ff0f49822cdbe2c86726502f519bc844457bebdb3b12f01b6030be240b26ee0a4d
 SHA512 
f6169caaba6a2700d4780a45ae7fd6d1381cc13c2a42830ffd7cd699c90382f67d8493d923f43c8dd191e8e4dfefd3ad6c668b3e8773fb81b66c443ee5ec8f1d
+EBUILD sale_complaint-5.2.3.ebuild 930 BLAKE2B 
75467221951f7064a5134c39070c9a4f1d1493b19104c3bbb7e2f72895cbe1c8dc101f12342c588e2ef7c8fe723f62888e9eab53a6c0732c112bcb73681d97a0
 SHA512 
0adc96ee886575ec3c7cc48785b68c6eed68af2688192c37cf65f892dc39f5febf2c78b47348b83b48564109596d094a6dc49f1b9a363098424da5e67eb7b8c6
+EBUILD sale_complaint-5.4.2.ebuild 934 BLAKE2B 
41f8b61ad4932d4ad8d7dd5c7844c96c4e0a14d5da1b8fd65098952dd94aec6c13ac73ecf062d3b24dcb7acab54d0df302cdf8729caad0f31664b277be8895bb
 SHA512 

[tryton-commits] changeset in tryton-overlay:default app-tryton/account_payment: ...

2020-05-01 Thread Cédric Krier
changeset fe2ccc0cf35a in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=fe2ccc0cf35a
description:
app-tryton/account_payment: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/account_payment/Manifest |  29 ++--
 app-tryton/account_payment/account_payment-5.0.3.ebuild |  38 -
 app-tryton/account_payment/account_payment-5.0.4.ebuild |  38 +
 app-tryton/account_payment/account_payment-5.2.3.ebuild |  38 -
 app-tryton/account_payment/account_payment-5.2.4.ebuild |  38 +
 app-tryton/account_payment/account_payment-5.4.2.ebuild |  38 -
 app-tryton/account_payment/account_payment-5.4.3.ebuild |  38 +
 7 files changed, 137 insertions(+), 120 deletions(-)

diffs (287 lines):

diff -r a5f00816c06b -r fe2ccc0cf35a app-tryton/account_payment/Manifest
--- a/app-tryton/account_payment/Manifest   Fri May 01 19:27:37 2020 +0200
+++ b/app-tryton/account_payment/Manifest   Fri May 01 19:28:37 2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_account_payment-5.0.3.tar.gz 49574 BLAKE2B 
ffd009427e131eaaf3faa8c924578d626ef16f9295316a6cd0cb9ed04cbb77c354d506c35e30712825a9c290ebef3ee463cc414ca0e5ef21c37ce3e6c9351b21
 SHA512 
b808d26167466a1af7e4452eb509d7c96c6b44cbb044b28a5774f1a56cfe7d5796d5eebefc6c6ac74dc7078096dd697ebfadf9a775dc7c974fef9744a815c7d3
-DIST trytond_account_payment-5.2.3.tar.gz 54221 BLAKE2B 
531d58c928a228a5f98b748f599f31223d820634b651058fc17c15091622f72c6f4940a113e9b5a63f9ab7ae7c88c41b93c6dba76ecc542ef1da6f9fa225fb5b
 SHA512 
a9b0635157f2fbd93720b0aa12cfafce703fd68aa691aa230dfb47e68e845d5ed83da411c613d32c8a1b51925e29839671fefb5700ab0a7b5e6f24d37c7722f9
-DIST trytond_account_payment-5.4.2.tar.gz 50978 BLAKE2B 
6979b4435951296535bb345e11fd29ba1c248ace82275de7ced223f03bcc86723f6b0beaf9e44f66b1a772e8b08601ede7fc74f32b437bc53bca03202e46c63b
 SHA512 
98fc2f765bd75f14bb9ab6a372162abf20991c4b4e9fea310cd9fdbf42926bfdbbe5dbea67b38e89143dfd717fcc6b04d6f0439bac326af946f4bd4bd92304a4
-EBUILD account_payment-5.0.3.ebuild 1052 BLAKE2B 
ce1c0cbccb451351eedd243ee5f7af09ad17507b5947d0879c8b2530f2b3635ce08599600d5509cbe6c2e4919e716cca7ca385b51fa39374d33623b9cacaa309
 SHA512 
7fd8f908fc7155c8e09f57c971fec836af124084c31ae33f8fa9bed82fe3229d8b94f5f58172e0307aa9a04bf5f3b86a716e7bd4031103fa557689360aacc0da
-EBUILD account_payment-5.2.3.ebuild 1041 BLAKE2B 
f1fea026868c34bbfd802e98635953829991c34b6d35cde5dffe43c04dc13b6cdb2905e66bd8bfab31d6f3271e0c06be146fbe4df49374b6dead5d979f09a15d
 SHA512 
c3516561a2b5940faf1b5d2fcd30bd6bc7be185351b4975c18a783f78187af036a906874cc2baed3819075b16cb54fd614aab3c99da511bb557bb94c14961a6b
-EBUILD account_payment-5.4.2.ebuild 1045 BLAKE2B 
95b09a45c9e15634539c74bcd3a7a77568307b82530b347c310cd5b602fb0450ec07542d7ccfe6ff92e0f804356564dc1ceb6a1a91dd18b26d0fafff0690c69d
 SHA512 
71d3c582651d07aeebe09a66e102dd5b632e0e6d65d25b2dcba8e55702ca374e7092eea1bd9584985d968ee1020c7a263c08a59dcf4720bbcdc513a1c7bdd419
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_account_payment-5.0.4.tar.gz 49613 BLAKE2B 
dec8e87fa8aa639e0b3ca06078893ce2cfb9824fcb34ac3dc4a67e61538c336bcb075e428da13f430eb71a4bd2e0cd9b1749ee284795293957213ff9b2f9b6a0
 SHA512 
124150b283661dee3ad9f225f8c2d729710be9a1fcb54f58d68c5f0e2b7d6315100e727e9dbeb79f4a7f9d5460dc00cbd274dbb7b7f2a1540e5adf602d71fded
+DIST trytond_account_payment-5.2.4.tar.gz 54266 BLAKE2B 
f9f604429c17781878408e131b9a3fe45f99f4816f3098802496914dda1996c903849d65cdcfc111071a42aea224e2ece307a2c00dd0b7a19b01db9683254d51
 SHA512 
024f8d4a8e14e0350282bf0703783f5f9ab8da121392acc903776a23f684fad506d4def16b55dcd20893ba35ab39375d7527cbd5eff23f9f69a832db158ddace
+DIST trytond_account_payment-5.4.3.tar.gz 51011 BLAKE2B 
b6354b353f566c410279a615d5630603137c8891a75ae5d23a955a2dba90d6e03b8f0fb2b2fd79e63de56850a78f52becf36acb6d33ef43f71f3f0564da60b92
 SHA512 
2ae0666acf208f7e5c67cc677305538c3701cefcc895b5a261888bc9b24a6b92b00dc2dbd4410e85e473881fe83228454852f9b95155d5823190f61617d5102d
+EBUILD account_payment-5.0.4.ebuild 1052 BLAKE2B 
d944580fa06c07caadb0179582c92aaa821975346ddf16bd39c0f1fed659374a9ee19b0d091f6d7f7afb20e86bd867d6670597888d28af63d2fd16cce0185876
 SHA512 
8edbaf462439ab3ff8ab226e5562573bda59ad834bdd43bc777babd5833b046870fcf61deeacd8d0bfad9fbc745661df5ec08f66a30d90a3af016bf4c215dd72
+EBUILD account_payment-5.2.4.ebuild 1041 BLAKE2B 
f1fea026868c34bbfd802e98635953829991c34b6d35cde5dffe43c04dc13b6cdb2905e66bd8bfab31d6f3271e0c06be146fbe4df49374b6dead5d979f09a15d
 SHA512 
c3516561a2b5940faf1b5d2fcd30bd6bc7be185351b4975c18a783f78187af036a906874cc2baed3819075b16cb54fd614aab3c99da511bb557bb94c14961a6b
+EBUILD account_payment-5.4.3.ebuild 1045 BLAKE2B 
95b09a45c9e15634539c74bcd3a7a77568307b82530b347c310cd5b602fb0450ec07542d7ccfe6ff92e0f804356564dc1ceb6a1a91dd18b26d0fafff0690c69d

[tryton-commits] changeset in tryton-overlay:default app-tryton/account_invoice_s...

2020-05-01 Thread Cédric Krier
changeset a5f00816c06b in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=a5f00816c06b
description:
app-tryton/account_invoice_stock: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/account_invoice_stock/Manifest   |  29 
+++-
 app-tryton/account_invoice_stock/account_invoice_stock-5.0.2.ebuild |  32 
--
 app-tryton/account_invoice_stock/account_invoice_stock-5.0.3.ebuild |  32 
++
 app-tryton/account_invoice_stock/account_invoice_stock-5.2.1.ebuild |  32 
--
 app-tryton/account_invoice_stock/account_invoice_stock-5.2.2.ebuild |  32 
++
 app-tryton/account_invoice_stock/account_invoice_stock-5.4.1.ebuild |  32 
--
 app-tryton/account_invoice_stock/account_invoice_stock-5.4.2.ebuild |  32 
++
 7 files changed, 119 insertions(+), 102 deletions(-)

diffs (251 lines):

diff -r 8094a102edba -r a5f00816c06b app-tryton/account_invoice_stock/Manifest
--- a/app-tryton/account_invoice_stock/Manifest Fri May 01 19:26:05 2020 +0200
+++ b/app-tryton/account_invoice_stock/Manifest Fri May 01 19:27:37 2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_account_invoice_stock-5.0.2.tar.gz 22585 BLAKE2B 
16faefa13bfa436fd1c70f4fae36c31f935119ef90dfcd38e2673e95fc8fa9ecde312534ebdc48930c188b54e11fe29748bf5c616871135788e453bb455fbf97
 SHA512 
d534de6747b9a1253b62f01a1ce8feae1ff2cedce82b18d171d0011623e5be372736d999a162be8d41b986ff4ecf579db9563069ef2f68ec4e1d55bf01ba9705
-DIST trytond_account_invoice_stock-5.2.1.tar.gz 22315 BLAKE2B 
2c06d4973912c69faeb2001768a76a7b936681ab8b8fdca77e322c2731de008eaf5d3cd3c2c63bd9d9cd50423d106216f93e80a468ce39f1cfc76b926bbb878a
 SHA512 
0b696d3f4b2136a9de963506efeaff6a1061df2a80e7df9e6d9b3ea865777e3c6e32df282af7547bd826e4998eb18a242ac110e9fcb4064337f2de841bca5825
-DIST trytond_account_invoice_stock-5.4.1.tar.gz 21241 BLAKE2B 
4820db1ac0915e090ef32187fa120299146f1a12e1b9bdf09f9b2be458d026184955e4eabeed570583573cc7e4eb7c78223438fa137873c0bbb1fffc23c75e11
 SHA512 
17b77678d25bb37ee7fd31b8c78374f68fa0efcdb8da310d33512fd8cbfa976dd071901667b89d7c7ded41fdf2e657fcf6429d24bde03d777ecff4426c0ce9d8
-EBUILD account_invoice_stock-5.0.2.ebuild 837 BLAKE2B 
a97dc79a628e8fd88bbc035b649ec1a8aabd5e3f833e3a69bccd115c058cd68bd00cef4c7897182799d0d1696374ddd62e04819f4f0c58045ec3f0839a57174a
 SHA512 
09aecbba8d4c6a2cde9b6956afbc053be6dc4f088325381618bec407b0ecff1b182ad5c439c5e5adb7c01ee09af169f7dbd0778ce182518988340b593b0427c1
-EBUILD account_invoice_stock-5.2.1.ebuild 840 BLAKE2B 
a63775986aebe1927c48ddfd8646e39ab39950c1691c623af827655305f162f999344809e43740437a55cc2be901c4c7a1a0d005232b06688a4ed3348a9cc13f
 SHA512 
a017d98ea32555b366ace209e9f911328501f9af2a5d94385b75216070cc29607a0cf9647a7960208683a36e9e2fa6a88089397094dd455ede04be128c54296a
-EBUILD account_invoice_stock-5.4.1.ebuild 840 BLAKE2B 
8284a5d8de8088951c69f4cbdb8174625044de29ab3eebffa3f4eda877216bf9d586b2ce869ee54222102d89cd3b83d9e742aa21b358d9cf056323bdb1791112
 SHA512 
7a7be8d423599d73ea931add4374351bf9c58158845897a6c4508268d9753c1de05fa79e70f2d6397772b22c01ce40b2778dec595ee7f62dbbf3d67e182be9e4
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_account_invoice_stock-5.0.3.tar.gz 22733 BLAKE2B 
e1303201d28d267d72579b69cf1cbe0acc1416dfa9891ef8a3f911157ea22f9eac9a6fd50d16a45dd3ff5131ff5e3cc7e4ea438f1dac4c4ddcf832e2205276b3
 SHA512 
6538ee20dbf9858c7f1a07e05a4d851d4a33d7f6f701ac2d07c6a5900d2f4ce8b38e9359da737bd4a5656dbe04da0b90a9132727e17aa9e218fe80a7b97286dd
+DIST trytond_account_invoice_stock-5.2.2.tar.gz 22465 BLAKE2B 
a1d08512be6a67dfc99cdac1f48d16e884950ce58d62192a27df9dc440a096ffeee73e22962fab91ec92a25006f6537124cdbddc57c95acb513a0c8e1fb8
 SHA512 
1d3ca94955f63405e7137fbe8fd4d5458d1dcdfe1fb4bcd3935f6af342d7f0d824a44dc5699ddf9ff3bee9884a4762c59525d33c359d426d1347109dd991a455
+DIST trytond_account_invoice_stock-5.4.2.tar.gz 21389 BLAKE2B 
8e2fc7599ef4a3902203466950e8eb7840c992664d6d5081a8afb3e9a0bc3ef132a576cf411c7e1f48f26fdcb59c32430ca309660a6f1bc83ab374086a9f177b
 SHA512 
2beb15027912a75815c38ea2c0d2b5444626e4997dd447a2bda18e90967ef9aaec95ae63743444ef2025f8a406d3d1764f213d2894b2f46ffbc3f20448682f45
+EBUILD account_invoice_stock-5.0.3.ebuild 837 BLAKE2B 
4e5e1840f59db041ab7a899753f78b19e01f0b3bc7f156476df068b0ae67f6e942a15efbd4cb0715ecc20ec2c95dba0c544e66b5adad1ddac533e5685bf0cdda
 SHA512 
796a2eb96f7aa802e6a41dce9dad1296131e503bf102d72c542c379013fe6561d1b0d0a57b5d11d46cd8c01f0ad09804b1c8e018eaacb386424b5a6f52194813
+EBUILD account_invoice_stock-5.2.2.ebuild 840 BLAKE2B 
d0cd1084f64dc5687043b4dee1843a40d466f2eebfe269042e3e7eec6f409638b2047e50a52beb45e5a4b57f7e0de2c33ce384d29176cd5a89bd82b3ef907a0d
 SHA512 
4f11e6f02a026f280df5c98abd2850a8229348decf939ea5a20dba471931edcbfe9a144e09f56ad75a3867f1e4351e1d74270c950b1417e82301211c847ae780
+EBUILD account_invoice_stock-5.4.2.ebuild 840 BLAKE2B 

[tryton-commits] changeset in tryton-overlay:default app-tryton/purchase_shipment...

2020-05-01 Thread Cédric Krier
changeset c4f36adeb88a in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=c4f36adeb88a
description:
app-tryton/purchase_shipment_cost: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/purchase_shipment_cost/Manifest|  29 
+-
 app-tryton/purchase_shipment_cost/purchase_shipment_cost-5.0.2.ebuild |  39 
--
 app-tryton/purchase_shipment_cost/purchase_shipment_cost-5.0.3.ebuild |  39 
++
 app-tryton/purchase_shipment_cost/purchase_shipment_cost-5.2.1.ebuild |  38 
-
 app-tryton/purchase_shipment_cost/purchase_shipment_cost-5.2.2.ebuild |  38 
+
 app-tryton/purchase_shipment_cost/purchase_shipment_cost-5.4.1.ebuild |  38 
-
 app-tryton/purchase_shipment_cost/purchase_shipment_cost-5.4.2.ebuild |  38 
+
 7 files changed, 138 insertions(+), 121 deletions(-)

diffs (289 lines):

diff -r ae00d27167cf -r c4f36adeb88a app-tryton/purchase_shipment_cost/Manifest
--- a/app-tryton/purchase_shipment_cost/ManifestFri May 01 19:31:33 
2020 +0200
+++ b/app-tryton/purchase_shipment_cost/ManifestFri May 01 19:32:56 
2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_purchase_shipment_cost-5.0.2.tar.gz 26527 BLAKE2B 
cfc59d51e6308bf8ebe7b300309e5bbc4293406102aa0fb544f5b6f231c13f3deead1037bf643899e8abb2d1dead517722ef26dd4031f34e9251000f8dc8d87e
 SHA512 
3483fcba4047c2d18aec1ca5b9ba74facd4c3a1da700da674c15008d985e9fae8a85344b84653811d494ca5a3997a53bb121b8f76305211b9934af8b68e7a96d
-DIST trytond_purchase_shipment_cost-5.2.1.tar.gz 26561 BLAKE2B 
555f8ef1732b107c4a985d838771e12c7b8592a2f84f837cedf9556aa2747d24972f246a1cb0a098a03f06ef1db8c614c2c902fcd5076eaa3a6dafea16ac63bf
 SHA512 
ffb85924de62746f93d7127c494b98be5a136ffe850192b6efca9088f3ab5ef323eb8f97c5f99602cb0af96dea92f922e36fb22d8e1af2bc76ebab6557494787
-DIST trytond_purchase_shipment_cost-5.4.1.tar.gz 26703 BLAKE2B 
593b18f79c2f98f5006840ba6f2d6aef55914ca81547e13b802a9fdaffebf172d974afa8c27d8b1024a821287e05c9c1d672f9a179e149125bfd0a0d3f121fa9
 SHA512 
b32c47aac886e6868a3a952bec3a8594b6f494b4ae70c997a03fbcfed3adfcd71550b1e8a5a82cae0dca698348d3a8cd4e3fcc4b458197efa866e0e611c53f14
-EBUILD purchase_shipment_cost-5.0.2.ebuild 1130 BLAKE2B 
d39342d163da872a66b96373caee51122b6f6387c98868c701077820045591ab4573f23a06bf3c0dc39e74913f06adac366a63978a285c3900d07af90906493a
 SHA512 
9bf75644779a63efca9cb27a718b062685a29b2ed8d577fe028138ab2d78ddf2b52d6925a6e0cff4ce9624e9426ddfcd294a6c9af07f0124453741de93dd7adf
-EBUILD purchase_shipment_cost-5.2.1.ebuild 1083 BLAKE2B 
eddbe15cde3ed532e7fb3010563867a4752b87db15ff3f1b3acc3ef8e1103a27f821da89972cf53a77cb51688a1a18443b22a88a96739f47d3fc50b7ff9358fb
 SHA512 
f33811e792a75056505a599525e5430458141c7bd105d7a8bc888627be00b3ea094b2b61846505bfca1382e1474326984693039807a34ab2eb0270dee989c561
-EBUILD purchase_shipment_cost-5.4.1.ebuild 1087 BLAKE2B 
46e87a4321b5ccfce6a6a66276e5e81a62a2af33b681403c9092347437a87797623553988501dcfd88969931d11dd079ec2912a8ed71a23ee02f417a907cee48
 SHA512 
cebe5c038a1049dee39509cc0ada8bda9fdf26ae0c37be8054968fd1bf88e3e7119db82e4ffc8b78f2121298f7e4634d1a3efb2fbd0e6c5421fe117354fe4e99
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_purchase_shipment_cost-5.0.3.tar.gz 26616 BLAKE2B 
4b0ff8ab577a5e5fc540d0afa3fe628ef0f0f186a1d3c5e72ceb8e7f5785c787fed52a4a79b3b39cc0cc2c49446bcd53437a89899d4b194b20c2e696fe3d68c4
 SHA512 
536b0b8b64f058188ac95ddea0ca742ebff551cb8cf74ba548bf38b216ba8dde6b044c25c78ff2a694d0197f3ff80d68da63e731eb93ee3c00e943b1acf966b5
+DIST trytond_purchase_shipment_cost-5.2.2.tar.gz 26627 BLAKE2B 
6ca4a4c96f498d8d0bf45a18d56568267213470315c474c81aaab9258df37e4b0ca758bef6ada54dee647e09592e6ecf3f69f72eab7a593bccfd27a98237045c
 SHA512 
6d1ddce83d3fccec9b827ae839c21c8a9ef915297b62d332d9019c4f37f85fc2ccdf2ce4d61d61c14bfba0f734e8030cb90dcd5eed0fdd4df78a0a8d1733f824
+DIST trytond_purchase_shipment_cost-5.4.2.tar.gz 26811 BLAKE2B 
f05c22b6f75fe4cdc28283359143f0caba2a25bf141826d78d257aa0057a8a5202298b9b522ec22ad53e4f44afac41815329d9a1adb248814ff934b296211bb7
 SHA512 
297b46e6e5d80569666839cc52d9f7f9b463073d688fd883c9a15050f88851002eec7e29a0200f2ed2dac3f1ecd0cf410d23a03fa0f3ae3fcd85fe0c3f7ff56f
+EBUILD purchase_shipment_cost-5.0.3.ebuild 1130 BLAKE2B 
0a12fe973907793699ad287204c36f4f1486fd1290c225fb1cf6262a82675328eaae23a6a809602cd7379b4486ae66df55deb8eb6b52e8ef0b9e43584408a6a4
 SHA512 
259bb0299c4b959085d0d51e249c78de1cd5971c90e1dcf6e074a7aa440c174d9033797d80bc64b4ec439ce5383139140c87833d446769671f0c94a5bdf5b122
+EBUILD purchase_shipment_cost-5.2.2.ebuild 1083 BLAKE2B 
129bcad65410514d96f16861764d519f9f6a4f3bdecaaa5b843b8bc0a559b569459fa7caffb48a411cb6ddf5461976b57c9371d5402def59900b665ef10ca12f
 SHA512 
5116cc8a7e70f4fc69f6f5f8227a6e9b55e7d13ddc007e59dbfb15a9d74035a0b33a8c5702f96df7e79eb69c3b1a0958cbcfbda254e76ed5a9af3b80401cf40a
+EBUILD 

[tryton-commits] changeset in tryton-overlay:default app-office/tryton: Versions ...

2020-05-01 Thread Cédric Krier
changeset b115aefc69a5 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=b115aefc69a5
description:
app-office/tryton: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-office/tryton/Manifest |  28 +-
 app-office/tryton/tryton-5.0.22.ebuild |  47 -
 app-office/tryton/tryton-5.0.23.ebuild |  47 +
 app-office/tryton/tryton-5.2.14.ebuild |  48 --
 app-office/tryton/tryton-5.2.15.ebuild |  48 ++
 app-office/tryton/tryton-5.4.6.ebuild  |  48 --
 app-office/tryton/tryton-5.4.7.ebuild  |  48 ++
 7 files changed, 157 insertions(+), 157 deletions(-)

diffs (353 lines):

diff -r 1f32d6165632 -r b115aefc69a5 app-office/tryton/Manifest
--- a/app-office/tryton/ManifestFri May 01 19:41:24 2020 +0200
+++ b/app-office/tryton/ManifestFri May 01 19:42:21 2020 +0200
@@ -1,25 +1,25 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST tryton-5.0.22.tar.gz 589065 BLAKE2B 
9b0850dfd1d6552b3cba736b462ed3a39f2f3bafd40ee3a167b601089f2dfc8fa63cb4c5ce1d36ba81df4976318e0b7e9fb8dda70f68a7048bcf2af433109d57
 SHA512 
a9fd2328f58a0c846fcb9d24539d1b1fad48fcf78bf17c6943fe8809a9b397c94283672a416510dd398a4e665aa0bb5ae911a59ec6c6517ac7b5ed8d9f414327
-DIST tryton-5.2.14.tar.gz 542360 BLAKE2B 
269800111414d587847fb2dc1d8bc9f1d79b6681fddd0c367a8978b041a6270d62fc6aade50e8687aa630c870139fcc58f74f0d4a5e05569a2200f59edd9c45a
 SHA512 
5298147cbe5f6549560a876bb4e3e69a43f1d1cde523de09ece01b9e966260a9258d1f890fe41030612e0e678c183cdfbd77f2235d319f040e9f568076cc7189
-DIST tryton-5.4.6.tar.gz 504396 BLAKE2B 
a0c825a29d005a807127d07e534780e9c7ca30450ba288f3386f27a12a521d818af59d7b35a4748c1c8becf133f824947454bc94020dcd7191542c87f1ef97f9
 SHA512 
7b03cafa95d8209d3a70121e44d2df71463d62e93b42608f512b4c373ebdc3cb12fb9e84d453c2ab468d23565d20f67d3217cebd5134950734f40473383834d6
-EBUILD tryton-5.0.22.ebuild 971 BLAKE2B 
c9823fbc1a352501fe2cb55235c849fbe565311ef9faf7365cbeec350eb5561998877b3ba03a0c886723713b77820f7f1c372744eaf2c9b8a200df7069612b46
 SHA512 
4009b9b2afde44cd1494392a069f8599893714cde1a0fae40597c3c022d69f54ffc17280947d7e5dccc4cec648db863ae7998f80543a63fe8f6b644c3bfd026e
-EBUILD tryton-5.2.14.ebuild 997 BLAKE2B 
659b49658297569fe81004ff051ba532a2a00cdb933e268d166c90354484a1d278b9fa35a9cb79697f6f3636fe48f758871c1eaae85214d90f84f21f9c316117
 SHA512 
351fba06e642e16f8c25fbb73e7fe78790233250b4f65d475aedceb09f6c0b04c087b2da2f654d2b032871836bb4417517a8b136b008352c3167fe7879d676d8
-EBUILD tryton-5.4.6.ebuild 1015 BLAKE2B 
a2e58d43638660d917a3b9a84a0bea0f7cd892c241deae34ee322490f43c0795ea71af11c268d2f17a0ff733897042f22b9c697a0776a38a87f026d07159540d
 SHA512 
ec375c3492c5b47a3e1b43df879a4c5feafd1b9a03a9acacd06dfc808a2053deffc34f06e7a13d669b3f7bc9bfe8cffc88c8c31f0daaaba96d8e110baaa78cab
+DIST tryton-5.0.23.tar.gz 575897 BLAKE2B 
0a896be9ef85cf4c1f8249991aeea15856efc5d004bd17069aca163795fc6b367620f05527a3c19fdaf25151b306d50811179079681e3e14d20234c45bf8f726
 SHA512 
e7ae5c020489dc49f50266c0b64bb3746b50465c2b4eb9826a9801ba26420f65e027134262ac5e9bd8256c2ff5c82918d6a1ded3b0d04cda990ce4ad3e4b5077
+DIST tryton-5.2.15.tar.gz 515622 BLAKE2B 
28ef3869173bdb4b9b98b96535d2aeb588872d13bc81106539b1fc7661ce86a57ffdb30ca64a74dec96e16a7df93ad50113766dafa1e57b76fc9bb0e229ad84f
 SHA512 
214b39d9176382f5324beb9312916cfca34473f2fbd110e488b194192afeebee41eafc1d158c990a8c1df08cc6d507c03fb85f47ef1443192daab8ff6577d0bc
+DIST tryton-5.4.7.tar.gz 477920 BLAKE2B 
09a5c2d1214ba1f5f3f57495c48db47d464ebe41b3bc90d982b3af6fb04ab8764b5be5b6cb872b2ab8f34b5280fb3c7a4f9e33595bc4df1b7e115d923269a1ab
 SHA512 
2a18554974107f59466ea14c860d6583922966301ce7ae8d5dd2d6c87fc643d8f3f1db8e941346e2323f0901601f952ba8ffafbe9409e13dbdd263e21ac40fee
+EBUILD tryton-5.0.23.ebuild 971 BLAKE2B 
c9823fbc1a352501fe2cb55235c849fbe565311ef9faf7365cbeec350eb5561998877b3ba03a0c886723713b77820f7f1c372744eaf2c9b8a200df7069612b46
 SHA512 
4009b9b2afde44cd1494392a069f8599893714cde1a0fae40597c3c022d69f54ffc17280947d7e5dccc4cec648db863ae7998f80543a63fe8f6b644c3bfd026e
+EBUILD tryton-5.2.15.ebuild 997 BLAKE2B 
659b49658297569fe81004ff051ba532a2a00cdb933e268d166c90354484a1d278b9fa35a9cb79697f6f3636fe48f758871c1eaae85214d90f84f21f9c316117
 SHA512 
351fba06e642e16f8c25fbb73e7fe78790233250b4f65d475aedceb09f6c0b04c087b2da2f654d2b032871836bb4417517a8b136b008352c3167fe7879d676d8
+EBUILD tryton-5.4.7.ebuild 1015 BLAKE2B 
a2e58d43638660d917a3b9a84a0bea0f7cd892c241deae34ee322490f43c0795ea71af11c268d2f17a0ff733897042f22b9c697a0776a38a87f026d07159540d
 SHA512 
ec375c3492c5b47a3e1b43df879a4c5feafd1b9a03a9acacd06dfc808a2053deffc34f06e7a13d669b3f7bc9bfe8cffc88c8c31f0daaaba96d8e110baaa78cab
 MISC ChangeLog 18389 BLAKE2B 

[tryton-commits] changeset in tryton-overlay:default app-tryton/sale_amendment: V...

2020-05-01 Thread Cédric Krier
changeset 1a95b4d3057e in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=1a95b4d3057e
description:
app-tryton/sale_amendment: Version bumps

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/sale_amendment/Manifest|  21 ++-
 app-tryton/sale_amendment/sale_amendment-5.4.2.ebuild |  36 ---
 app-tryton/sale_amendment/sale_amendment-5.4.3.ebuild |  36 +++
 3 files changed, 55 insertions(+), 38 deletions(-)

diffs (106 lines):

diff -r c4f36adeb88a -r 1a95b4d3057e app-tryton/sale_amendment/Manifest
--- a/app-tryton/sale_amendment/ManifestFri May 01 19:32:56 2020 +0200
+++ b/app-tryton/sale_amendment/ManifestFri May 01 19:33:36 2020 +0200
@@ -1,3 +1,20 @@
-DIST trytond_sale_amendment-5.4.2.tar.gz 27578 BLAKE2B 
d03ef725d27963cd13b5138f5504b33998ca6e21b8446285e8172c7c3dc6fde4396a30c2987d743984f2bdab9284cbe8ba7055866d79d58e86a0b9b93eba4960
 SHA512 
101d79c2e6a41dbb7b5ac7d989bc7a812b8a5a63d7cf7ed84dc7593699f3fd47a9479e4c948605eef79091a4af576b05c49bdceded762180105cfb11356200df
-EBUILD sale_amendment-5.4.2.ebuild 934 BLAKE2B 
484cd0754b5b8a41c93270415c599f5cc667226c5f0a140b4dd73b8994f0667035475a4e8416a8a39d5881b6a9179050b57ce861108c2d0f8a4dc9cebb7fc42b
 SHA512 
c0b927f09d837fca1c8b202866c8522df09a9bc3d8c81e9c0de12aae4ff1303535e1bdde11258612d7bd652e24228039cd6a609356019339e5902d495248e375
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_sale_amendment-5.4.3.tar.gz 27666 BLAKE2B 
c7c5db200c6d5e1da0fef6f7a80561b93be30db4c161df39eda02f2a3e806e844a83c1bc4bd1e0eff8f5dedef4914207271660af0f06dca9cc4a3d512797d128
 SHA512 
0571cc4c739573173304bb5b35001f80545bf60587bcda8140be835d0ead2fbfa6b806432d145e71f6acd79612c27fcb901c7cd735af80dac81785eb1ee6a655
+EBUILD sale_amendment-5.4.3.ebuild 939 BLAKE2B 
c8e8f86371b25fe99bd45f25b8a49cdad46e11c1c055d446dc7af21aff441c38cff6a9e851e9c39950006c55954bbec04747c18fb3fe231054d1e667412ca033
 SHA512 
1752b9ba8429456a357a14c49dcd5d2bb23f26937589022846d7c6209dd27cd645a36db20e3299115123fcc7c5cfcb7d7edcf25a96dd31f0fdb51dc9e030a5e2
 MISC metadata.xml 293 BLAKE2B 
d8a5a8cfc8b3e88b4e2e8cfffcca51ba809d59c4acde7301836369e0a5706b60c2a1ea19f318c84c9b4e9bd7cdb6e7854c4b43e848067576b415f335dc3659a6
 SHA512 
420ebcdcd3f8967912435c39c2f6d172e08e207cf1d785f474c24b444976009cdc0dd95cb7f5e7b8fa67c4ff37a257dcaa1de6981e3b1d44a227e77a4ba143e2
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQGTBAEBCAB9FiEEdP/VdIYNMe45RAljV09u/05HdRcFAl6sXXBfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDc0
+RkZENTc0ODYwRDMxRUUzOTQ0MDk2MzU3NEY2RUZGNEU0Nzc1MTcACgkQV09u/05H
+dRdkigf/QUI4D2A5LRvdaxCctyXEslWdNVak3A7KRE3ZBcMbqikwcYa7+v9Po1BV
+cmr0ELB7mHUq1T6a2Y0+McEzGRvVWbBUqqV9AUD3VEG7ZudeN3EthCyXAr+k4NlE
+Hph5Gd8RgGthYjH0Wk9js4uvh6UQ0Cb8vAXBCFGlGLKsRnhZbU7y4Q6/NmcCTkfn
+Be8KqD5xCpxjGrK0qOTUEiONqHRaHMRYb6pYtr1WI1QajHn49HmGaH3OLWHJHaqw
+ZaZon0F4u63e2BjaFiNMF9Sd8w7H+VVVv6eEUIF1qluseDAUnFVaHo+uEevX4BMX
+PQGgiXvVp7g1xLFs+YTjGmw4QpdaqA==
+=ARYY
+-END PGP SIGNATURE-
diff -r c4f36adeb88a -r 1a95b4d3057e 
app-tryton/sale_amendment/sale_amendment-5.4.2.ebuild
--- a/app-tryton/sale_amendment/sale_amendment-5.4.2.ebuild Fri May 01 
19:32:56 2020 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +
@@ -1,36 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_5,3_6,3_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Module to amend sales"
-HOMEPAGE="http://www.tryton.org/;
-SRC_URI="mirror://pypi/t/trytond_${PN}/trytond_${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="=app-office/trytond-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/account_invoice-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/sale-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/sale_history-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/stock-$(ver_cut 1-2)*[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-lang/python[sqlite]
-   =dev-python/proteus-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   )"
-
-S=${WORKDIR}/trytond_${P}
-
-DOCS="CHANGELOG COPYRIGHT doc/*.rst"
-
-python_test() {
-   DB_NAME=":memory:" esetup.py test || die
-}
diff -r c4f36adeb88a -r 1a95b4d3057e 
app-tryton/sale_amendment/sale_amendment-5.4.3.ebuild
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/app-tryton/sale_amendment/sale_amendment-5.4.3.ebuild Fri May 01 
19:33:36 2020 +0200
@@ -0,0 +1,36 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Module to amend sales"
+HOMEPAGE="http://www.tryton.org/;

[tryton-commits] changeset in tryton-overlay:default app-tryton/sale_supply_drop_...

2020-05-01 Thread Cédric Krier
changeset 5046e8a3e3e7 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=5046e8a3e3e7
description:
app-tryton/sale_supply_drop_shipment: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/sale_supply_drop_shipment/Manifest   |  
29 ++-
 app-tryton/sale_supply_drop_shipment/sale_supply_drop_shipment-5.0.4.ebuild |  
38 --
 app-tryton/sale_supply_drop_shipment/sale_supply_drop_shipment-5.0.5.ebuild |  
38 ++
 app-tryton/sale_supply_drop_shipment/sale_supply_drop_shipment-5.2.3.ebuild |  
38 --
 app-tryton/sale_supply_drop_shipment/sale_supply_drop_shipment-5.2.4.ebuild |  
38 ++
 app-tryton/sale_supply_drop_shipment/sale_supply_drop_shipment-5.4.2.ebuild |  
38 --
 app-tryton/sale_supply_drop_shipment/sale_supply_drop_shipment-5.4.3.ebuild |  
38 ++
 7 files changed, 137 insertions(+), 120 deletions(-)

diffs (287 lines):

diff -r 0714b62321f3 -r 5046e8a3e3e7 
app-tryton/sale_supply_drop_shipment/Manifest
--- a/app-tryton/sale_supply_drop_shipment/Manifest Fri May 01 19:37:16 
2020 +0200
+++ b/app-tryton/sale_supply_drop_shipment/Manifest Fri May 01 19:39:16 
2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_sale_supply_drop_shipment-5.0.4.tar.gz 43342 BLAKE2B 
863239c55b506360d1226641b0bc7494854dccbce7b2d0a7125f94069a4fdc8b86a4403ea43edde973e7f7891bb9d933ca18bb1187429e0f3b1d426d987c0ed6
 SHA512 
3c1b41cc737b6ef52c59692c4250343cef245d9c1221c52710d4bfbff570ebe50eccd0b456b4d7a881bdd2a54cf1274b3250807760254e03f52d2cf46b0b137b
-DIST trytond_sale_supply_drop_shipment-5.2.3.tar.gz 44742 BLAKE2B 
d2f112103fea11c0652870b0052dfac47e54e78ee1b0312c883a7c19621a1090ed27de6ba759a6ae66a53c0f5085dfeac1eacfd489ba11e2a45a11750a9ed480
 SHA512 
ad458e217fb2992d03e31960ab70a476b0825e4f2f5a13f511ee6767a62e39b320589ec4d7eff21890efdb9c13425f3d9ac3c2e9ef0d0564108a735f279b3d52
-DIST trytond_sale_supply_drop_shipment-5.4.2.tar.gz 42563 BLAKE2B 
b3f148105b3b273f25862de92a1b2ed315a756e6ff74506db469abfefd022cd047aa44c6628486b8f0bc585596597fb90d7ec69c96e4b9255a28500a77dc42ec
 SHA512 
f1cff2666b15be02c1909fc69d407b6001a8ed30c9e9cf7f7bd28330245006b31e3120f4b6619906a693e41ad9ffb602e3256d45cc7edbce694952945421df82
-EBUILD sale_supply_drop_shipment-5.0.4.ebuild 1068 BLAKE2B 
85972012758ad6344e75e684abb50c0f90d65c24dd5d9948b83613200568b90d716d02e79baf8304874abb7f20d70fd1eec7ac259a551bbfe411dd9721407513
 SHA512 
2efd8c8d02df3703981a5bff5c4b0c15d35720f69f161ee4987eb64b3db930b8e9ed100223a0cb6649bb47488068a3bbb8bd852ad89f5d46423c1334ed0abfe6
-EBUILD sale_supply_drop_shipment-5.2.3.ebuild 1057 BLAKE2B 
9237fe611c048f1c73019286fd0be16d68e1840aeee4511970f90e74e94896aa52c2e01a22fd30895ca009608789ee3ce1e6a355a0dc6f21be9f6154b9e8a471
 SHA512 
609b8048ae9be983cfd905c8586b908d31c5216633be6c80c035e6f8ec1487a9202ee14b3a5c4171efa06b608ddef9740be4ae92d7669b6dc0d833cbd841c3fc
-EBUILD sale_supply_drop_shipment-5.4.2.ebuild 1061 BLAKE2B 
ebff94acda66f6dbd1711b96825b8f49f58cb23a8a8aace7a9b496338977806bf74ee173dd1f41d00bc5bce9e3256a783279c42910369a8002b770ee7fa27a63
 SHA512 
5ee68198cd6193a1da620460af464be2e7733ff331c42a87e876d6fab7395af3413c0d4d8597b9b9fd775cc5623a3f69439492b138caa65a58cb4d531db3b4e9
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_sale_supply_drop_shipment-5.0.5.tar.gz 43388 BLAKE2B 
913e4c77f9b3b68d213e551b2450bfaa128eb438825bb96c1d5a90773c0568dbd62b7323518ab6795a01bfc7f2f535f1a06a8f0222126933559d8ef5ec99a244
 SHA512 
e7b16735e19f7749d6d26964112e6a7dfcb2c35d1d1e326d343c9453099ee40f8f0a95c9e8ed95c0cfa861759bb4e7538ffd63107de6657e254c5b1a8b31fb60
+DIST trytond_sale_supply_drop_shipment-5.2.4.tar.gz 44780 BLAKE2B 
a86e81f4d2bc7a1ada94455b7e8b2c49ecc6d0bb08ac37ba763409b808a09d28bcf58c164862a3c39e9ce5f140e443f8817c40dd7857b70cda4c281c1665b9e1
 SHA512 
8abf36a418dd3fe7e7de87d3054ac9a18f4dc14fc8bcb981c483fdf2ccc72da261b2a50c4609f71652b8c59c8ff1024f3965c89c68379a82bd90a6d5237e6f1f
+DIST trytond_sale_supply_drop_shipment-5.4.3.tar.gz 42584 BLAKE2B 
7d6362527a0623ac865e47934600b8d15b541928d0308806cfd2201cfc8451886dfe37527ec3caf8d568a6f6094a878555a36db51e134b6afab0e9bf0928c33f
 SHA512 
47f34562e4d6fce932336abeaefa11b5d75bbf70fef82f62afc9eafba875e1cc79bab247950f91ae91685115c899d88ffc771a9ffd44427a7d1d697718a03052
+EBUILD sale_supply_drop_shipment-5.0.5.ebuild 1068 BLAKE2B 
85972012758ad6344e75e684abb50c0f90d65c24dd5d9948b83613200568b90d716d02e79baf8304874abb7f20d70fd1eec7ac259a551bbfe411dd9721407513
 SHA512 
2efd8c8d02df3703981a5bff5c4b0c15d35720f69f161ee4987eb64b3db930b8e9ed100223a0cb6649bb47488068a3bbb8bd852ad89f5d46423c1334ed0abfe6
+EBUILD sale_supply_drop_shipment-5.2.4.ebuild 1057 BLAKE2B 
9237fe611c048f1c73019286fd0be16d68e1840aeee4511970f90e74e94896aa52c2e01a22fd30895ca009608789ee3ce1e6a355a0dc6f21be9f6154b9e8a471
 SHA512 

[tryton-commits] changeset in tryton-overlay:default app-tryton/sale_price_list: ...

2020-05-01 Thread Cédric Krier
changeset 0714b62321f3 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=0714b62321f3
description:
app-tryton/sale_price_list: Version bumps

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/sale_price_list/Manifest |  21 -
 app-tryton/sale_price_list/sale_price_list-5.4.1.ebuild |  36 -
 app-tryton/sale_price_list/sale_price_list-5.4.2.ebuild |  36 +
 3 files changed, 55 insertions(+), 38 deletions(-)

diffs (111 lines):

diff -r f44b5cc4f433 -r 0714b62321f3 app-tryton/sale_price_list/Manifest
--- a/app-tryton/sale_price_list/Manifest   Fri May 01 19:35:51 2020 +0200
+++ b/app-tryton/sale_price_list/Manifest   Fri May 01 19:37:16 2020 +0200
@@ -1,8 +1,25 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST trytond_sale_price_list-5.0.3.tar.gz 26381 BLAKE2B 
4961464cb6a5a254542de09fb3085e24774b8e5dc689ec13d8e6df286b3ebec81bc4ea16cb937a69a395a90d91c5e6a9cda00ee602b6345db83d83219901089b
 SHA512 
72f5d93966778899f5d01ab233c2abbe535331c7470467a7aebe97b667e1a22d6f741844d03dcc617d498579a20ce4222078a5c3460cd7188822cdb109c04bff
 DIST trytond_sale_price_list-5.2.1.tar.gz 26369 BLAKE2B 
236a9aedce63a3cd11b986e2b93d984199e5885a008478f34122ddc1b59ad63d38161b3135aefec8eadf96b5b53a40fbbe765fb386eb0bb35e3db2a1f00b7ba6
 SHA512 
2646a98d6f6e053cbcbe58277b894ec7842706008bb07bfbdb82c74c863cd780755affd24edae669935e0f98aa9d1bbe25fe48fa67b112526ed029c9efbc4b2b
-DIST trytond_sale_price_list-5.4.1.tar.gz 25704 BLAKE2B 
587530946d83a6637c0c3a8da1dbdbb97b07be280ccc1bf502f5912506b4faf2efc59ebe4d59536279bfc3362c1fb5dad8aad1c94a2303bb288ce80c71fb0ce0
 SHA512 
277c643dc4f654a56e3e54fad4f3ab06028623d1510de30882cb333af73626ad1cfd225274b170f5c532b6d4cde5ec9b776a0d59afd41c3e463e90ccd25bb696
+DIST trytond_sale_price_list-5.4.2.tar.gz 25760 BLAKE2B 
cb199598e188603148dbd5616381446080ae21e4d65777b6582db174edd5f8c831e112b5d7696a748555070e326333ddd263219a7fd5a3b88ce6803cef64a596
 SHA512 
dfdb2805acb5a83c4388c869230664c978fb4d0d2850366c8c3a24ea95f6cfc90191085f1d529be83c7c9c50f151c70e1095678a0ca62939fe01ab64cfb9c669
 EBUILD sale_price_list-5.0.3.ebuild 934 BLAKE2B 
bf6b9b1f84cb5f8909ae5d18d2e5f5bd5e5f3485e41bed661c356a80a3c7ca6ee8b1b54134dbab4c82798d4e95ed7c2cf63d1eea27924b3d71af75d4eceeed3d
 SHA512 
4ed063742491a08eb65139fabb04cab0233a9b4bfb65de3e17f2738f1bd4d3653dbdc1260334040b1a9919c4a66a6b67e1b453e37431e858e94cc543129cd9af
 EBUILD sale_price_list-5.2.1.ebuild 933 BLAKE2B 
374d2fabeefb0415d1e080f4faafd1671bc0e288256832425419aeba565d36eb233a8a64b98b9461888c9766c5ba6a4a0093653d799b5e0ce4a6b2382cd85180
 SHA512 
69d6184313fd718ecdb707ca25245e66adf8aa790171ba036d75dde5074fe86310fceac65dfff078473168187ef6380ae70d606a2117cd31f88cc2034ae6ac07
-EBUILD sale_price_list-5.4.1.ebuild 937 BLAKE2B 
9c65b7569cd16c25f27a5816cf5d964b8de5ca05ba7ac07b18ff69ff0a2276f190748418f68e946045903c1a1f8ee48770d75a11054b651259c3cd6054217286
 SHA512 
e3440c4b9062d9f4f83864e2dadc96c2f49697768a184c52ecf8b5920aaf3e71000faf9c0835e73fb35ea16529be83fafa1586a16057d5d043d20db0da2b35d8
+EBUILD sale_price_list-5.4.2.ebuild 937 BLAKE2B 
1e4e4c0d192573cd1721f1ddcaf59fcdd6ad7c25f39551dc100865ecf87aa06e2132cec4dd5779dd3c947358cd80cec0a249371c645fa3adadc7b825bba75c15
 SHA512 
d036063ff16ea37ff1f65f368faff6147b74832bb6081fa5e60848d0c88f95a741d82465fb954807e920206bca4174ffbe6175508a7705912c4ce8c53ec1
 MISC ChangeLog 3506 BLAKE2B 
12b0ac5ebdd111ce24b75431e3e480dfed4e89701a851fcc5c02a9ef3baeb391eb37bf97e60789114a86b550de4dc7ac20d75dfd06d7d1c8f9a4945595a2eeae
 SHA512 
3596a4fef6c978c8c140ca7128dd4e3681a6c985a9a7bc00dd6793d1817ef84c3be4f6b2affaae6bfe15eed51d6ddf58f15d6afcfdd757830c7501e414cd
 MISC metadata.xml 294 BLAKE2B 
1152811313d6950d2e816113fb4de066ac9185c67c0a0a9e6dadb8dd79e8edfcdace74d644571e133badac5c241ac3741d2a7f1ca70e0df500373240e97e7ea3
 SHA512 
c6240573c19b9da95aab834fd10b9afa53f90cdd52a683b101864ed2335c98b648d79240fb455d5b96163e97a94049b2f32d6e9e1838932eeb2d950c272faa18
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQGTBAEBCAB9FiEEdP/VdIYNMe45RAljV09u/05HdRcFAl6sXktfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDc0
+RkZENTc0ODYwRDMxRUUzOTQ0MDk2MzU3NEY2RUZGNEU0Nzc1MTcACgkQV09u/05H
+dRdSdQf/fc3y599scJxGPsdCUj67wmaKjIj68V69Akuwl5C7izQCF7NoqbC1YSg3
+JuEkpIPD+52JBiF2lO0mb0O5YxQVusyMHjlFeSwNj7ArA/wJ1n3Y/phaihLja87R
+vvMT646x8CFlFx4v+wSeMbndx/0Gq0AAQYTeyO2GSEyxH8Sh27dStJPpnDEJtuYw
+/gXGTvaBRIRJjFSmuWALZZTp2Z2Iacsn5nHDwF1SFwvcXKR3s0OLlAzBc6eSElQe
+NckY6niizcn4WWHt4sAm+d5e9rf7Thf9uYW9vEwdoxWZ7R2iBXzDI1mrzw8uLG3e
+46GG4KLBrxPJDmR94ArSs2uZLMDRmw==
+=22eE
+-END PGP SIGNATURE-
diff -r f44b5cc4f433 -r 0714b62321f3 
app-tryton/sale_price_list/sale_price_list-5.4.1.ebuild
--- a/app-tryton/sale_price_list/sale_price_list-5.4.1.ebuild   Fri May 01 
19:35:51 2020 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 

[tryton-commits] changeset in tryton-overlay:default app-office/sao: Versions bump

2020-05-01 Thread Cédric Krier
changeset 1f32d6165632 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=1f32d6165632
description:
app-office/sao: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-office/sao/Manifest  |  28 +++---
 app-office/sao/sao-5.0.21.ebuild |  75 --
 app-office/sao/sao-5.0.22.ebuild |  75 ++
 app-office/sao/sao-5.2.13.ebuild |  75 --
 app-office/sao/sao-5.2.14.ebuild |  75 ++
 app-office/sao/sao-5.4.5.ebuild  |  78 
 app-office/sao/sao-5.4.6.ebuild  |  78 
 7 files changed, 242 insertions(+), 242 deletions(-)

diffs (522 lines):

diff -r b0b8132fd8ab -r 1f32d6165632 app-office/sao/Manifest
--- a/app-office/sao/Manifest   Fri May 01 19:40:09 2020 +0200
+++ b/app-office/sao/Manifest   Fri May 01 19:41:24 2020 +0200
@@ -1,24 +1,24 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-DIST tryton-sao-5.0.21.tgz 456901 BLAKE2B 
5807c9d63ccd38f51e1aa6c43f150e5f1c2f7c5933b31dc1be6ab7d4bdc3d9f06e7430218e312653bf627368339f044e67c58de16b2a90764511b44a0110356a
 SHA512 
47656cb7390ed727737cd1698df18ec07a713f3129e9cb371d02736d750e8373620dfe6697bf55ffe88e6b7f0ea0e55422f00ee248bd15254386bf4d1689a2e9
-DIST tryton-sao-5.2.13.tgz 475332 BLAKE2B 
395d812a126524c35a681baa8cfd7c4fa4abc74ec6841bf81ec51f86d07e59a7e9ab35d6861bf55fc51d38774c11dca674a18b51fdaa5d2ff3f048a7cbe5934c
 SHA512 
aca003e94362cc301ac803801aa5f9b55e201df9a8c9963545824e9ae8467dfe96a4395462ea7a40ec2d0fc44d667ebe6eb6a97942c0e3b4122c282dae27718c
-DIST tryton-sao-5.4.5.tgz 520122 BLAKE2B 
2b66e19e732b7749af6a6aba9a60686ec5753cb969d9473fcd5bc305c3405608c6eeacd1d2679010ee77db560e58cf978e09010f1fcac11f7d4af667850ef8c4
 SHA512 
2948ad0579f5a88040b85d3cef0a1d0687144cf8a818a1d7f733ce4e440db7519c3034241949d66288fa7134cd821d0e87288b8e9921c0e389d99b0a0fae359f
-EBUILD sao-5.0.21.ebuild 3149 BLAKE2B 
b70341452fbeefc2f09242744ba1df575f277da6e08df67e3b082d2ad8dd8b62cb84ca199add255df2ad469f7c2be82023969e3b2598848c29fe88b1f5c88532
 SHA512 
bcae39de9cd50992f681d3b56de614b395c7977f60e8d910b9deed32bf3930ffdf59e5d8d99aef3420bd0c6343f8752e6dec7094a86b1465fa7da612311bddd0
-EBUILD sao-5.2.13.ebuild 3153 BLAKE2B 
d11ccfbde04073a955213ee81113926a9ca684b467bd0437c54b28f2653b5497f21e36c22079ae0de55a92d3b8413e27c734db49151471a9095fa7abe94e908a
 SHA512 
26eacee4ad24aa7950784f3581b85f924e1cb54e7e8b6b800fc59e98e8b94f947a28c325d322638bca7c1a3aea1ec92cb17f7a0abe7bda3c7b139e617be4c0cb
-EBUILD sao-5.4.5.ebuild 3342 BLAKE2B 
5361cbbc3e52856679188852b0373aa700c26f6e155de61c998f0f92ce324529438d8acabe5ec90ff8627a02e4f166070b3d2cf38ab9cf001d92ba1d21c468d4
 SHA512 
2da13e570888da81001e95b15b58b33d69473517ed80ed4489085674614305b6b87086cd68610b21471db4c9f3b1dfb237da5a510511df5f8bef6ca5c98bc4ff
+DIST tryton-sao-5.0.22.tgz 456939 BLAKE2B 
7704cf87e761272d10a93ed33f1bed8eae712e421f9c52ceabe81378b71c54e92cfea259958afed0ac53f8cc629d4d3e4c6faff3d19369ca50693c06319d243e
 SHA512 
03ad721c3ddec04923964a22deb9449ded241408667e3240127e120019cab6b36c2a27f11bb569a640574393f503e2bcb9fb8677f60eef6496f9c7f261b6baa0
+DIST tryton-sao-5.2.14.tgz 475358 BLAKE2B 
817c8ede22bc1fadc114340d71e1f6407421be54e8b4422e9c57d5a88a0734b5519da79d719661bb70b86b4e27d6a4b6df9e02cfb5cebf105026cce05d4c923a
 SHA512 
d0657fd9edcb878f714f3a3a1a8fc00434de582546fa01ee5e1306bb32571be8f58c552da61190ff3e1f57dcbf6f4bd0ac830189e99cad9f5b610f45ea68e641
+DIST tryton-sao-5.4.6.tgz 493621 BLAKE2B 
33c659ccfb38f3ae4eadd62067fc65132b9eecadf24626610088aa6811c2afa75b24cb99633fdcef2916af12c722d6e7045271f7045498369545b86b3a9a5ae1
 SHA512 
43d13e107bc074210045fc4324bc9282e38941d60286536ef655e62bd91ce79d34a81ae770ca9cf0b9e1b43eec92e20a0ac13e86c1eb629a710065109c71269d
+EBUILD sao-5.0.22.ebuild 3149 BLAKE2B 
b70341452fbeefc2f09242744ba1df575f277da6e08df67e3b082d2ad8dd8b62cb84ca199add255df2ad469f7c2be82023969e3b2598848c29fe88b1f5c88532
 SHA512 
bcae39de9cd50992f681d3b56de614b395c7977f60e8d910b9deed32bf3930ffdf59e5d8d99aef3420bd0c6343f8752e6dec7094a86b1465fa7da612311bddd0
+EBUILD sao-5.2.14.ebuild 3153 BLAKE2B 
d11ccfbde04073a955213ee81113926a9ca684b467bd0437c54b28f2653b5497f21e36c22079ae0de55a92d3b8413e27c734db49151471a9095fa7abe94e908a
 SHA512 
26eacee4ad24aa7950784f3581b85f924e1cb54e7e8b6b800fc59e98e8b94f947a28c325d322638bca7c1a3aea1ec92cb17f7a0abe7bda3c7b139e617be4c0cb
+EBUILD sao-5.4.6.ebuild 3342 BLAKE2B 
5361cbbc3e52856679188852b0373aa700c26f6e155de61c998f0f92ce324529438d8acabe5ec90ff8627a02e4f166070b3d2cf38ab9cf001d92ba1d21c468d4
 SHA512 
2da13e570888da81001e95b15b58b33d69473517ed80ed4489085674614305b6b87086cd68610b21471db4c9f3b1dfb237da5a510511df5f8bef6ca5c98bc4ff
 MISC metadata.xml 293 BLAKE2B 

[tryton-commits] changeset in tryton-overlay:default app-tryton/purchase_amendmen...

2020-05-01 Thread Cédric Krier
changeset ae00d27167cf in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=ae00d27167cf
description:
app-tryton/purchase_amendment: Version bumps

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/purchase_amendment/Manifest|  21 +-
 app-tryton/purchase_amendment/purchase_amendment-5.4.2.ebuild |  36 ---
 app-tryton/purchase_amendment/purchase_amendment-5.4.3.ebuild |  36 +++
 3 files changed, 55 insertions(+), 38 deletions(-)

diffs (106 lines):

diff -r 4e29df995e24 -r ae00d27167cf app-tryton/purchase_amendment/Manifest
--- a/app-tryton/purchase_amendment/ManifestFri May 01 19:30:50 2020 +0200
+++ b/app-tryton/purchase_amendment/ManifestFri May 01 19:31:33 2020 +0200
@@ -1,3 +1,20 @@
-DIST trytond_purchase_amendment-5.4.2.tar.gz 27830 BLAKE2B 
15276d98115bfdff2ab534562f08351cec5aed6b1f8a6c75066f5d2ff20c3f920bdf5f35885c0520aa571db93f1ca64493b122fa402a046c534ed5bb1ff6d2ac
 SHA512 
2dd9f255ac22c64589e1d750dbc8ba3989b50489bb55d1f60a8d51af1f76a60baab8eb7c6cf32a07567f7ec5af078d353e59102e4dc87a63348b5925fda899a4
-EBUILD purchase_amendment-5.4.2.ebuild 946 BLAKE2B 
f35d0ddd191a5621543ba4e12b5393151c6c362f2b810853b31a7f141b9cb44f4d63e806e497042010c84af9faad31825332ba8d3eb6d824c6ca345c1f63c18a
 SHA512 
435d48ad8bfb742991edb2bdaf88e9d4baf529daae02e925c7662996fdb51d20f93297d9132af1e4d7241a762e36934bb30da563173d1a1670ccce78b30e6b1b
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_purchase_amendment-5.4.3.tar.gz 27924 BLAKE2B 
0feadd06d3d1ea47eed8a22c3998c2934d671776e8f953a6f0e36ed6b092cc7393dfb8ef6a3e2fbda6aab58542e35ce12a348ceaf97f03cf331abb72ad044627
 SHA512 
4d23cd09518ff18e611f5d33a476a1b3ccfce783480181d1a41a773897c61c34467e773c4ffd9898fffe857529ec7e578fdb59305cb008f4742c36cd360b0875
+EBUILD purchase_amendment-5.4.3.ebuild 951 BLAKE2B 
833d1cb33aa52ebe8b3de0d68182d296f36208ad0bb001e0fbb08dc8e58a81828ee5f44893ab8ec4007df0c84ff5fe55211878b6482c8c880cbaf36654762b44
 SHA512 
8f6be5f390fdc653d10cfb04bc1832a78f3433b47847ca5ba39af9afe051a65ea02ded929b16a300c17f548c5af4943fbf7594dd62357e04e49a5467c0e03b23
 MISC metadata.xml 293 BLAKE2B 
d8a5a8cfc8b3e88b4e2e8cfffcca51ba809d59c4acde7301836369e0a5706b60c2a1ea19f318c84c9b4e9bd7cdb6e7854c4b43e848067576b415f335dc3659a6
 SHA512 
420ebcdcd3f8967912435c39c2f6d172e08e207cf1d785f474c24b444976009cdc0dd95cb7f5e7b8fa67c4ff37a257dcaa1de6981e3b1d44a227e77a4ba143e2
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQGTBAEBCAB9FiEEdP/VdIYNMe45RAljV09u/05HdRcFAl6sXPVfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDc0
+RkZENTc0ODYwRDMxRUUzOTQ0MDk2MzU3NEY2RUZGNEU0Nzc1MTcACgkQV09u/05H
+dRccPwgAg9srOi9T4W7bv6AT1zaDqsAHuT/qLaqMQ5XVMIMI3bWNZTysSMpSO0a4
+s/Gg4ZNNR2o4WRYWTzyVm64PZfmRs4CBXrs8wnVJk6074PsD+eoNooueQVwLhdsg
+LZU9ViNYMVUdAbQnAux/AAtSaCbUq6txOyzEdLzF1isl3FmqaFUYeVHYE6Auh/56
+RD4T8U7hGJjz7sWOlCyiDzzjrY/E/YvY+90TPn2w02QT+sVg63ePknfdhVuq1+gX
+R2/AogHct5Cv+jZ0ifVPRi8jpTfbBV0yBGda8VEciOaM0Rwr3mLjmNok8K6vC4wG
+yV5P2Caibb+XFPC+/i8zHbFQ3jaIpw==
+=TTW+
+-END PGP SIGNATURE-
diff -r 4e29df995e24 -r ae00d27167cf 
app-tryton/purchase_amendment/purchase_amendment-5.4.2.ebuild
--- a/app-tryton/purchase_amendment/purchase_amendment-5.4.2.ebuild Fri May 
01 19:30:50 2020 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +
@@ -1,36 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_5,3_6,3_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Module to amend purchases"
-HOMEPAGE="http://www.tryton.org/;
-SRC_URI="mirror://pypi/t/trytond_${PN}/trytond_${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="=app-office/trytond-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/account_invoice-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/purchase-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/purchase_history-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   =app-tryton/stock-$(ver_cut 1-2)*[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-lang/python[sqlite]
-   =dev-python/proteus-$(ver_cut 1-2)*[${PYTHON_USEDEP}]
-   )"
-
-S=${WORKDIR}/trytond_${P}
-
-DOCS="CHANGELOG COPYRIGHT doc/*.rst"
-
-python_test() {
-   DB_NAME=":memory:" esetup.py test || die
-}
diff -r 4e29df995e24 -r ae00d27167cf 
app-tryton/purchase_amendment/purchase_amendment-5.4.3.ebuild
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/app-tryton/purchase_amendment/purchase_amendment-5.4.3.ebuild Fri May 
01 19:31:33 2020 +0200
@@ -0,0 +1,36 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_5,3_6,3_7} )
+
+inherit distutils-r1
+

[tryton-commits] changeset in tryton-overlay:default app-tryton/authentication_sm...

2020-05-01 Thread Cédric Krier
changeset 4e29df995e24 in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=4e29df995e24
description:
app-tryton/authentication_sms: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/authentication_sms/Manifest|  29 --
 app-tryton/authentication_sms/authentication_sms-5.0.2.ebuild |  29 ---
 app-tryton/authentication_sms/authentication_sms-5.0.3.ebuild |  29 +++
 app-tryton/authentication_sms/authentication_sms-5.2.1.ebuild |  29 ---
 app-tryton/authentication_sms/authentication_sms-5.2.2.ebuild |  29 +++
 app-tryton/authentication_sms/authentication_sms-5.4.1.ebuild |  29 ---
 app-tryton/authentication_sms/authentication_sms-5.4.2.ebuild |  29 +++
 7 files changed, 110 insertions(+), 93 deletions(-)

diffs (232 lines):

diff -r 25e8c19b385b -r 4e29df995e24 app-tryton/authentication_sms/Manifest
--- a/app-tryton/authentication_sms/ManifestFri May 01 19:29:33 2020 +0200
+++ b/app-tryton/authentication_sms/ManifestFri May 01 19:30:50 2020 +0200
@@ -1,7 +1,24 @@
-DIST trytond_authentication_sms-5.0.2.tar.gz 23857 BLAKE2B 
eaab9e378ff882740abb2f7fd9ded522f5315b87595ba6b630f89faddb85340db5c3e390d6d267556ab2fff5e4a2efb810d19c185ba30d7e2801515783c61414
 SHA512 
4bbd6d34cb07c9ed2c14ecb64b15e3eb009fbdab77d598126ad32e1c5948f3fa32ad2213232d6a62ad1ba3eeefe8c8af97b7c84b00d5e67040b38a51ebdaee7d
-DIST trytond_authentication_sms-5.2.1.tar.gz 24659 BLAKE2B 
c57925cbfcbcb80e42fa2af8a343cb4084a6868fad753168f5c06a010fbacc65653167b668802c40a3deec1c3c1e848d71193b83e320317d1180c62ab397d8a9
 SHA512 
12c903e277056f974ca85b59a17163fb1481ab161fc7d42e731dad051e3e94dc76f24f7a7e0f04894c8684291a215107339a313303e2b2e5037cf7f2e3acc840
-DIST trytond_authentication_sms-5.4.1.tar.gz 23745 BLAKE2B 
04b07da8f57bd0142593b03aae6e41b025476a4a1957d6bab7d0b48b2369af432a6e583c98ff7c334ffac4ecb513b87758a1e6933f30e447394dc84d4aa0ca61
 SHA512 
faeffe7b479f6976c8decda91a106abd9383567dc823d95323bc6733dd0d4542664b8bfbebe6a379bd23207552ff5c73e7ff991d5e529922b9aada36a7611590
-EBUILD authentication_sms-5.0.2.ebuild 662 BLAKE2B 
f7b8c87359511734288a62978fd2a5bbab4fbd3f59cf9c38294192c6df96869ec7829fb07483a6c757a846522031bbd5076031b30c259e082e84398c165f86e9
 SHA512 
c37155b38bbc69919a30f29301b6b964aab640886f845d7edf1667a68ab048a789df936f41ba37ec9b19ca63bceb662635b19494de6b750e83aabf86a2974ee5
-EBUILD authentication_sms-5.2.1.ebuild 651 BLAKE2B 
85921162fdd706fb90c0d72cbceb9a1480252ab999e69aed0d0e854d5d0996dc3e452b6f024098306466f174f8e612ac498d7c3fc4be10b283ccac94e6d3e4bc
 SHA512 
1c23882865cc30e7e65b197bdf333a451a6a723df7d43bc7fd1080b7aa469eea4a83a5e5205fa08afb452e5cd6397d3adb440683ed66e3f28da22ab507369b97
-EBUILD authentication_sms-5.4.1.ebuild 655 BLAKE2B 
20c4c58e550e3445c7330b6ad9e82db431e24f565424d7c337bd88cac7f0ffae2de1f40f897a2c9af7e3269cb49ef06e71d5ca51be105e223f9238d1a92b1389
 SHA512 
684e4de2bcf6ed5de99c86734d463a2f1eba3e50f29a13c43b25e822c928af4b3fbb19bd496732b039876dad23251b2348db30a10b5b15864c458105eff8598f
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_authentication_sms-5.0.3.tar.gz 24045 BLAKE2B 
636bc76a803392d7e6152aa496511fe0bf3b1fe2dfea4acf3b752e6684af2fdab90da8c7055bf8a2b421b0da41b2af0c198754d91008bf5f26c405ed78a7187f
 SHA512 
c13ca1699695bb2dd0994b50533a4c2af2cc5c10af2e7307555aee8a74c45704158f372114a8385cb740ac9fc4ae9207aaa0fbb1445e36e357ed541d5ee42937
+DIST trytond_authentication_sms-5.2.2.tar.gz 24860 BLAKE2B 
451d3eacf3495e7adda92a93a1459493f7e5de16e46eedf71c6b9e3e145c766f7a9472c27f99679490991eef952bcad4672777a0ebc4ad58c413dc1db75c4537
 SHA512 
e156b564a9e6b98f3bb0f207dd99e2f32681789c3ac0d6229065008b4b53073235c9b5b24e76b120a14fae7db6ae441a2737d3ab39b7f05ea16adbf3e2e570ce
+DIST trytond_authentication_sms-5.4.2.tar.gz 23929 BLAKE2B 
233403d53f7f36514954ae43d37e64f337d7b1cca0cebe52de58f5520395da4901e7a238c5f60335264aaf0f5663d6371713008a67278f630a1f2a68866caaf0
 SHA512 
566e02b2a40ba4a6d56f7988af323017f1888309e08d348ab60b8e176a80d8cc0aa0447f7a37f5fffd7932b85845bf652ca09910fdc6064567a361c05a067978
+EBUILD authentication_sms-5.0.3.ebuild 662 BLAKE2B 
4ef0c0291aa2e6e69cdbca8546072b9823c7e279513fc91ec918eba84e88f3ff2e6966385f79a31fb54dfc5eff6c2e42441cc94fd195247cfd570ff872cd1ed5
 SHA512 
c613ed55a134c604c735035fa4adbe215375f6d14833472f8246f8a1cc899789e5e9a7ff5f75bda7c2ba815f507658b578a77e775ec998c408b78127e1174205
+EBUILD authentication_sms-5.2.2.ebuild 651 BLAKE2B 
06739d5187e06b1057a82caeabfa96665715ebdc78bb632824f6d5f0d30e574684ef7105de7a024fb990438c95ab740906a94234ab3e5044ac39a2a7bca82a1a
 SHA512 
28d2401816d7afe2f0689923a6f1d448b0f32bede6f8c6101faf8596e916c967838d8b331b451f9467dbb889cbfb7d5f2a91a3a73d1f9c0dfeb6b2b3ee92d6f0
+EBUILD authentication_sms-5.4.2.ebuild 655 BLAKE2B 

[tryton-commits] changeset in tryton-overlay:default app-tryton/account_es: Versi...

2020-05-01 Thread Cédric Krier
changeset 8094a102edba in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=8094a102edba
description:
app-tryton/account_es: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/account_es/Manifest|  25 +++--
 app-tryton/account_es/account_es-5.2.2.ebuild |  37 ---
 app-tryton/account_es/account_es-5.2.3.ebuild |  37 +++
 app-tryton/account_es/account_es-5.4.1.ebuild |  37 ---
 app-tryton/account_es/account_es-5.4.2.ebuild |  37 +++
 5 files changed, 95 insertions(+), 78 deletions(-)

diffs (196 lines):

diff -r 50333b1a8c7f -r 8094a102edba app-tryton/account_es/Manifest
--- a/app-tryton/account_es/ManifestFri May 01 19:25:45 2020 +0200
+++ b/app-tryton/account_es/ManifestFri May 01 19:26:05 2020 +0200
@@ -1,7 +1,24 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST trytond_account_es-5.0.4.tar.gz 115376 BLAKE2B 
bf99f5bde73faedce9d29c0ee344c7c2f2d1d35d1d7126d6f578826939eeed8985ca574bc6943150aacefbf16aab95d33bc82dd417fffeea31e3e105c7087ed9
 SHA512 
5cd497dcc46ab1c2f04b4c24450e94870c8eeb36ed8ba937a96f0becc125486dbbccd82f366610791f357e26ba74c2578c003a0f9162f1dea6fd68c5e5f4
-DIST trytond_account_es-5.2.2.tar.gz 120568 BLAKE2B 
6447ae38a43509ca9521b3568f21964df85cfd095e23b93e1d2a0da6581e12bd4a4b557b676ff615cc6a46a3e90d71c5dda60651a883f6921e74f29f70deada8
 SHA512 
b9489838f9d8c04b218d7c63c316b91c9a4d07e39ddda86db92c435d2243d3965ed057ed4212372f14eb2af529bb9a9c713a44edb833e6d4d1e81d37b90910ee
-DIST trytond_account_es-5.4.1.tar.gz 120446 BLAKE2B 
f86c2e7059cbbeb1049e653a3cf7e09df3fd6219e1b999e8d7f62855e430143b4720b1ed7e8a3843a73a579be30c0de399f7bbd2ea5721e13d0dc60dd9852db4
 SHA512 
bc02da893062f86cb569773cd0bb8113882d42d4f9cc502048f677973885a46605b031195b0a9d7b28f5247c58bc9e6306f9477a8ff5de81052f887fe200ddb2
+DIST trytond_account_es-5.2.3.tar.gz 120686 BLAKE2B 
2e86ad2edf4f106db616bee67f5d048fc7ec721a9fc85e5daabfab246b9c282a18853d44a86f2c8aca782d7c44d62e20a47c8f60d9f26b01b74da83904eae4de
 SHA512 
d50f1f6b6e86af708a8846518b3ffb173af673876157edc2f196c2f3caa4ee4d4f12b569eb96f6376205c63e148b00923c4f93444a39c5f5de800ddf1d902262
+DIST trytond_account_es-5.4.2.tar.gz 120608 BLAKE2B 
b79a2d10511953f047bd18f93c55e769768f8fbafbf1da8b5a1b0a8efc37170d32124308de0dd593c5799392b22ab69bcb105f1d524a2e92f61c5466c3255a00
 SHA512 
87da51c9629da7a86075e0e0b17cc2e61776e68beaa9ab055ea6ed426db859861fb6046e2cef381dde22ff773808844739dce6475611f3b08dd091c206a33c9b
 EBUILD account_es-5.0.4.ebuild 830 BLAKE2B 
c50c999b847bc6c5ee1b987055bd3d7d4c6b603830bfa8fc9ed378de881922df224a40330a7c89c51de1f597273c659648ce64ab14df43272aeb739fc0ab1d11
 SHA512 
cbdf2211349d26c726c54ffe69083b5dbbe9f955902340882217046aa510de7775f3b434373d16c62e8948f1c965ecebc9f33865a0ed1712f4b7444868f6f28b
-EBUILD account_es-5.2.2.ebuild 958 BLAKE2B 
35848d6c7cdb31d365b58cb0f6640b5e8cdf4eb030b2053729dfbe56fec46b1ae6939b958085d0db59f3275956854f9973789300d13baeb2f0a596b6bc435f87
 SHA512 
0b4d0fb825c7d3f9c248788514b95f1c4bbea89dd57f6be05aa43b85f4152afad85842541002b2d1a5cde4bcc3103be6341fa902fc2807f3375fe5792af2d776
-EBUILD account_es-5.4.1.ebuild 962 BLAKE2B 
cfd516c77d6f6a13aaccd529a095cb2b4e0f3e66cd8c42c1a984d686eadc09e72c8d280b528527a557a8f247e1fa54fba8cf12ffcbcc40fb8d4419fa6f58847d
 SHA512 
8dcae75ac9145c38e947b65c3a07c7b06bf421cc96accb26df936edc08b844249662c15044683251f9d97cfc0d48696d9d1ac59861d3c384f9d85970370ac4de
+EBUILD account_es-5.2.3.ebuild 958 BLAKE2B 
83331bbcc9fd963020d0cc7f781672c582172d721ab808a147c867622e37d3460f4a605377b7e4dc66cddcf04f9a06021a67947bc4118ad8ba87380e7aa5509d
 SHA512 
53a840044c2edf8e70e4b9ae0336344fa3f0f098771d7f6652c260f7e9ea0c65ead1f184393ba5c9e1708982be4eb34cc5d0c5df195fb711c1a4987055545ef8
+EBUILD account_es-5.4.2.ebuild 962 BLAKE2B 
1016766e7eb7b4699f906154d3e39b017317e7401f1d5f7e06ea6646091328f8c3666467a7e185c6080baaf3e2a2479d93a507aa42e400e198578aec7db2
 SHA512 
7f830d0d594f98346252bb50e0abe0177e79304e4d57bfb3e5852984f4f39a336ca687d6310c035b7d229efc96a56201b47c541d74e964d6e1aaae336bf27aa6
 MISC metadata.xml 290 BLAKE2B 
b9a90348da9adbc610ea0abcbb8b31b02861e755dc1580a4862a59e3f0f01e1ae09a18dd01e4d003a4a11f75834ce3bc5b2d7de738fcce0bd21422eccb387b85
 SHA512 
45ce0cc5cdb3d52683102ece10da459a735b12cf8505b0e435c99980df4deba04eb8337d9e756daae2dd306863004c63b8e8742c788280f60cdc24453f02780b
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQGTBAEBCAB9FiEEdP/VdIYNMe45RAljV09u/05HdRcFAl6sW61fFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDc0
+RkZENTc0ODYwRDMxRUUzOTQ0MDk2MzU3NEY2RUZGNEU0Nzc1MTcACgkQV09u/05H
+dReSawgAiZMzKRA6A2/Rhqs+kb/a5YmbA3pVU0hnLKNztn7/DSDG4WuBIKTAHpTD
+TjzUtb7jZ4v998rSNU0v7F/c/WBpgroUr0Q+zWE+zFIhBW+jLYFPSiCE+U+RofEa
+RjXe9j+Tc3QOLkT1CqM+WtvfSWhfmazsmCvbxrFtLSEBcc+dDkGbWuEYZSZfyl2J

[tryton-commits] changeset in tryton-overlay:default app-tryton/account: Versions...

2020-05-01 Thread Cédric Krier
changeset 50333b1a8c7f in tryton-overlay:default
details: https://hg.tryton.org/tryton-overlay?cmd=changeset;node=50333b1a8c7f
description:
app-tryton/account: Versions bump

(Portage version: 2.3.89/hg/Linux x86_64, signed Manifest commit with 
key 0x574F6EFF4E477517)
Signed-off-by: Cédric Krier 
diffstat:

 app-tryton/account/Manifest  |  29 +++-
 app-tryton/account/account-5.0.11.ebuild |  38 
 app-tryton/account/account-5.0.12.ebuild |  38 
 app-tryton/account/account-5.2.7.ebuild  |  38 
 app-tryton/account/account-5.2.8.ebuild  |  38 
 app-tryton/account/account-5.4.3.ebuild  |  38 
 app-tryton/account/account-5.4.4.ebuild  |  38 
 7 files changed, 137 insertions(+), 120 deletions(-)

diffs (287 lines):

diff -r 24a1bf07da7a -r 50333b1a8c7f app-tryton/account/Manifest
--- a/app-tryton/account/Manifest   Sat Apr 18 16:52:22 2020 +0200
+++ b/app-tryton/account/Manifest   Fri May 01 19:25:45 2020 +0200
@@ -1,8 +1,25 @@
-DIST trytond_account-5.0.11.tar.gz 399642 BLAKE2B 
6b6a96e317c2d2ca7e8f613273246735e43b1991096f4b35fe25232f861d0c1591aa2d293c31e11563e8541e0714644cca401436df8f5a57454b25a7c79661dd
 SHA512 
c330210973c9eac87ac621e75616f5e2d6ffb8451b15d8edced7bdb1b71b61c03325bf90335aa8ad3d246f50f15b1b5f0df9f2a3d6323ed80a3fec8b38c7f013
-DIST trytond_account-5.2.7.tar.gz 448760 BLAKE2B 
8bc4f35bbc2befee57999f59dc9b4fe7066262561553391f0198bf8ac2e3eb6795064463fa3c8ad66bf3ba8a05fdcefb4bb7c4b3a243372db860848726c62412
 SHA512 
af70bcfdc1ac844e6d3611deaab4ea87145870afd222dcc85295f7c0935e742220e5f837fa660014ee1bb963c9fc66e31a128e1cbd2ea2d6ba3d6209b41de3f9
-DIST trytond_account-5.4.3.tar.gz 424328 BLAKE2B 
4aa3130af90315c1a7fff918831aee6d3c5cb39a34bb8e196081bd9ce0f626fb491ead37e32eebca835ed21b3b04af835b7a6ebcc42a6b0c7b8863b00a869c75
 SHA512 
b43db8d4d8befa9804962cbdb8cacfac0764c63c1f2ea0123ae7391e6f941cc6c507516479ab35fd2f4276861a8cd1933763e7bdf657d7bbe951fc3c2b7c725a
-EBUILD account-5.0.11.ebuild 1026 BLAKE2B 
f2039127712efeea7cc6c7b0ecdd4f9d3193b0d355fba7edecba30b7dc9280efb1397f84572d8abd14b7c58071b5be0a48f4c88ae4c2ee8db256c36a8675
 SHA512 
ca79aa428fae22c05d7593847190f6fc723558f50a556249dfb02c94e6c253e0189b1234b475f7f0e40685229de4dbf7a613c28fafe1aca54196b488521eb44c
-EBUILD account-5.2.7.ebuild 1015 BLAKE2B 
4833041d3df4ca6d3a916b9bb2056da15893a7408c15c87839dd3e6fb13bd530e105c9c1a12c2a163a708b8f85445666206a1066ffe928800be7a5f216afc23f
 SHA512 
8a777ff5e9cef9d5e36847a37f618eed07dfd0e70260992e05bec1530d10be62750ead8ef38e3da4ae4ba0b6b95f79e46550a4fdcae498eb9c26423929811e70
-EBUILD account-5.4.3.ebuild 1019 BLAKE2B 
ebd12fd97918c914b80a44258de0228a92f3542fbf67ab8ddd39bc7f95bcc3f4d52b72f0dcd39d1651d9495ed164a985d67c3692f803bdf8740e147f37fa3130
 SHA512 
0e23b16e19fd2589439819651ccc46e0a2e55e8ab7e7ce953ba28253585605f4999a18e97d873fa3f13325282283936b4f65f5a82d53432e2c6a269441de532d
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST trytond_account-5.0.12.tar.gz 399712 BLAKE2B 
c740d3f16ecc7e8bd298346d14fe87a5641109e92573a24a612aee53b8aafa79fd60aeafec780c69c2703ae09ab0ba202d37f4e392189c4fb31611d9c58cfdab
 SHA512 
8084cc1e7be74cd24dc2117a00705cc72fc99c283972d04530687f77b61edb1837312af4e1c739621b2d26aad409d3dfcc2320f1fc0beba3cf63066f45115643
+DIST trytond_account-5.2.8.tar.gz 448823 BLAKE2B 
d578c9ea0a3dac5e496caf4434b74aef55fdc13b3623554e910dd6dfb46177df8297c8b475f0c70b46df1487ef751209ae0b5f102d0443a07cb08aa86607662c
 SHA512 
ce182e011f8c005eafa02df8775e6bd28016034b7f51496f59246f1d29869934108ae0549e19e121206754e91dd996cf323b3cb686dcf3b7f62b302c9957099e
+DIST trytond_account-5.4.4.tar.gz 424345 BLAKE2B 
1b5a475dc72e02e2bbe12a2b2018077e39cc2d48fd3788fb9feba2dc92984d91fb151dda08afffc7c02af9db0e2f7cd944dff41964a87313a734a27bd00d737f
 SHA512 
b18f26064446fcfe8d73f4b23750f3bdd32934d6ef8aeaf655e4284b463cf2d6f04c2d95f645e69a65d66b4f3b638453395c0552387f0ddb33293e69541f8533
+EBUILD account-5.0.12.ebuild 1026 BLAKE2B 
f2039127712efeea7cc6c7b0ecdd4f9d3193b0d355fba7edecba30b7dc9280efb1397f84572d8abd14b7c58071b5be0a48f4c88ae4c2ee8db256c36a8675
 SHA512 
ca79aa428fae22c05d7593847190f6fc723558f50a556249dfb02c94e6c253e0189b1234b475f7f0e40685229de4dbf7a613c28fafe1aca54196b488521eb44c
+EBUILD account-5.2.8.ebuild 1015 BLAKE2B 
4833041d3df4ca6d3a916b9bb2056da15893a7408c15c87839dd3e6fb13bd530e105c9c1a12c2a163a708b8f85445666206a1066ffe928800be7a5f216afc23f
 SHA512 
8a777ff5e9cef9d5e36847a37f618eed07dfd0e70260992e05bec1530d10be62750ead8ef38e3da4ae4ba0b6b95f79e46550a4fdcae498eb9c26423929811e70
+EBUILD account-5.4.4.ebuild 1019 BLAKE2B 
ebd12fd97918c914b80a44258de0228a92f3542fbf67ab8ddd39bc7f95bcc3f4d52b72f0dcd39d1651d9495ed164a985d67c3692f803bdf8740e147f37fa3130
 SHA512 

[tryton-commits] changeset in trytond:5.4 Prepare release 5.4.8 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 38787b0e9b81 in trytond:5.4
details: https://hg.tryton.org/trytond?cmd=changeset;node=38787b0e9b81
description:
Prepare release 5.4.8 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r 8d57e541630f -r 38787b0e9b81 CHANGELOG
--- a/CHANGELOG Sat Apr 25 08:50:14 2020 +0200
+++ b/CHANGELOG Fri May 01 15:12:17 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.8 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.7 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 
diff -r 8d57e541630f -r 38787b0e9b81 COPYRIGHT
--- a/COPYRIGHT Sat Apr 25 08:50:14 2020 +0200
+++ b/COPYRIGHT Fri May 01 15:12:17 2020 +0200
@@ -3,7 +3,7 @@
 Copyright (C) 2007-2013 Bertrand Chenal.
 Copyright (C) 2008-2020 B2CK SPRL.
 Copyright (C) 2011 Openlabs Technologies & Consulting (P) Ltd.
-Copyright (C) 2011-2019 Nicolas Évrard.
+Copyright (C) 2011-2020 Nicolas Évrard.
 
 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



[tryton-commits] changeset in trytond:5.4 Add tag 5.4.8 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 6ce3ca9b5d61 in trytond:5.4
details: https://hg.tryton.org/trytond?cmd=changeset;node=6ce3ca9b5d61
description:
Add tag 5.4.8 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 38787b0e9b81 -r 6ce3ca9b5d61 .hgtags
--- a/.hgtags   Fri May 01 15:12:17 2020 +0200
+++ b/.hgtags   Fri May 01 15:12:18 2020 +0200
@@ -28,3 +28,4 @@
 21863bddd40e1967150f9ceaba02e10c03ecbe66 5.4.5
 04564e9cf7af2f0e9a688380ddf30084e827225f 5.4.6
 566d4791d9b81eb6acc68a955e3bea59a9fdc9ed 5.4.7
+38787b0e9b8140d9d441d6b433a283cf485f8775 5.4.8



[tryton-commits] changeset in trytond:5.0 Prepare release 5.0.21 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 95ef70d1e73f in trytond:5.0
details: https://hg.tryton.org/trytond?cmd=changeset;node=95ef70d1e73f
description:
Prepare release 5.0.21 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r f78cf720e676 -r 95ef70d1e73f CHANGELOG
--- a/CHANGELOG Sat Apr 25 08:50:14 2020 +0200
+++ b/CHANGELOG Fri May 01 15:15:17 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.21 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.20 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 
diff -r f78cf720e676 -r 95ef70d1e73f COPYRIGHT
--- a/COPYRIGHT Sat Apr 25 08:50:14 2020 +0200
+++ b/COPYRIGHT Fri May 01 15:15:17 2020 +0200
@@ -3,7 +3,7 @@
 Copyright (C) 2007-2013 Bertrand Chenal.
 Copyright (C) 2008-2020 B2CK SPRL.
 Copyright (C) 2011 Openlabs Technologies & Consulting (P) Ltd.
-Copyright (C) 2011-2019 Nicolas Évrard.
+Copyright (C) 2011-2020 Nicolas Évrard.
 
 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



[tryton-commits] changeset in trytond:5.0 Add tag 5.0.21 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 6a4909729380 in trytond:5.0
details: https://hg.tryton.org/trytond?cmd=changeset;node=6a4909729380
description:
Add tag 5.0.21 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 95ef70d1e73f -r 6a4909729380 .hgtags
--- a/.hgtags   Fri May 01 15:15:17 2020 +0200
+++ b/.hgtags   Fri May 01 15:15:18 2020 +0200
@@ -39,3 +39,4 @@
 d5ceda2dfd6a678e19bd88ef072a4b7a118834b5 5.0.18
 643da5238d7f275e8ecf667b5c05897222acaa24 5.0.19
 1b12b20533d43231680427be375fd9bf5dc8b432 5.0.20
+95ef70d1e73fb3aaceb57c28fbefe5be0fa578b5 5.0.21



[tryton-commits] changeset in trytond:5.2 Increase version number

2020-05-01 Thread Cédric Krier
changeset e960145a81ea in trytond:5.2
details: https://hg.tryton.org/trytond?cmd=changeset;node=e960145a81ea
description:
Increase version number
diffstat:

 trytond/__init__.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 4e41ffdf560b -r e960145a81ea trytond/__init__.py
--- a/trytond/__init__.py   Fri May 01 15:14:35 2020 +0200
+++ b/trytond/__init__.py   Fri May 01 15:14:50 2020 +0200
@@ -5,7 +5,7 @@
 import warnings
 from email import charset
 
-__version__ = "5.2.15"
+__version__ = "5.2.16"
 
 os.environ['TZ'] = 'UTC'
 if hasattr(time, 'tzset'):



[tryton-commits] changeset in trytond:5.2 Prepare release 5.2.15 [skip ci]

2020-05-01 Thread Cédric Krier
changeset d647abbefe43 in trytond:5.2
details: https://hg.tryton.org/trytond?cmd=changeset;node=d647abbefe43
description:
Prepare release 5.2.15 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r 67ebdacc8cb7 -r d647abbefe43 CHANGELOG
--- a/CHANGELOG Sat Apr 25 08:50:14 2020 +0200
+++ b/CHANGELOG Fri May 01 15:14:34 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.15 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.14 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 
diff -r 67ebdacc8cb7 -r d647abbefe43 COPYRIGHT
--- a/COPYRIGHT Sat Apr 25 08:50:14 2020 +0200
+++ b/COPYRIGHT Fri May 01 15:14:34 2020 +0200
@@ -3,7 +3,7 @@
 Copyright (C) 2007-2013 Bertrand Chenal.
 Copyright (C) 2008-2020 B2CK SPRL.
 Copyright (C) 2011 Openlabs Technologies & Consulting (P) Ltd.
-Copyright (C) 2011-2019 Nicolas Évrard.
+Copyright (C) 2011-2020 Nicolas Évrard.
 
 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



[tryton-commits] changeset in tryton:5.0 Increase version number

2020-05-01 Thread Cédric Krier
changeset fc3c985a3838 in tryton:5.0
details: https://hg.tryton.org/tryton?cmd=changeset;node=fc3c985a3838
description:
Increase version number
diffstat:

 tryton/__init__.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (11 lines):

diff -r 40ce182a8d61 -r fc3c985a3838 tryton/__init__.py
--- a/tryton/__init__.pyFri May 01 15:27:36 2020 +0200
+++ b/tryton/__init__.pyFri May 01 15:27:49 2020 +0200
@@ -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.
-__version__ = "5.0.23"
+__version__ = "5.0.24"
 import sys
 
 import gi



[tryton-commits] changeset in tryton:5.2 Increase version number

2020-05-01 Thread Cédric Krier
changeset c711a3a3e110 in tryton:5.2
details: https://hg.tryton.org/tryton?cmd=changeset;node=c711a3a3e110
description:
Increase version number
diffstat:

 tryton/__init__.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (11 lines):

diff -r 4db46469753a -r c711a3a3e110 tryton/__init__.py
--- a/tryton/__init__.pyFri May 01 15:21:32 2020 +0200
+++ b/tryton/__init__.pyFri May 01 15:21:46 2020 +0200
@@ -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.
-__version__ = "5.2.15"
+__version__ = "5.2.16"
 import gi
 import locale
 



[tryton-commits] changeset in tryton:5.2 Add tag 5.2.15 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 4db46469753a in tryton:5.2
details: https://hg.tryton.org/tryton?cmd=changeset;node=4db46469753a
description:
Add tag 5.2.15 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 98b60b607bcb -r 4db46469753a .hgtags
--- a/.hgtags   Fri May 01 15:21:32 2020 +0200
+++ b/.hgtags   Fri May 01 15:21:32 2020 +0200
@@ -34,3 +34,4 @@
 5aef7baa76ca2810837ef3f1641e00d7d4faf824 5.2.12
 07a34a8d34ba963753c56c0b2e6b49bc3b31b23e 5.2.13
 914175aeee5624182a14ec98538b596a3ed5250b 5.2.14
+98b60b607bcbef7757b222c6e5b581873e420b08 5.2.15



[tryton-commits] changeset in tryton:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset a54a70a421e6 in tryton:5.4
details: https://hg.tryton.org/tryton?cmd=changeset;node=a54a70a421e6
description:
Increase version number
diffstat:

 tryton/__init__.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (11 lines):

diff -r 22a16799905e -r a54a70a421e6 tryton/__init__.py
--- a/tryton/__init__.pyFri May 01 15:16:44 2020 +0200
+++ b/tryton/__init__.pyFri May 01 15:16:57 2020 +0200
@@ -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.
-__version__ = "5.4.7"
+__version__ = "5.4.8"
 import gi
 import locale
 



[tryton-commits] changeset in tryton:5.0 Prepare release 5.0.23 [skip ci]

2020-05-01 Thread Cédric Krier
changeset eb70562b0034 in tryton:5.0
details: https://hg.tryton.org/tryton?cmd=changeset;node=eb70562b0034
description:
Prepare release 5.0.23 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 6f0735ee89f4 -r eb70562b0034 CHANGELOG
--- a/CHANGELOG Fri Apr 24 21:55:30 2020 +0200
+++ b/CHANGELOG Fri May 01 15:27:35 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.23 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.22 - 2020-03-15
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in trytond:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset 9cbaccc6622c in trytond:5.4
details: https://hg.tryton.org/trytond?cmd=changeset;node=9cbaccc6622c
description:
Increase version number
diffstat:

 trytond/__init__.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 6ce3ca9b5d61 -r 9cbaccc6622c trytond/__init__.py
--- a/trytond/__init__.py   Fri May 01 15:12:18 2020 +0200
+++ b/trytond/__init__.py   Fri May 01 15:12:34 2020 +0200
@@ -5,7 +5,7 @@
 import warnings
 from email import charset
 
-__version__ = "5.4.8"
+__version__ = "5.4.9"
 
 os.environ['TZ'] = 'UTC'
 if hasattr(time, 'tzset'):



[tryton-commits] changeset in trytond:5.0 Increase version number

2020-05-01 Thread Cédric Krier
changeset 04a96436996f in trytond:5.0
details: https://hg.tryton.org/trytond?cmd=changeset;node=04a96436996f
description:
Increase version number
diffstat:

 trytond/__init__.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 6a4909729380 -r 04a96436996f trytond/__init__.py
--- a/trytond/__init__.py   Fri May 01 15:15:18 2020 +0200
+++ b/trytond/__init__.py   Fri May 01 15:15:32 2020 +0200
@@ -5,7 +5,7 @@
 import warnings
 from email import charset
 
-__version__ = "5.0.21"
+__version__ = "5.0.22"
 
 os.environ['TZ'] = 'UTC'
 if hasattr(time, 'tzset'):



[tryton-commits] changeset in tryton:5.0 Add tag 5.0.23 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 40ce182a8d61 in tryton:5.0
details: https://hg.tryton.org/tryton?cmd=changeset;node=40ce182a8d61
description:
Add tag 5.0.23 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r eb70562b0034 -r 40ce182a8d61 .hgtags
--- a/.hgtags   Fri May 01 15:27:35 2020 +0200
+++ b/.hgtags   Fri May 01 15:27:36 2020 +0200
@@ -41,3 +41,4 @@
 43d36099cd690abc7776da2d9e5e26cb629db8c2 5.0.20
 50a05a2e9ee66cb8df341f45787f3ca74b49efd1 5.0.21
 57e100530b357cea362c05311fba186c05f3b5e6 5.0.22
+eb70562b0034621fd60bad6f8675df4fde3247d4 5.0.23



[tryton-commits] changeset in trytond:5.2 Add tag 5.2.15 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 4e41ffdf560b in trytond:5.2
details: https://hg.tryton.org/trytond?cmd=changeset;node=4e41ffdf560b
description:
Add tag 5.2.15 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r d647abbefe43 -r 4e41ffdf560b .hgtags
--- a/.hgtags   Fri May 01 15:14:34 2020 +0200
+++ b/.hgtags   Fri May 01 15:14:35 2020 +0200
@@ -34,3 +34,4 @@
 d9d5240b1e8966f80f74f15933cb3fa641cba5c1 5.2.12
 8fc2d6f98d7b2b9a0f674e23a7ee486970a30902 5.2.13
 732633a7fe34a4a20c6408c0f33181505a05aeeb 5.2.14
+d647abbefe43bc434319efacbff63a0954e1a3d9 5.2.15



[tryton-commits] changeset in tryton:5.4 Add tag 5.4.7 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 22a16799905e in tryton:5.4
details: https://hg.tryton.org/tryton?cmd=changeset;node=22a16799905e
description:
Add tag 5.4.7 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 2f4660707f7b -r 22a16799905e .hgtags
--- a/.hgtags   Fri May 01 15:16:44 2020 +0200
+++ b/.hgtags   Fri May 01 15:16:44 2020 +0200
@@ -27,3 +27,4 @@
 105551a8e1187c60a63e9b284dca947831c4294f 5.4.4
 78a3dd87ab1a68515dd64e2c393b6178ebcd06c4 5.4.5
 bcd72840495fcf478f0be95e0ce9cd1f1042c997 5.4.6
+2f4660707f7b649432d802e5977d559da01666cb 5.4.7



[tryton-commits] changeset in tryton:5.4 Prepare release 5.4.7 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 2f4660707f7b in tryton:5.4
details: https://hg.tryton.org/tryton?cmd=changeset;node=2f4660707f7b
description:
Prepare release 5.4.7 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r a474116c4b2e -r 2f4660707f7b CHANGELOG
--- a/CHANGELOG Fri Apr 24 21:57:10 2020 +0200
+++ b/CHANGELOG Fri May 01 15:16:44 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.7 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.6 - 2020-03-15
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in tryton:5.2 Prepare release 5.2.15 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 98b60b607bcb in tryton:5.2
details: https://hg.tryton.org/tryton?cmd=changeset;node=98b60b607bcb
description:
Prepare release 5.2.15 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 5c15e55109c0 -r 98b60b607bcb CHANGELOG
--- a/CHANGELOG Fri Apr 24 21:57:10 2020 +0200
+++ b/CHANGELOG Fri May 01 15:21:32 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.15 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.14 - 2020-03-15
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in sao:5.0 Add tag 5.0.22 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 5b2fd5e5d771 in sao:5.0
details: https://hg.tryton.org/sao?cmd=changeset;node=5b2fd5e5d771
description:
Add tag 5.0.22 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 7a3d4b507504 -r 5b2fd5e5d771 .hgtags
--- a/.hgtags   Fri May 01 15:38:13 2020 +0200
+++ b/.hgtags   Fri May 01 15:38:13 2020 +0200
@@ -26,3 +26,4 @@
 ccbb7bc79e282c4e73c0dd1b3b91e6c4eaa1842e 5.0.19
 4ac932339faa26f5a082d71042af82de9cea39ff 5.0.20
 40a354a1246d4d7addc0eca61f0718e3643642f2 5.0.21
+7a3d4b507504a83186ac2a4eb8d92477598ff3ac 5.0.22



[tryton-commits] changeset in sao:5.0 Increase version number

2020-05-01 Thread Cédric Krier
changeset 61fe8f6d88c4 in sao:5.0
details: https://hg.tryton.org/sao?cmd=changeset;node=61fe8f6d88c4
description:
Increase version number
diffstat:

 package.json |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 5b2fd5e5d771 -r 61fe8f6d88c4 package.json
--- a/package.json  Fri May 01 15:38:13 2020 +0200
+++ b/package.json  Fri May 01 15:38:21 2020 +0200
@@ -2,7 +2,7 @@
   "name": "tryton-sao",
   "title": "sao",
   "description": "Tryton webclient",
-  "version": "5.0.22",
+  "version": "5.0.23",
   "homepage": "http://www.tryton.org/;,
   "author": {
 "name": "Tryton"



[tryton-commits] changeset in sao:5.2 Increase version number

2020-05-01 Thread Cédric Krier
changeset 6ec44c348fe1 in sao:5.2
details: https://hg.tryton.org/sao?cmd=changeset;node=6ec44c348fe1
description:
Increase version number
diffstat:

 package.json |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 432eecf9ee1e -r 6ec44c348fe1 package.json
--- a/package.json  Fri May 01 15:37:52 2020 +0200
+++ b/package.json  Fri May 01 15:38:01 2020 +0200
@@ -2,7 +2,7 @@
   "name": "tryton-sao",
   "title": "sao",
   "description": "Tryton webclient",
-  "version": "5.2.14",
+  "version": "5.2.15",
   "homepage": "http://www.tryton.org/;,
   "author": {
 "name": "Tryton"



[tryton-commits] changeset in sao:5.0 Prepare release 5.0.22 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 7a3d4b507504 in sao:5.0
details: https://hg.tryton.org/sao?cmd=changeset;node=7a3d4b507504
description:
Prepare release 5.0.22 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r e7459d0d7127 -r 7a3d4b507504 CHANGELOG
--- a/CHANGELOG Sun Apr 19 13:11:48 2020 +0200
+++ b/CHANGELOG Fri May 01 15:38:13 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.22 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.21 - 2020-03-15
 * Bug fixes (see mercurial logs for details)
 
diff -r e7459d0d7127 -r 7a3d4b507504 COPYRIGHT
--- a/COPYRIGHT Sun Apr 19 13:11:48 2020 +0200
+++ b/COPYRIGHT Fri May 01 15:38:13 2020 +0200
@@ -1,4 +1,4 @@
-Copyright (C) 2012-2019 Nicolas Évrard.
+Copyright (C) 2012-2020 Nicolas Évrard.
 Copyright (C) 2012-2020 Cédric Krier.
 Copyright (C) 2012-2014 Bertrand Chenal.
 Copyright (C) 2012-2020 B2CK SPRL.



[tryton-commits] changeset in modules/user_role:5.2 Add tag 5.2.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 65d86509295c in modules/user_role:5.2
details: https://hg.tryton.org/modules/user_role?cmd=changeset;node=65d86509295c
description:
Add tag 5.2.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (7 lines):

diff -r 53bb6260386b -r 65d86509295c .hgtags
--- a/.hgtags   Fri May 01 15:48:42 2020 +0200
+++ b/.hgtags   Fri May 01 15:48:42 2020 +0200
@@ -1,2 +1,3 @@
 0f3d5527aad7e83e07c84b19983b86f5b580d9b9 5.2.0
 e50721e075f0d910bb2a829aebabb625b6031535 5.2.1
+53bb6260386b88e337f061a38b1411ff31cb16b6 5.2.2



[tryton-commits] changeset in sao:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset 608e57be1512 in sao:5.4
details: https://hg.tryton.org/sao?cmd=changeset;node=608e57be1512
description:
Increase version number
diffstat:

 package.json |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 62855be74801 -r 608e57be1512 package.json
--- a/package.json  Fri May 01 15:36:37 2020 +0200
+++ b/package.json  Fri May 01 15:36:48 2020 +0200
@@ -2,7 +2,7 @@
   "name": "tryton-sao",
   "title": "sao",
   "description": "Tryton webclient",
-  "version": "5.4.6",
+  "version": "5.4.7",
   "homepage": "http://www.tryton.org/;,
   "author": {
 "name": "Tryton"



[tryton-commits] changeset in modules/user_role:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset a5f665e25c1a in modules/user_role:5.4
details: https://hg.tryton.org/modules/user_role?cmd=changeset;node=a5f665e25c1a
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r e94d0999aa1a -r a5f665e25c1a tryton.cfg
--- a/tryton.cfgFri May 01 15:39:44 2020 +0200
+++ b/tryton.cfgFri May 01 15:39:52 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.2
+version=5.4.3
 depends:
 ir
 res



[tryton-commits] changeset in sao:5.2 Prepare release 5.2.14 [skip ci]

2020-05-01 Thread Cédric Krier
changeset d6172a6f8405 in sao:5.2
details: https://hg.tryton.org/sao?cmd=changeset;node=d6172a6f8405
description:
Prepare release 5.2.14 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 7dd5ec6e7abe -r d6172a6f8405 CHANGELOG
--- a/CHANGELOG Sun Apr 19 13:11:48 2020 +0200
+++ b/CHANGELOG Fri May 01 15:37:52 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.14 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.13 - 2020-03-15
 * Bug fixes (see mercurial logs for details)
 
diff -r 7dd5ec6e7abe -r d6172a6f8405 COPYRIGHT
--- a/COPYRIGHT Sun Apr 19 13:11:48 2020 +0200
+++ b/COPYRIGHT Fri May 01 15:37:52 2020 +0200
@@ -1,4 +1,4 @@
-Copyright (C) 2012-2019 Nicolas Évrard.
+Copyright (C) 2012-2020 Nicolas Évrard.
 Copyright (C) 2012-2020 Cédric Krier.
 Copyright (C) 2012-2014 Bertrand Chenal.
 Copyright (C) 2012-2020 B2CK SPRL.



[tryton-commits] changeset in sao:5.4 Prepare release 5.4.6 [skip ci]

2020-05-01 Thread Cédric Krier
changeset cb8c785e042d in sao:5.4
details: https://hg.tryton.org/sao?cmd=changeset;node=cb8c785e042d
description:
Prepare release 5.4.6 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 22abfffb95b5 -r cb8c785e042d CHANGELOG
--- a/CHANGELOG Sun Apr 19 13:11:48 2020 +0200
+++ b/CHANGELOG Fri May 01 15:36:37 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.6 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.5 - 2020-03-15
 * Bug fixes (see mercurial logs for details)
 
diff -r 22abfffb95b5 -r cb8c785e042d COPYRIGHT
--- a/COPYRIGHT Sun Apr 19 13:11:48 2020 +0200
+++ b/COPYRIGHT Fri May 01 15:36:37 2020 +0200
@@ -1,4 +1,4 @@
-Copyright (C) 2012-2019 Nicolas Évrard.
+Copyright (C) 2012-2020 Nicolas Évrard.
 Copyright (C) 2012-2020 Cédric Krier.
 Copyright (C) 2012-2014 Bertrand Chenal.
 Copyright (C) 2012-2020 B2CK SPRL.



[tryton-commits] changeset in sao:5.2 Add tag 5.2.14 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 432eecf9ee1e in sao:5.2
details: https://hg.tryton.org/sao?cmd=changeset;node=432eecf9ee1e
description:
Add tag 5.2.14 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r d6172a6f8405 -r 432eecf9ee1e .hgtags
--- a/.hgtags   Fri May 01 15:37:52 2020 +0200
+++ b/.hgtags   Fri May 01 15:37:52 2020 +0200
@@ -19,3 +19,4 @@
 b8d397a4dc1e37bfa06d723949a74c492bb2de7f 5.2.11
 74b258e746c813388c368834395e1e289da46ccd 5.2.12
 f695198bed6aa6c6f0cd4d4fa0d19c5bc76cbbfb 5.2.13
+d6172a6f8405f39519cede0b65b3562043dfca33 5.2.14



[tryton-commits] changeset in modules/user_role:5.2 Increase version number

2020-05-01 Thread Cédric Krier
changeset 15fc31d7aba7 in modules/user_role:5.2
details: https://hg.tryton.org/modules/user_role?cmd=changeset;node=15fc31d7aba7
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 65d86509295c -r 15fc31d7aba7 tryton.cfg
--- a/tryton.cfgFri May 01 15:48:42 2020 +0200
+++ b/tryton.cfgFri May 01 15:48:51 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.2.2
+version=5.2.3
 depends:
 ir
 res



[tryton-commits] changeset in modules/user_role:5.2 Prepare release 5.2.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 53bb6260386b in modules/user_role:5.2
details: https://hg.tryton.org/modules/user_role?cmd=changeset;node=53bb6260386b
description:
Prepare release 5.2.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r a96158900bbb -r 53bb6260386b CHANGELOG
--- a/CHANGELOG Thu Apr 23 22:37:15 2020 +0200
+++ b/CHANGELOG Fri May 01 15:48:42 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.0 Increase vers...

2020-05-01 Thread Cédric Krier
changeset f756ceffc1dc in modules/sale_supply_drop_shipment:5.0
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=f756ceffc1dc
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r a24cbc75c6d3 -r f756ceffc1dc tryton.cfg
--- a/tryton.cfgFri May 01 16:08:07 2020 +0200
+++ b/tryton.cfgFri May 01 16:08:18 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.0.5
+version=5.0.6
 depends:
 company
 ir



[tryton-commits] changeset in modules/user_role:5.4 Add tag 5.4.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset e94d0999aa1a in modules/user_role:5.4
details: https://hg.tryton.org/modules/user_role?cmd=changeset;node=e94d0999aa1a
description:
Add tag 5.4.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 5b975bd33bc4 -r e94d0999aa1a .hgtags
--- a/.hgtags   Fri May 01 15:39:43 2020 +0200
+++ b/.hgtags   Fri May 01 15:39:44 2020 +0200
@@ -1,3 +1,4 @@
 0f3d5527aad7e83e07c84b19983b86f5b580d9b9 5.2.0
 32c3f6707c841e89eaa8e1200b4ed4b4b8c2510d 5.4.0
 b8481b8489fa3f0fc3304d7f6ce01b93daa841f9 5.4.1
+5b975bd33bc4e18aa28c3e5fe8894d3dea752c47 5.4.2



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.0 Add tag 5.0.5...

2020-05-01 Thread Cédric Krier
changeset a24cbc75c6d3 in modules/sale_supply_drop_shipment:5.0
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=a24cbc75c6d3
description:
Add tag 5.0.5 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 5958b7bb95a8 -r a24cbc75c6d3 .hgtags
--- a/.hgtags   Fri May 01 16:08:06 2020 +0200
+++ b/.hgtags   Fri May 01 16:08:07 2020 +0200
@@ -14,3 +14,4 @@
 5595e1e377b5ff99db98d61161a7726d12ba7070 5.0.2
 dffa0d79ee123c26f9bf677131ab607382354cec 5.0.3
 e7b36d3d0a9ae713e4b030a5bbe36150e39da2a9 5.0.4
+5958b7bb95a86bd4aa4defe8dbb83328ee04ea3b 5.0.5



[tryton-commits] changeset in sao:5.4 Add tag 5.4.6 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 62855be74801 in sao:5.4
details: https://hg.tryton.org/sao?cmd=changeset;node=62855be74801
description:
Add tag 5.4.6 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r cb8c785e042d -r 62855be74801 .hgtags
--- a/.hgtags   Fri May 01 15:36:37 2020 +0200
+++ b/.hgtags   Fri May 01 15:36:37 2020 +0200
@@ -12,3 +12,4 @@
 41ffeef21a4c83f68bba3c22f8262eba95d05c22 5.4.3
 b0820f61554c93d903d0bb9085246d1a6702b348 5.4.4
 4e732b82db748734282a64c76cb72cf4b0f9dfd3 5.4.5
+cb8c785e042d8105b6c1a3ac008db898b3a75083 5.4.6



[tryton-commits] changeset in modules/user_role:5.4 Prepare release 5.4.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 5b975bd33bc4 in modules/user_role:5.4
details: https://hg.tryton.org/modules/user_role?cmd=changeset;node=5b975bd33bc4
description:
Prepare release 5.4.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 202728c0c6aa -r 5b975bd33bc4 CHANGELOG
--- a/CHANGELOG Thu Apr 23 22:37:15 2020 +0200
+++ b/CHANGELOG Fri May 01 15:39:43 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/sale_price_list:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset 4722349c2aa2 in modules/sale_price_list:5.4
details: 
https://hg.tryton.org/modules/sale_price_list?cmd=changeset;node=4722349c2aa2
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 065e13f3ab1a -r 4722349c2aa2 tryton.cfg
--- a/tryton.cfgFri May 01 16:09:34 2020 +0200
+++ b/tryton.cfgFri May 01 16:09:42 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.2
+version=5.4.3
 depends:
 company
 ir



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.4 Add tag 5.4.3...

2020-05-01 Thread Cédric Krier
changeset 131a3c3aef95 in modules/sale_supply_drop_shipment:5.4
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=131a3c3aef95
description:
Add tag 5.4.3 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 3bcbb9c2d460 -r 131a3c3aef95 .hgtags
--- a/.hgtags   Fri May 01 15:59:45 2020 +0200
+++ b/.hgtags   Fri May 01 15:59:45 2020 +0200
@@ -14,3 +14,4 @@
 48139e76f98ce32ede8a0f79c414a674a4ebfdcf 5.4.0
 68bb2fdcfaf3e69695206ca1c334ed99b5cb2322 5.4.1
 c337d9df4ab778d87a0384595bf90a4a79f4b125 5.4.2
+3bcbb9c2d460cfc73ae0a83b8fe33c7c006efff3 5.4.3



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.2 Increase vers...

2020-05-01 Thread Cédric Krier
changeset 420732f4b29c in modules/sale_supply_drop_shipment:5.2
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=420732f4b29c
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 9066b07f13e1 -r 420732f4b29c tryton.cfg
--- a/tryton.cfgFri May 01 16:02:35 2020 +0200
+++ b/tryton.cfgFri May 01 16:02:44 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.2.4
+version=5.2.5
 depends:
 company
 ir



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.2 Add tag 5.2.4...

2020-05-01 Thread Cédric Krier
changeset 9066b07f13e1 in modules/sale_supply_drop_shipment:5.2
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=9066b07f13e1
description:
Add tag 5.2.4 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r b697b84544e1 -r 9066b07f13e1 .hgtags
--- a/.hgtags   Fri May 01 16:02:35 2020 +0200
+++ b/.hgtags   Fri May 01 16:02:35 2020 +0200
@@ -14,3 +14,4 @@
 1acda31411628c15660995f499f459077253494c 5.2.1
 410e7f8acc889589635adeb507efeea9d7c7c72d 5.2.2
 552e4758a75754bbd6843c7b1273a2dfe591af3d 5.2.3
+b697b84544e1416932e65724c49ae6fb1c17a919 5.2.4



[tryton-commits] changeset in modules/sale_price_list:5.4 Add tag 5.4.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 065e13f3ab1a in modules/sale_price_list:5.4
details: 
https://hg.tryton.org/modules/sale_price_list?cmd=changeset;node=065e13f3ab1a
description:
Add tag 5.4.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 51189dc48659 -r 065e13f3ab1a .hgtags
--- a/.hgtags   Fri May 01 16:09:33 2020 +0200
+++ b/.hgtags   Fri May 01 16:09:34 2020 +0200
@@ -20,3 +20,4 @@
 3e8dba0fb8a97f7f85b4b81c068bb1035ed9f591 5.2.0
 d55fde4995043af44a2db09d2b30fc05aa07e650 5.4.0
 38e8270df75ddd12cebf189c149916722640a440 5.4.1
+51189dc48659e7017b892dcc6412f5d51bf62c8f 5.4.2



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.4 Increase vers...

2020-05-01 Thread Cédric Krier
changeset a35f0abd80b7 in modules/sale_supply_drop_shipment:5.4
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=a35f0abd80b7
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 131a3c3aef95 -r a35f0abd80b7 tryton.cfg
--- a/tryton.cfgFri May 01 15:59:45 2020 +0200
+++ b/tryton.cfgFri May 01 15:59:54 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.3
+version=5.4.4
 depends:
 company
 ir



[tryton-commits] changeset in modules/sale_complaint:5.0 Add tag 5.0.4 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 5061843d9a66 in modules/sale_complaint:5.0
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=5061843d9a66
description:
Add tag 5.0.4 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r b222c68d120e -r 5061843d9a66 .hgtags
--- a/.hgtags   Fri May 01 16:11:05 2020 +0200
+++ b/.hgtags   Fri May 01 16:11:06 2020 +0200
@@ -8,3 +8,4 @@
 666ee5b0bf42c77aec2b6a3b383ae70778524107 5.0.1
 723da27b66b2cc9f76152bb4609ceeba838bd754 5.0.2
 275bb02cdb18de27a4c3dfc12a41746524db96df 5.0.3
+b222c68d120e158353db86ed70e01811f741468c 5.0.4



[tryton-commits] changeset in modules/sale_price_list:5.4 Prepare release 5.4.2 [...

2020-05-01 Thread Cédric Krier
changeset 51189dc48659 in modules/sale_price_list:5.4
details: 
https://hg.tryton.org/modules/sale_price_list?cmd=changeset;node=51189dc48659
description:
Prepare release 5.4.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 4fe8deb6d7b2 -r 51189dc48659 CHANGELOG
--- a/CHANGELOG Sun Apr 12 21:56:38 2020 +0200
+++ b/CHANGELOG Fri May 01 16:09:33 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/purchase_shipment_cost:5.0 Add tag 5.0.3 [s...

2020-05-01 Thread Cédric Krier
changeset 8e7ead562590 in modules/purchase_shipment_cost:5.0
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=8e7ead562590
description:
Add tag 5.0.3 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 960db945e5ea -r 8e7ead562590 .hgtags
--- a/.hgtags   Fri May 01 16:20:13 2020 +0200
+++ b/.hgtags   Fri May 01 16:20:13 2020 +0200
@@ -14,3 +14,4 @@
 1f4d598b3d9c2afcff4aa60fb22a76d54e989bf3 5.0.0
 f641d7e64b7f9727d02358a40c7862b3197f1753 5.0.1
 1458b71fa93bbaee4bbe159a002bfe32a6592885 5.0.2
+960db945e5eac073b8dc6e31ace36fcac87c1177 5.0.3



[tryton-commits] changeset in modules/sale_supply_drop_shipment:5.2 Prepare relea...

2020-05-01 Thread Cédric Krier
changeset b697b84544e1 in modules/sale_supply_drop_shipment:5.2
details: 
https://hg.tryton.org/modules/sale_supply_drop_shipment?cmd=changeset;node=b697b84544e1
description:
Prepare release 5.2.4 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r acef00349c65 -r b697b84544e1 CHANGELOG
--- a/CHANGELOG Thu Apr 23 21:39:31 2020 +0200
+++ b/CHANGELOG Fri May 01 16:02:35 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.4 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.3 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/sale_amendment:5.4 Prepare release 5.4.3 [s...

2020-05-01 Thread Cédric Krier
changeset ecfcfa529a66 in modules/sale_amendment:5.4
details: 
https://hg.tryton.org/modules/sale_amendment?cmd=changeset;node=ecfcfa529a66
description:
Prepare release 5.4.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 159bb28f741a -r ecfcfa529a66 CHANGELOG
--- a/CHANGELOG Fri Apr 24 22:09:58 2020 +0200
+++ b/CHANGELOG Fri May 01 16:17:36 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/sale_complaint:5.2 Prepare release 5.2.3 [s...

2020-05-01 Thread Cédric Krier
changeset 028a62f02245 in modules/sale_complaint:5.2
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=028a62f02245
description:
Prepare release 5.2.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r aacf47d5abfb -r 028a62f02245 CHANGELOG
--- a/CHANGELOG Fri Apr 10 18:30:41 2020 +0200
+++ b/CHANGELOG Fri May 01 16:10:18 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/sale_complaint:5.4 Add tag 5.4.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset f88b46f412aa in modules/sale_complaint:5.4
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=f88b46f412aa
description:
Add tag 5.4.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r cfa7d7038ee2 -r f88b46f412aa .hgtags
--- a/.hgtags   Fri May 01 16:10:00 2020 +0200
+++ b/.hgtags   Fri May 01 16:10:01 2020 +0200
@@ -8,3 +8,4 @@
 a4923a52b963bce948b479ca426392efd0701d08 5.2.0
 2c543ccd3232d58d1b2d59fa757a7975c72f2372 5.4.0
 193cf2f80ee711f7144c17e0e27c8446bf005fae 5.4.1
+cfa7d7038ee2b921c07f6a5f15bb46816a8ee056 5.4.2



[tryton-commits] changeset in modules/sale_complaint:5.2 Increase version number

2020-05-01 Thread Cédric Krier
changeset 59ae07a71158 in modules/sale_complaint:5.2
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=59ae07a71158
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 33ebfac30516 -r 59ae07a71158 tryton.cfg
--- a/tryton.cfgFri May 01 16:10:19 2020 +0200
+++ b/tryton.cfgFri May 01 16:10:27 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.2.3
+version=5.2.4
 depends:
 account_invoice
 company



[tryton-commits] changeset in modules/sale_complaint:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset d9317a1c104c in modules/sale_complaint:5.4
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=d9317a1c104c
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r f88b46f412aa -r d9317a1c104c tryton.cfg
--- a/tryton.cfgFri May 01 16:10:01 2020 +0200
+++ b/tryton.cfgFri May 01 16:10:10 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.2
+version=5.4.3
 depends:
 account_invoice
 company



[tryton-commits] changeset in modules/sale_complaint:5.2 Add tag 5.2.3 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 33ebfac30516 in modules/sale_complaint:5.2
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=33ebfac30516
description:
Add tag 5.2.3 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 028a62f02245 -r 33ebfac30516 .hgtags
--- a/.hgtags   Fri May 01 16:10:18 2020 +0200
+++ b/.hgtags   Fri May 01 16:10:19 2020 +0200
@@ -8,3 +8,4 @@
 a4923a52b963bce948b479ca426392efd0701d08 5.2.0
 c44a70b6e6ca8f05055ee438a01f1a8942b1ad0e 5.2.1
 9678fbeb6f684b9dc28157789929c4da67c574bb 5.2.2
+028a62f02245220f234c19e347c819d52f781999 5.2.3



[tryton-commits] changeset in modules/sale_complaint:5.0 Increase version number

2020-05-01 Thread Cédric Krier
changeset f36833799f77 in modules/sale_complaint:5.0
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=f36833799f77
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 5061843d9a66 -r f36833799f77 tryton.cfg
--- a/tryton.cfgFri May 01 16:11:06 2020 +0200
+++ b/tryton.cfgFri May 01 16:11:14 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.0.4
+version=5.0.5
 depends:
 account_invoice
 company



[tryton-commits] changeset in modules/sale_complaint:5.4 Prepare release 5.4.2 [s...

2020-05-01 Thread Cédric Krier
changeset cfa7d7038ee2 in modules/sale_complaint:5.4
details: 
https://hg.tryton.org/modules/sale_complaint?cmd=changeset;node=cfa7d7038ee2
description:
Prepare release 5.4.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 3fdaca41f6b3 -r cfa7d7038ee2 CHANGELOG
--- a/CHANGELOG Fri Apr 10 18:30:41 2020 +0200
+++ b/CHANGELOG Fri May 01 16:10:00 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/purchase_shipment_cost:5.4 Increase version...

2020-05-01 Thread Cédric Krier
changeset e18dcda533c6 in modules/purchase_shipment_cost:5.4
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=e18dcda533c6
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r d74b6c7a3025 -r e18dcda533c6 tryton.cfg
--- a/tryton.cfgFri May 01 16:19:07 2020 +0200
+++ b/tryton.cfgFri May 01 16:19:16 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.2
+version=5.4.3
 depends:
 carrier
 currency



[tryton-commits] changeset in modules/purchase_shipment_cost:5.2 Prepare release ...

2020-05-01 Thread Cédric Krier
changeset 98baf1ef3ce8 in modules/purchase_shipment_cost:5.2
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=98baf1ef3ce8
description:
Prepare release 5.2.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 9e5f8c478c2b -r 98baf1ef3ce8 CHANGELOG
--- a/CHANGELOG Mon Apr 13 17:18:28 2020 +0200
+++ b/CHANGELOG Fri May 01 16:19:55 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 
diff -r 9e5f8c478c2b -r 98baf1ef3ce8 COPYRIGHT
--- a/COPYRIGHT Mon Apr 13 17:18:28 2020 +0200
+++ b/COPYRIGHT Fri May 01 16:19:55 2020 +0200
@@ -1,6 +1,6 @@
 Copyright (C) 2011-2020 Cédric Krier.
-Copyright (C) 2011-2012 Bertrand Chenal.
-Copyright (C) 2011-2017 Nicolas Évrard.
+Copyright (C) 2011-2020 Bertrand Chenal.
+Copyright (C) 2011-2020 Nicolas Évrard.
 Copyright (C) 2011-2020 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify



[tryton-commits] changeset in modules/authentication_sms:5.2 Add tag 5.2.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset f4b149e33b80 in modules/authentication_sms:5.2
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=f4b149e33b80
description:
Add tag 5.2.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 8ae8d25b6afc -r f4b149e33b80 .hgtags
--- a/.hgtags   Fri May 01 16:53:18 2020 +0200
+++ b/.hgtags   Fri May 01 16:53:18 2020 +0200
@@ -5,3 +5,4 @@
 93fa7195ef195d0f91b5824d0a5636265bdb48e1 5.0.0
 7677da918b2b1f949072e2730e351ec36fb398fb 5.2.0
 f7d551abf8044ecdbdf5f2cedd5ddaf23dbfe05f 5.2.1
+8ae8d25b6afcd65f58362844c390f1960546b943 5.2.2



[tryton-commits] changeset in modules/authentication_sms:5.2 Increase version number

2020-05-01 Thread Cédric Krier
changeset f2aba9c0911b in modules/authentication_sms:5.2
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=f2aba9c0911b
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r f4b149e33b80 -r f2aba9c0911b tryton.cfg
--- a/tryton.cfgFri May 01 16:53:18 2020 +0200
+++ b/tryton.cfgFri May 01 16:53:27 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.2.2
+version=5.2.3
 depends:
 ir
 res



[tryton-commits] changeset in modules/authentication_sms:5.4 Add tag 5.4.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 335fe8d231db in modules/authentication_sms:5.4
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=335fe8d231db
description:
Add tag 5.4.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 8027dad1ad7e -r 335fe8d231db .hgtags
--- a/.hgtags   Fri May 01 16:38:27 2020 +0200
+++ b/.hgtags   Fri May 01 16:38:27 2020 +0200
@@ -6,3 +6,4 @@
 7677da918b2b1f949072e2730e351ec36fb398fb 5.2.0
 2fec741a0a38e05047e6750085a82c9a7dc076de 5.4.0
 9de369829b604a7b6b8c17bbb7d645e93988bbb9 5.4.1
+8027dad1ad7e45d7d0e757287ee8fcce7b02aa29 5.4.2



[tryton-commits] changeset in modules/purchase_shipment_cost:5.4 Add tag 5.4.2 [s...

2020-05-01 Thread Cédric Krier
changeset d74b6c7a3025 in modules/purchase_shipment_cost:5.4
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=d74b6c7a3025
description:
Add tag 5.4.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r c5814d7ff5b3 -r d74b6c7a3025 .hgtags
--- a/.hgtags   Fri May 01 16:19:07 2020 +0200
+++ b/.hgtags   Fri May 01 16:19:07 2020 +0200
@@ -15,3 +15,4 @@
 ed23e3603ff4c74033f22413278cd40e7c35240d 5.2.0
 de17813d9dd55d8be1a8258f5bc654d19e1bc26a 5.4.0
 4ebe6b228ac78dce67dfacb6923ee03bbba794c8 5.4.1
+c5814d7ff5b3b36c50385e9b157a3e5f754e11dc 5.4.2



[tryton-commits] changeset in modules/authentication_sms:5.0 Add tag 5.0.3 [skip ci]

2020-05-01 Thread Cédric Krier
changeset f8063fc88f69 in modules/authentication_sms:5.0
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=f8063fc88f69
description:
Add tag 5.0.3 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 4237881e9430 -r f8063fc88f69 .hgtags
--- a/.hgtags   Fri May 01 16:54:56 2020 +0200
+++ b/.hgtags   Fri May 01 16:54:57 2020 +0200
@@ -5,3 +5,4 @@
 93fa7195ef195d0f91b5824d0a5636265bdb48e1 5.0.0
 9e69d5118ec301c0421930aaeac55b33a0793613 5.0.1
 466e9e6f016856c536ca967bae16e62802223086 5.0.2
+4237881e9430f68be76c1696583733c6eb462129 5.0.3



[tryton-commits] changeset in modules/purchase_shipment_cost:5.4 Prepare release ...

2020-05-01 Thread Cédric Krier
changeset c5814d7ff5b3 in modules/purchase_shipment_cost:5.4
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=c5814d7ff5b3
description:
Prepare release 5.4.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 91461d533df6 -r c5814d7ff5b3 CHANGELOG
--- a/CHANGELOG Mon Apr 13 17:18:28 2020 +0200
+++ b/CHANGELOG Fri May 01 16:19:07 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 
diff -r 91461d533df6 -r c5814d7ff5b3 COPYRIGHT
--- a/COPYRIGHT Mon Apr 13 17:18:28 2020 +0200
+++ b/COPYRIGHT Fri May 01 16:19:07 2020 +0200
@@ -1,6 +1,6 @@
 Copyright (C) 2011-2020 Cédric Krier.
-Copyright (C) 2011-2012 Bertrand Chenal.
-Copyright (C) 2011-2017 Nicolas Évrard.
+Copyright (C) 2011-2020 Bertrand Chenal.
+Copyright (C) 2011-2020 Nicolas Évrard.
 Copyright (C) 2011-2020 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify



[tryton-commits] changeset in modules/purchase_shipment_cost:5.2 Increase version...

2020-05-01 Thread Cédric Krier
changeset c4f3f5fa7eb2 in modules/purchase_shipment_cost:5.2
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=c4f3f5fa7eb2
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 75edecb74bbb -r c4f3f5fa7eb2 tryton.cfg
--- a/tryton.cfgFri May 01 16:19:56 2020 +0200
+++ b/tryton.cfgFri May 01 16:20:04 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.2.2
+version=5.2.3
 depends:
 carrier
 currency



[tryton-commits] changeset in modules/purchase_amendment:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset f4cb07d85b99 in modules/purchase_amendment:5.4
details: 
https://hg.tryton.org/modules/purchase_amendment?cmd=changeset;node=f4cb07d85b99
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r c2e893beb1a7 -r f4cb07d85b99 tryton.cfg
--- a/tryton.cfgFri May 01 16:20:34 2020 +0200
+++ b/tryton.cfgFri May 01 16:20:42 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.3
+version=5.4.4
 depends:
 account_invoice
 ir



[tryton-commits] changeset in modules/purchase_shipment_cost:5.0 Prepare release ...

2020-05-01 Thread Cédric Krier
changeset 960db945e5ea in modules/purchase_shipment_cost:5.0
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=960db945e5ea
description:
Prepare release 5.0.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 COPYRIGHT |  4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 80992b9f565a -r 960db945e5ea CHANGELOG
--- a/CHANGELOG Mon Apr 13 17:18:28 2020 +0200
+++ b/CHANGELOG Fri May 01 16:20:13 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 
diff -r 80992b9f565a -r 960db945e5ea COPYRIGHT
--- a/COPYRIGHT Mon Apr 13 17:18:28 2020 +0200
+++ b/COPYRIGHT Fri May 01 16:20:13 2020 +0200
@@ -1,6 +1,6 @@
 Copyright (C) 2011-2020 Cédric Krier.
-Copyright (C) 2011-2012 Bertrand Chenal.
-Copyright (C) 2011-2017 Nicolas Évrard.
+Copyright (C) 2011-2020 Bertrand Chenal.
+Copyright (C) 2011-2020 Nicolas Évrard.
 Copyright (C) 2011-2020 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify



[tryton-commits] changeset in modules/authentication_sms:5.0 Prepare release 5.0....

2020-05-01 Thread Cédric Krier
changeset 4237881e9430 in modules/authentication_sms:5.0
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=4237881e9430
description:
Prepare release 5.0.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r a349d95f5803 -r 4237881e9430 CHANGELOG
--- a/CHANGELOG Sat Apr 25 09:44:32 2020 +0200
+++ b/CHANGELOG Fri May 01 16:54:56 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/authentication_sms:5.0 Increase version number

2020-05-01 Thread Cédric Krier
changeset 41eae5cded16 in modules/authentication_sms:5.0
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=41eae5cded16
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r f8063fc88f69 -r 41eae5cded16 tryton.cfg
--- a/tryton.cfgFri May 01 16:54:57 2020 +0200
+++ b/tryton.cfgFri May 01 16:55:05 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.0.3
+version=5.0.4
 depends:
 ir
 res



[tryton-commits] changeset in modules/authentication_sms:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset e67e813bce26 in modules/authentication_sms:5.4
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=e67e813bce26
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 335fe8d231db -r e67e813bce26 tryton.cfg
--- a/tryton.cfgFri May 01 16:38:27 2020 +0200
+++ b/tryton.cfgFri May 01 16:38:36 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.2
+version=5.4.3
 depends:
 ir
 res



[tryton-commits] changeset in modules/authentication_sms:5.2 Prepare release 5.2....

2020-05-01 Thread Cédric Krier
changeset 8ae8d25b6afc in modules/authentication_sms:5.2
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=8ae8d25b6afc
description:
Prepare release 5.2.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 21b942b741f0 -r 8ae8d25b6afc CHANGELOG
--- a/CHANGELOG Sat Apr 25 09:44:32 2020 +0200
+++ b/CHANGELOG Fri May 01 16:53:18 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.2.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.2.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/analytic_invoice:5.0 Increase version number

2020-05-01 Thread Cédric Krier
changeset d25dce07f5db in modules/analytic_invoice:5.0
details: 
https://hg.tryton.org/modules/analytic_invoice?cmd=changeset;node=d25dce07f5db
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 977369384141 -r d25dce07f5db tryton.cfg
--- a/tryton.cfgFri May 01 17:24:19 2020 +0200
+++ b/tryton.cfgFri May 01 17:24:27 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.0.3
+version=5.0.4
 depends:
 account_invoice
 analytic_account



[tryton-commits] changeset in modules/analytic_invoice:5.0 Prepare release 5.0.3 ...

2020-05-01 Thread Cédric Krier
changeset ed908ec714bf in modules/analytic_invoice:5.0
details: 
https://hg.tryton.org/modules/analytic_invoice?cmd=changeset;node=ed908ec714bf
description:
Prepare release 5.0.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 56d673829a7e -r ed908ec714bf CHANGELOG
--- a/CHANGELOG Sat Apr 18 17:44:36 2020 +0200
+++ b/CHANGELOG Fri May 01 17:24:19 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/purchase_amendment:5.4 Prepare release 5.4....

2020-05-01 Thread Cédric Krier
changeset d996407829c4 in modules/purchase_amendment:5.4
details: 
https://hg.tryton.org/modules/purchase_amendment?cmd=changeset;node=d996407829c4
description:
Prepare release 5.4.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r c4daa79bff00 -r d996407829c4 CHANGELOG
--- a/CHANGELOG Fri Apr 24 22:09:58 2020 +0200
+++ b/CHANGELOG Fri May 01 16:20:33 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/purchase_shipment_cost:5.2 Add tag 5.2.2 [s...

2020-05-01 Thread Cédric Krier
changeset 75edecb74bbb in modules/purchase_shipment_cost:5.2
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=75edecb74bbb
description:
Add tag 5.2.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 98baf1ef3ce8 -r 75edecb74bbb .hgtags
--- a/.hgtags   Fri May 01 16:19:55 2020 +0200
+++ b/.hgtags   Fri May 01 16:19:56 2020 +0200
@@ -14,3 +14,4 @@
 1f4d598b3d9c2afcff4aa60fb22a76d54e989bf3 5.0.0
 ed23e3603ff4c74033f22413278cd40e7c35240d 5.2.0
 fa09c6dcb42de5ef976fa033f41119c89f407cbc 5.2.1
+98baf1ef3ce83f184f507e56099a5aa31da6befb 5.2.2



[tryton-commits] changeset in modules/purchase_amendment:5.4 Add tag 5.4.3 [skip ci]

2020-05-01 Thread Cédric Krier
changeset c2e893beb1a7 in modules/purchase_amendment:5.4
details: 
https://hg.tryton.org/modules/purchase_amendment?cmd=changeset;node=c2e893beb1a7
description:
Add tag 5.4.3 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r d996407829c4 -r c2e893beb1a7 .hgtags
--- a/.hgtags   Fri May 01 16:20:33 2020 +0200
+++ b/.hgtags   Fri May 01 16:20:34 2020 +0200
@@ -1,3 +1,4 @@
 d97450df2b381008d36eaa676613703c0439da33 5.4.0
 3671d346fec359f1de8a601bb3dc1c799a461f8d 5.4.1
 05878f20464b16c77dc2105f5ca3f7445cc23b04 5.4.2
+d996407829c467922ff4abb238eafc634efabf47 5.4.3



[tryton-commits] changeset in modules/authentication_sms:5.4 Prepare release 5.4....

2020-05-01 Thread Cédric Krier
changeset 8027dad1ad7e in modules/authentication_sms:5.4
details: 
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=8027dad1ad7e
description:
Prepare release 5.4.2 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r 2e034207b4f6 -r 8027dad1ad7e CHANGELOG
--- a/CHANGELOG Sat Apr 25 09:44:32 2020 +0200
+++ b/CHANGELOG Fri May 01 16:38:27 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.4.2 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.4.1 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/analytic_invoice:5.2 Add tag 5.2.2 [skip ci]

2020-05-01 Thread Cédric Krier
changeset d9ba9a9ee48c in modules/analytic_invoice:5.2
details: 
https://hg.tryton.org/modules/analytic_invoice?cmd=changeset;node=d9ba9a9ee48c
description:
Add tag 5.2.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r d89df880fe04 -r d9ba9a9ee48c .hgtags
--- a/.hgtags   Fri May 01 17:08:12 2020 +0200
+++ b/.hgtags   Fri May 01 17:08:13 2020 +0200
@@ -21,3 +21,4 @@
 449dc12f59abb42480fb8409f32ea7e07911f93b 5.0.0
 d58e3e7ab1975237873a4e791687cfcb44498c6d 5.2.0
 591ce2794e736ed12cb500a261d6870c9fbae6de 5.2.1
+d89df880fe04f9e23c44cbd846f2c4e9ef37b70a 5.2.2



[tryton-commits] changeset in modules/account_invoice_stock:5.2 Add tag 5.2.2 [sk...

2020-05-01 Thread Cédric Krier
changeset 6a21f694c855 in modules/account_invoice_stock:5.2
details: 
https://hg.tryton.org/modules/account_invoice_stock?cmd=changeset;node=6a21f694c855
description:
Add tag 5.2.2 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r 67a4a37274b1 -r 6a21f694c855 .hgtags
--- a/.hgtags   Fri May 01 17:56:05 2020 +0200
+++ b/.hgtags   Fri May 01 17:56:05 2020 +0200
@@ -10,3 +10,4 @@
 8d2d5e121643a1da0fef72d16c5ac57ec356bb3a 5.0.0
 72e05c9823537d43d278a6a86a6ea4299117b13a 5.2.0
 573bf4b0b51db21e15e15bdb0fef64779fff6239 5.2.1
+67a4a37274b17f786bb736ab3a2685b7f1e3afc6 5.2.2



[tryton-commits] changeset in modules/account_invoice_stock:5.0 Prepare release 5...

2020-05-01 Thread Cédric Krier
changeset 628a300ab873 in modules/account_invoice_stock:5.0
details: 
https://hg.tryton.org/modules/account_invoice_stock?cmd=changeset;node=628a300ab873
description:
Prepare release 5.0.3 [skip ci]
diffstat:

 CHANGELOG |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (10 lines):

diff -r f519f9ffad3e -r 628a300ab873 CHANGELOG
--- a/CHANGELOG Thu Apr 02 15:25:18 2020 +0200
+++ b/CHANGELOG Fri May 01 18:01:57 2020 +0200
@@ -1,3 +1,6 @@
+Version 5.0.3 - 2020-05-01
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.2 - 2020-04-04
 * Bug fixes (see mercurial logs for details)
 



[tryton-commits] changeset in modules/analytic_invoice:5.4 Increase version number

2020-05-01 Thread Cédric Krier
changeset c65f66bc3c3a in modules/analytic_invoice:5.4
details: 
https://hg.tryton.org/modules/analytic_invoice?cmd=changeset;node=c65f66bc3c3a
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 4efe848a1b9e -r c65f66bc3c3a tryton.cfg
--- a/tryton.cfgFri May 01 17:03:18 2020 +0200
+++ b/tryton.cfgFri May 01 17:03:26 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.4.2
+version=5.4.3
 depends:
 account_invoice
 analytic_account



[tryton-commits] changeset in modules/analytic_invoice:5.0 Add tag 5.0.3 [skip ci]

2020-05-01 Thread Cédric Krier
changeset 977369384141 in modules/analytic_invoice:5.0
details: 
https://hg.tryton.org/modules/analytic_invoice?cmd=changeset;node=977369384141
description:
Add tag 5.0.3 [skip ci]
diffstat:

 .hgtags |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (8 lines):

diff -r ed908ec714bf -r 977369384141 .hgtags
--- a/.hgtags   Fri May 01 17:24:19 2020 +0200
+++ b/.hgtags   Fri May 01 17:24:19 2020 +0200
@@ -21,3 +21,4 @@
 449dc12f59abb42480fb8409f32ea7e07911f93b 5.0.0
 7fb25a68f70e4dab81dc6c535724df03328e6d65 5.0.1
 f4fa32971e49c076471522cfe4e1fb54813d1a2a 5.0.2
+ed908ec714bfa6296fea602c909661d4f720e035 5.0.3



[tryton-commits] changeset in modules/account_invoice_stock:5.2 Increase version ...

2020-05-01 Thread Cédric Krier
changeset 1059d48dc8c2 in modules/account_invoice_stock:5.2
details: 
https://hg.tryton.org/modules/account_invoice_stock?cmd=changeset;node=1059d48dc8c2
description:
Increase version number
diffstat:

 tryton.cfg |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r 6a21f694c855 -r 1059d48dc8c2 tryton.cfg
--- a/tryton.cfgFri May 01 17:56:05 2020 +0200
+++ b/tryton.cfgFri May 01 17:56:14 2020 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.2.2
+version=5.2.3
 depends:
 account_invoice
 stock



  1   2   >