Skip to content

Commit

Permalink
connector: Use more permissive licence: AGPL-> LGPL
Browse files Browse the repository at this point in the history
  • Loading branch information
lmignon authored and asierneiradev committed Nov 25, 2022
1 parent afedf5d commit 4349694
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 16 deletions.
6 changes: 3 additions & 3 deletions component/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Components
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| 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
.. |badge1| 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
.. |badge2| image:: https://img.shields.io/badge/github-OCA%2Fconnector-lightgray.png?logo=github
:target: https://github.com/OCA/connector/tree/13.0/component
:alt: OCA/connector
Expand Down
4 changes: 2 additions & 2 deletions component/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

{'name': 'Components',
'summary': 'Add capabilities to register and use decoupled components,'
Expand All @@ -9,7 +9,7 @@
'author': 'Camptocamp,'
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/connector',
'license': 'AGPL-3',
'license': 'LGPL-3',
'category': 'Generic Modules',
'depends': ['base',
],
Expand Down
3 changes: 1 addition & 2 deletions component/builder.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

"""
Expand Down
2 changes: 1 addition & 1 deletion component/components/base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

from ..core import AbstractComponent

Expand Down
2 changes: 1 addition & 1 deletion component/core.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# Copyright 2017 Odoo
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

"""
Expand Down
2 changes: 1 addition & 1 deletion component/exception.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)


class ComponentException(Exception):
Expand Down
2 changes: 1 addition & 1 deletion component/models/collection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

"""
Expand Down
2 changes: 1 addition & 1 deletion component/tests/common.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

import copy

Expand Down
2 changes: 1 addition & 1 deletion component/tests/test_build_component.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

import mock
from odoo.addons.component.core import AbstractComponent, Component
Expand Down
2 changes: 1 addition & 1 deletion component/tests/test_component.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

from contextlib import contextmanager
from odoo.addons.component.core import (
Expand Down
2 changes: 1 addition & 1 deletion component/tests/test_lookup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

from odoo.addons.component.core import (
AbstractComponent,
Expand Down
2 changes: 1 addition & 1 deletion component/tests/test_work_on.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)

from odoo.addons.component.core import WorkContext, ComponentRegistry
from .common import TransactionComponentCase
Expand Down

0 comments on commit 4349694

Please sign in to comment.