From e7c67c5e1f7059b72884f153c18e5463c752ef17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Valyi?= Date: Wed, 19 May 2021 11:56:47 -0300 Subject: [PATCH] l10n_br_coa: more permissive licence: AGPL-> LGPL --- l10n_br_coa/README.rst | 6 +++--- l10n_br_coa/__manifest__.py | 4 ++-- l10n_br_coa/models/__init__.py | 2 +- l10n_br_coa/models/account_chart_template.py | 2 +- l10n_br_coa/models/account_tax.py | 2 +- l10n_br_coa/models/account_tax_group.py | 2 +- l10n_br_coa/models/account_tax_mixin.py | 2 +- l10n_br_coa/models/account_tax_template.py | 2 +- l10n_br_coa/static/description/index.html | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/l10n_br_coa/README.rst b/l10n_br_coa/README.rst index 6d09c8b6f673..b3585eaafdc1 100644 --- a/l10n_br_coa/README.rst +++ b/l10n_br_coa/README.rst @@ -10,9 +10,9 @@ Brazilian COA .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png :target: https://odoo-community.org/page/development-status :alt: Production/Stable -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 +.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--brazil-lightgray.png?logo=github :target: https://github.com/OCA/l10n-brazil/tree/12.0/l10n_br_coa :alt: OCA/l10n-brazil diff --git a/l10n_br_coa/__manifest__.py b/l10n_br_coa/__manifest__.py index 4fcbcde6cefa..68ad065515f1 100644 --- a/l10n_br_coa/__manifest__.py +++ b/l10n_br_coa/__manifest__.py @@ -1,13 +1,13 @@ # Copyright 2020 KMEE # Copyright (C) 2020 - TODAY Renato Lima - Akretion -# License AGPL-3.0 or later (http://www.gnu.org/lic enses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/lic enses/lgpl). { 'name': 'Brazilian COA', 'summary': """ Base Brasilian Localization for the Chart of Accounts""", 'version': '12.0.3.1.0', - 'license': 'AGPL-3', + 'license': 'LGPL-3', 'author': 'Akretion, KMEE, Odoo Community Association (OCA)', 'website': 'https://github.com/oca/l10n-brazil', 'depends': ['account'], diff --git a/l10n_br_coa/models/__init__.py b/l10n_br_coa/models/__init__.py index fd23f8a9fec5..6335a83eb742 100644 --- a/l10n_br_coa/models/__init__.py +++ b/l10n_br_coa/models/__init__.py @@ -1,4 +1,4 @@ -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import account_tax_mixin from . import account_tax_template diff --git a/l10n_br_coa/models/account_chart_template.py b/l10n_br_coa/models/account_chart_template.py index aa12dcb0757f..401db45da6c6 100644 --- a/l10n_br_coa/models/account_chart_template.py +++ b/l10n_br_coa/models/account_chart_template.py @@ -1,5 +1,5 @@ # Copyright 2020 KMEE -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, models diff --git a/l10n_br_coa/models/account_tax.py b/l10n_br_coa/models/account_tax.py index d7960bb3c5c3..501fa4782062 100644 --- a/l10n_br_coa/models/account_tax.py +++ b/l10n_br_coa/models/account_tax.py @@ -1,5 +1,5 @@ # Copyright (C) 2020 - TODAY Renato Lima - Akretion -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import models diff --git a/l10n_br_coa/models/account_tax_group.py b/l10n_br_coa/models/account_tax_group.py index d9908c4480d8..6b278d05961d 100644 --- a/l10n_br_coa/models/account_tax_group.py +++ b/l10n_br_coa/models/account_tax_group.py @@ -1,5 +1,5 @@ # Copyright (C) 2020 - TODAY Renato Lima - Akretion -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import fields, models diff --git a/l10n_br_coa/models/account_tax_mixin.py b/l10n_br_coa/models/account_tax_mixin.py index 3910549b2381..a4e1b7a6ba1f 100644 --- a/l10n_br_coa/models/account_tax_mixin.py +++ b/l10n_br_coa/models/account_tax_mixin.py @@ -1,5 +1,5 @@ # Copyright (C) 2020 - TODAY Renato Lima - Akretion -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import fields, models diff --git a/l10n_br_coa/models/account_tax_template.py b/l10n_br_coa/models/account_tax_template.py index ccce08428b61..c585adaf3c5e 100644 --- a/l10n_br_coa/models/account_tax_template.py +++ b/l10n_br_coa/models/account_tax_template.py @@ -1,5 +1,5 @@ # Copyright (C) 2020 - TODAY Renato Lima - Akretion -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import models diff --git a/l10n_br_coa/static/description/index.html b/l10n_br_coa/static/description/index.html index 38daf2fc2220..7cd0ace8d431 100644 --- a/l10n_br_coa/static/description/index.html +++ b/l10n_br_coa/static/description/index.html @@ -367,7 +367,7 @@

Brazilian COA

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Production/Stable License: AGPL-3 OCA/l10n-brazil Translate me on Weblate Try me on Runbot

+

Production/Stable License: LGPL-3 OCA/l10n-brazil Translate me on Weblate Try me on Runbot

Este módulo é comum entre os planos de contas da localização brasileira.

Herança