Skip to content

Commit a3732ae

Browse files
committed
[LEGAL] Switch to LGPLv3 License
99% of the contributors have signed the CLA The rest of them have been contacted by email and are free to either sign the CLA or ask for their contributions to be removed from Odoo Community Edition. See also: - https://www.odoo.com/cla - https://www.odoo.com/blog/odoo-news-5/post/adapting-our-open-source-license-245
1 parent 598475c commit a3732ae

File tree

9 files changed

+1937
-1124
lines changed

9 files changed

+1937
-1124
lines changed

LICENSE

+259-72
Large diffs are not rendered by default.

debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Recommends:
5959
poppler-utils
6060
Description: Open Source Apps To Grow Your Business
6161
Odoo, formerly known as OpenERP, is a suite of open-source business apps
62-
written in Python and released under the AGPL license. This suite of
62+
written in Python and released under the LGPLv3 license. This suite of
6363
applications covers all business needs, from Website/Ecommerce down to
6464
manufacturing, inventory and accounting, all seamlessly integrated. Odoo's
6565
technical features include a distributed server, flexible workflows, an object

debian/copyright

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ License: LGPL-3+
1212
This program is distributed in the hope that it will be useful,
1313
but WITHOUT ANY WARRANTY; without even the implied warranty of
1414
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
GNU Affero General Public License for more details.
15+
GNU Lesser General Public License for more details.
1616
.
1717
You should have received a copy of the GNU Lesser General Public License
1818
along with this program. If not, see <http://www.gnu.org/licenses/>.

doc/reference/module.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Available manifest fields are:
5050
name of the module author
5151
``website`` (``str``)
5252
website URL for the module author
53-
``license`` (``str``, defaults: ``AGPL-3``)
53+
``license`` (``str``, defaults: ``LGPL-3``)
5454
distribution license for the module
5555
``category`` (``str``, default: ``Uncategorized``)
5656
classification category within Odoo, rough business domain for the module.

openerp/addons/base/module/module.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ def _get_icon_image(self, cr, uid, ids, field_name=None, arg=None, context=None)
286286
('AGPL-3', 'Affero GPL-3'),
287287
('LGPL-3', 'LGPL Version 3'),
288288
('Other OSI approved licence', 'Other OSI Approved Licence'),
289+
('OEEL-1', 'Odoo Enterprise Edition License v1.0'),
289290
('Other proprietary', 'Other Proprietary')
290291
], string='License', readonly=True),
291292
'menus_by_module': fields.function(_get_views, string='Menus', type='text', multi="meta", store=True),
@@ -300,7 +301,7 @@ def _get_icon_image(self, cr, uid, ids, field_name=None, arg=None, context=None)
300301
'state': 'uninstalled',
301302
'sequence': 100,
302303
'demo': False,
303-
'license': 'AGPL-3',
304+
'license': 'LGPL-3',
304305
}
305306
_order = 'sequence,name'
306307

@@ -616,7 +617,7 @@ def get_values_from_terp(terp):
616617
'maintainer': terp.get('maintainer', False),
617618
'contributors': ', '.join(terp.get('contributors', [])) or False,
618619
'website': terp.get('website', ''),
619-
'license': terp.get('license', 'AGPL-3'),
620+
'license': terp.get('license', 'LGPL-3'),
620621
'sequence': terp.get('sequence', 100),
621622
'application': terp.get('application', False),
622623
'auto_install': terp.get('auto_install', False),

openerp/addons/base/tests/test_res_partner_bank.py

+4-24
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,9 @@
11
# -*- coding: utf-8 -*-
2-
##############################################################################
3-
#
4-
# This file is part of account_bank_statement_import,
5-
# an Odoo module.
6-
#
7-
# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
8-
#
9-
# account_bank_statement_import is free software:
10-
# you can redistribute it and/or modify it under the terms of the GNU
11-
# Affero General Public License as published by the Free Software
12-
# Foundation,either version 3 of the License, or (at your option) any
13-
# later version.
14-
#
15-
# account_bank_statement_import is distributed
16-
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
17-
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18-
# PURPOSE. See the GNU Affero General Public License for more details.
19-
#
20-
# You should have received a copy of the GNU Affero General Public License
21-
# along with account_bank_statement_import_coda.
22-
# If not, see <http://www.gnu.org/licenses/>.
23-
#
24-
##############################################################################
25-
from openerp.tests.common import TransactionCase
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
265

6+
from openerp.tests.common import TransactionCase
277

288
class TestResPartnerBank(TransactionCase):
299
"""Tests acc_number

openerp/modules/module.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def load_information_from_description_file(module, mod_path=None):
241241
'description': '',
242242
'icon': get_module_icon(module),
243243
'installable': True,
244-
'license': 'AGPL-3',
244+
'license': 'LGPL-3',
245245
'post_load': None,
246246
'version': '1.0',
247247
'web': False,

0 commit comments

Comments
 (0)