[tryton-debian-vcs] tryton-modules-account-asset branch debian-stretch-4.0 updated. debian/4.0.1-1-6-gc5b292a

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Aug 17 12:22:21 UTC 2017


The following commit has been merged in the debian-stretch-4.0 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-asset.git;a=commitdiff;h=debian/4.0.1-1-6-gc5b292a

commit c5b292afa0dbe3611b3f88189f3dbca3a35350c7
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Aug 17 12:32:55 2017 +0200

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

diff --git a/debian/changelog b/debian/changelog
index ffc1fbe..bbb3263 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tryton-modules-account-asset (4.0.2-1) unstable; urgency=medium
+
+  * Updating to Standards-Version: 3.9.8, no changes needed.
+  * Setting the branch in the watch file to the fixed version 4.0.
+  * Add the actual upstream maintainer key to signing-key.asc.
+  * Merging upstream version 4.0.2.
+  * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Thu, 17 Aug 2017 12:32:55 +0200
+
 tryton-modules-account-asset (4.0.1-1) unstable; urgency=medium
 
   * Updating signing-key.asc with the actual upstream maintainer keys.
commit bcda7e2bd2357a60fdc0a207913b3b5f0f6cc7f8
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Aug 17 12:32:54 2017 +0200

    Updating copyright file.

diff --git a/debian/copyright b/debian/copyright
index a8ed3d6..76a37b0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,10 +1,10 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 
 Files: *
-Copyright: 2012-2015 Nicolas Évrard
-           2012-2016 Cédric Krier
+Copyright: 2012-2017 Nicolas Évrard
+           2012-2017 Cédric Krier
            2012-2013 Bertrand Chenal
-           2012-2016 B2CK SPRL
+           2012-2017 B2CK SPRL
 License: GPL-3+
 
 Files: debian/*
commit b780678be88beaba8bf659815c0e67e49d8654ba
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Aug 17 12:32:54 2017 +0200

    Merging upstream version 4.0.2.

diff --git a/CHANGELOG b/CHANGELOG
index 0140475..7f3c761 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.2 - 2017-08-08
+* Bug fixes (see mercurial logs for details)
+
 Version 4.0.1 - 2016-05-11
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index 62744da..e6978f8 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,7 +1,7 @@
-Copyright (C) 2012-2015 Nicolas Évrard.
-Copyright (C) 2012-2016 Cédric Krier.
+Copyright (C) 2012-2017 Nicolas Évrard.
+Copyright (C) 2012-2017 Cédric Krier.
 Copyright (C) 2012-2013 Bertrand Chenal.
-Copyright (C) 2012-2016 B2CK SPRL.
+Copyright (C) 2012-2017 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index 4219de9..835b79e 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_account_asset
-Version: 4.0.1
+Version: 4.0.2
 Summary: Tryton module for assets management
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/product.py b/product.py
index f972212..72691b9 100644
--- a/product.py
+++ b/product.py
@@ -56,13 +56,13 @@ class Template:
                 ],
             states={
                 'readonly': ~Eval('active', True),
-                'required': ~Eval('account_category') & Eval('depreciable'),
+                'required': ~Eval('accounts_category') & Eval('depreciable'),
                 'invisible': (~Eval('depreciable')
                     | (Eval('type', '') != 'assets')
                     | ~Eval('context', {}).get('company')
-                    | Eval('account_category')),
+                    | Eval('accounts_category')),
                 },
-            depends=['active', 'depreciable', 'type', 'account_category']))
+            depends=['active', 'depreciable', 'type', 'accounts_category']))
     account_depreciation_used = MissingFunction(
         fields.Many2One('account.account', 'Account Depreciation Used'),
         'missing_account', 'get_account')
@@ -74,13 +74,13 @@ class Template:
                 ],
             states={
                 'readonly': ~Eval('active', True),
-                'required': ~Eval('account_category') & Eval('depreciable'),
+                'required': ~Eval('accounts_category') & Eval('depreciable'),
                 'invisible': (~Eval('depreciable')
                     | (Eval('type', '') != 'assets')
                     | ~Eval('context', {}).get('company')
-                    | Eval('account_category')),
+                    | Eval('accounts_category')),
                 },
-            depends=['active', 'depreciable', 'type', 'account_category']))
+            depends=['active', 'depreciable', 'type', 'accounts_category']))
     account_asset_used = MissingFunction(
         fields.Many2One('account.account', 'Account Asset Used'),
         'missing_account', 'get_account')
diff --git a/setup.cfg b/setup.cfg
index 861a9f5..8bfd5a1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,4 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff --git a/tryton.cfg b/tryton.cfg
index 5523ad6..4d16a27 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=4.0.1
+version=4.0.2
 depends:
     ir
     res
diff --git a/trytond_account_asset.egg-info/PKG-INFO b/trytond_account_asset.egg-info/PKG-INFO
index ed4835a..0bac288 100644
--- a/trytond_account_asset.egg-info/PKG-INFO
+++ b/trytond_account_asset.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-account-asset
-Version: 4.0.1
+Version: 4.0.2
 Summary: Tryton module for assets management
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-account-asset



More information about the tryton-debian-vcs mailing list