Skip to content

Commit

Permalink
[LEGAL] Switch to LGPLv3 License
Browse files Browse the repository at this point in the history
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
  • Loading branch information
odony committed Sep 8, 2015
1 parent 598475c commit a3732ae
Show file tree
Hide file tree
Showing 9 changed files with 1,937 additions and 1,124 deletions.
331 changes: 259 additions & 72 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Recommends:
poppler-utils
Description: Open Source Apps To Grow Your Business
Odoo, formerly known as OpenERP, is a suite of open-source business apps
written in Python and released under the AGPL license. This suite of
written in Python and released under the LGPLv3 license. This suite of
applications covers all business needs, from Website/Ecommerce down to
manufacturing, inventory and accounting, all seamlessly integrated. Odoo's
technical features include a distributed server, flexible workflows, an object
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ License: LGPL-3+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
GNU Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Available manifest fields are:
name of the module author
``website`` (``str``)
website URL for the module author
``license`` (``str``, defaults: ``AGPL-3``)
``license`` (``str``, defaults: ``LGPL-3``)
distribution license for the module
``category`` (``str``, default: ``Uncategorized``)
classification category within Odoo, rough business domain for the module.
Expand Down
5 changes: 3 additions & 2 deletions openerp/addons/base/module/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ def _get_icon_image(self, cr, uid, ids, field_name=None, arg=None, context=None)
('AGPL-3', 'Affero GPL-3'),
('LGPL-3', 'LGPL Version 3'),
('Other OSI approved licence', 'Other OSI Approved Licence'),
('OEEL-1', 'Odoo Enterprise Edition License v1.0'),
('Other proprietary', 'Other Proprietary')
], string='License', readonly=True),
'menus_by_module': fields.function(_get_views, string='Menus', type='text', multi="meta", store=True),
Expand All @@ -300,7 +301,7 @@ def _get_icon_image(self, cr, uid, ids, field_name=None, arg=None, context=None)
'state': 'uninstalled',
'sequence': 100,
'demo': False,
'license': 'AGPL-3',
'license': 'LGPL-3',
}
_order = 'sequence,name'

Expand Down Expand Up @@ -616,7 +617,7 @@ def get_values_from_terp(terp):
'maintainer': terp.get('maintainer', False),
'contributors': ', '.join(terp.get('contributors', [])) or False,
'website': terp.get('website', ''),
'license': terp.get('license', 'AGPL-3'),
'license': terp.get('license', 'LGPL-3'),
'sequence': terp.get('sequence', 100),
'application': terp.get('application', False),
'auto_install': terp.get('auto_install', False),
Expand Down
28 changes: 4 additions & 24 deletions openerp/addons/base/tests/test_res_partner_bank.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,9 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# This file is part of account_bank_statement_import,
# an Odoo module.
#
# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
#
# account_bank_statement_import is free software:
# you can redistribute it and/or modify it under the terms of the GNU
# Affero General Public License as published by the Free Software
# Foundation,either version 3 of the License, or (at your option) any
# later version.
#
# account_bank_statement_import is distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with account_bank_statement_import_coda.
# If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.tests.common import TransactionCase
# Part of Odoo. See LICENSE file for full copyright and licensing details.

# Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)

from openerp.tests.common import TransactionCase

class TestResPartnerBank(TransactionCase):
"""Tests acc_number
Expand Down
2 changes: 1 addition & 1 deletion openerp/modules/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def load_information_from_description_file(module, mod_path=None):
'description': '',
'icon': get_module_icon(module),
'installable': True,
'license': 'AGPL-3',
'license': 'LGPL-3',
'post_load': None,
'version': '1.0',
'web': False,
Expand Down
Loading

0 comments on commit a3732ae

Please sign in to comment.