From 231ef10f9735249c2812f8a7aceec8a6ccd04624 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Wed, 3 Aug 2016 13:00:30 +0200 Subject: [PATCH] [CHG] base_custom_info: Relicense to LGPL with all authors' consent --- base_custom_info/README.rst | 6 +++--- base_custom_info/__init__.py | 2 +- base_custom_info/__openerp__.py | 4 ++-- base_custom_info/models/__init__.py | 2 +- base_custom_info/models/custom_info.py | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/base_custom_info/README.rst b/base_custom_info/README.rst index 005080fa4..60eecd504 100644 --- a/base_custom_info/README.rst +++ b/base_custom_info/README.rst @@ -1,6 +1,6 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 ================ Base Custom Info diff --git a/base_custom_info/__init__.py b/base_custom_info/__init__.py index 5faa0139b..cc6e9affa 100644 --- a/base_custom_info/__init__.py +++ b/base_custom_info/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html from . import models diff --git a/base_custom_info/__openerp__.py b/base_custom_info/__openerp__.py index 603362e2f..f1daa9ea1 100644 --- a/base_custom_info/__openerp__.py +++ b/base_custom_info/__openerp__.py @@ -2,7 +2,7 @@ # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden # © 2015-2016 Jairo Llopis -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html { 'name': "Base Custom Info", @@ -30,6 +30,6 @@ 'Tecnativa, ' 'Odoo Community Association (OCA)', 'website': 'http://www.antiun.com', - 'license': 'AGPL-3', + 'license': 'LGPL-3', 'installable': True, } diff --git a/base_custom_info/models/__init__.py b/base_custom_info/models/__init__.py index 278faf2ff..4ce49af98 100644 --- a/base_custom_info/models/__init__.py +++ b/base_custom_info/models/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html from . import custom_info diff --git a/base_custom_info/models/custom_info.py b/base_custom_info/models/custom_info.py index ed353cce2..297a25ade 100644 --- a/base_custom_info/models/custom_info.py +++ b/base_custom_info/models/custom_info.py @@ -2,7 +2,7 @@ # © 2015 Antiun Ingeniería S.L. - Sergio Teruel # © 2015 Antiun Ingeniería S.L. - Carlos Dauden # © 2015 Antiun Ingeniería S.L. - Jairo Llopis -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html from openerp import api, fields, models