Skip to content

Commit df0ef80

Browse files
committed
[LICENSE] GNU Affero General Public License v3 or later (AGPLv3+)
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
1 parent 3965f72 commit df0ef80

17 files changed

+679
-27
lines changed

LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ Links
3232
package: linuxdoc (20221127)
3333
copyright: 2024 Markus Heiser
3434
e-mail: markus.heiser@darmarIT.de
35-
license: GPLv2
35+
license: AGPLv3+
3636
============ ===============================================
3737

linuxdoc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8; mode: python -*-
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
22
u"""
33
The LinuxDoc library contains Sphinx-doc extensions and command line tools
44
related to the build process of the Linux-Kernel documentation. Even if this

linuxdoc/__pkginfo__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# -*- coding: utf-8; mode: python; mode: flycheck -*-
2-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
32
# pylint: disable=line-too-long, invalid-name, consider-using-f-string
43
"""Python package meta informations used by setup.py and other project files.
54
"""
@@ -14,7 +13,7 @@
1413
'Sphinx-doc extensions & tools to extract documentation'
1514
' from C/C++ source file comments.'
1615
)
17-
license = 'GPLv2'
16+
license = 'AGPLv3+' # pylint: disable=redefined-builtin
1817
keywords = 'sphinx extension doc source code comments kernel-doc linux'
1918

2019
author = 'Markus Heiser'
@@ -182,7 +181,7 @@ def get_entry_points():
182181
"Development Status :: 5 - Production/Stable",
183182
"Intended Audience :: Developers",
184183
"Intended Audience :: Other Audience",
185-
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
184+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
186185
"Operating System :: OS Independent",
187186
"Programming Language :: Python",
188187
"Programming Language :: Python :: 3",

linuxdoc/autodoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# -*- coding: utf-8; mode: python -*-
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
33
u"""
44
autodoc
55
~~~~~~~

linuxdoc/cdomain.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# -*- coding: utf-8; mode: python -*-
2-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
32
"""\
43
cdomain
54
~~~~~~~

linuxdoc/cdomainv2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# -*- coding: utf-8; mode: python -*-
2-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
32
"""\
43
cdomainv2 (Sphinx v<3.0)
54
~~~~~~~~~~~~~~~~~~~~~~~~

linuxdoc/cdomainv3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8; mode: python -*-
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
22
u"""
33
cdomainv3 (Sphinx v>=3.0)
44
~~~~~~~~~~~~~~~~~~~~~~~~~

linuxdoc/compat.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# -*- coding: utf-8; mode: python -*-
2-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
32
# pylint: disable=C, unused-import, invalid-name, missing-docstring
43
"""\
54
compat

linuxdoc/grep_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# -*- coding: utf-8; mode: python -*-
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
33
u"""
44
grep_doc
55
~~~~~~~~

0 commit comments

Comments
 (0)