Skip to content

Commit

Permalink
[LICENSE] GNU Affero General Public License v3 or later (AGPLv3+)
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
  • Loading branch information
return42 committed Mar 21, 2023
1 parent 3965f72 commit df0ef80
Show file tree
Hide file tree
Showing 17 changed files with 679 additions and 27 deletions.
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ Links
package: linuxdoc (20221127)
copyright: 2024 Markus Heiser
e-mail: markus.heiser@darmarIT.de
license: GPLv2
license: AGPLv3+
============ ===============================================

2 changes: 1 addition & 1 deletion linuxdoc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
u"""
The LinuxDoc library contains Sphinx-doc extensions and command line tools
related to the build process of the Linux-Kernel documentation. Even if this
Expand Down
7 changes: 3 additions & 4 deletions linuxdoc/__pkginfo__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8; mode: python; mode: flycheck -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=line-too-long, invalid-name, consider-using-f-string
"""Python package meta informations used by setup.py and other project files.
"""
Expand All @@ -14,7 +13,7 @@
'Sphinx-doc extensions & tools to extract documentation'
' from C/C++ source file comments.'
)
license = 'GPLv2'
license = 'AGPLv3+' # pylint: disable=redefined-builtin
keywords = 'sphinx extension doc source code comments kernel-doc linux'

author = 'Markus Heiser'
Expand Down Expand Up @@ -182,7 +181,7 @@ def get_entry_points():
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion linuxdoc/autodoc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
u"""
autodoc
~~~~~~~
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/cdomain.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
"""\
cdomain
~~~~~~~
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/cdomainv2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
"""\
cdomainv2 (Sphinx v<3.0)
~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion linuxdoc/cdomainv3.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
u"""
cdomainv3 (Sphinx v>=3.0)
~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/compat.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=C, unused-import, invalid-name, missing-docstring
"""\
compat
Expand Down
2 changes: 1 addition & 1 deletion linuxdoc/grep_doc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
u"""
grep_doc
~~~~~~~~
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/kernel_doc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# pylint: disable=missing-docstring, arguments-differ, invalid-name
# pylint: disable=too-many-arguments, too-many-locals, too-many-branches
Expand Down
2 changes: 1 addition & 1 deletion linuxdoc/kernel_include.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
u"""
kernel-include
~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion linuxdoc/kfigure.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=invalid-name, missing-docstring, too-many-branches
# pylint: disable=unnecessary-pass
# SPDX-License-Identifier: GPL-2.0
"""\
scalable figure and image handling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/lint.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8; mode: python -*-

# SPDX-License-Identifier: AGPL-3.0-or-later
u"""
lint
~~~~
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/manKernelDoc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python3
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-docstring, invalid-name, unnecessary-pass
"""\
kernel-doc-man
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/rstFlatTable.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: GPL-2.0
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# pylint: disable=missing-docstring, arguments-differ, invalid-name
# pylint: disable=too-many-arguments, too-many-locals, too-many-branches
Expand Down
3 changes: 1 addition & 2 deletions linuxdoc/rstKernelDoc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8; mode: python -*-
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-docstring, invalid-name
# SPDX-License-Identifier: GPL-2.0
"""\
rstKernelDoc
~~~~~~~~~~~~
Expand Down

0 comments on commit df0ef80

Please sign in to comment.