From 80fdad9f2cad5b3759351ab38bf32cad863cd3cb Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 8 May 2022 09:09:41 +0200 Subject: [PATCH] Fixed SPDX for license headers Replace wrong SPDX identifier "GPL-3.0-or-later" with "LGPL-3.0-or-later" and fixed fbd246c --- .gitignore | 2 +- CHANGES.txt | 2 +- doc/source/commands.rst | 2 +- doc/source/conf.py | 2 +- doc/source/contribute.rst | 2 +- doc/source/doc.rst | 2 +- doc/source/index.rst | 2 +- doc/source/use.rst | 2 +- musicpd.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- test.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 3ca37ef..705efe3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # SPDX-FileCopyrightText: 2012-2022 kaliko -# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-License-Identifier: LGPL-3.0-or-later # python __pycache__ *.pyc. diff --git a/CHANGES.txt b/CHANGES.txt index 730c6e8..bb6a6ac 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,7 +4,7 @@ python-musicpd Changes List Changes in 0.9.0 ---------------- - * + * Use right SPDX identifier for license headers Changes in 0.8.0 ---------------- diff --git a/doc/source/commands.rst b/doc/source/commands.rst index eca6a3a..e335013 100644 --- a/doc/source/commands.rst +++ b/doc/source/commands.rst @@ -1,5 +1,5 @@ .. SPDX-FileCopyrightText: 2018-2021 kaliko -.. SPDX-License-Identifier: GPL-3.0-or-later +.. SPDX-License-Identifier: LGPL-3.0-or-later .. _commands: diff --git a/doc/source/conf.py b/doc/source/conf.py index 886811f..e0a2bd1 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,6 +1,6 @@ # coding: utf-8 # SPDX-FileCopyrightText: 2018-2021 kaliko -# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-License-Identifier: LGPL-3.0-or-later # # Python MPD Module documentation build configuration file, created by # sphinx-quickstart on Mon Mar 12 14:37:32 2018. diff --git a/doc/source/contribute.rst b/doc/source/contribute.rst index dd1c5c1..06d68dd 100644 --- a/doc/source/contribute.rst +++ b/doc/source/contribute.rst @@ -1,5 +1,5 @@ .. SPDX-FileCopyrightText: 2018-2021 kaliko -.. SPDX-License-Identifier: GPL-3.0-or-later +.. SPDX-License-Identifier: LGPL-3.0-or-later Contributing ============= diff --git a/doc/source/doc.rst b/doc/source/doc.rst index eed237d..230a0d1 100644 --- a/doc/source/doc.rst +++ b/doc/source/doc.rst @@ -1,5 +1,5 @@ .. SPDX-FileCopyrightText: 2018-2021 kaliko -.. SPDX-License-Identifier: GPL-3.0-or-later +.. SPDX-License-Identifier: LGPL-3.0-or-later musicpd namespace ================= diff --git a/doc/source/index.rst b/doc/source/index.rst index df5e6cd..ac14145 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1,5 +1,5 @@ .. SPDX-FileCopyrightText: 2018-2021 kaliko -.. SPDX-License-Identifier: GPL-3.0-or-later +.. SPDX-License-Identifier: LGPL-3.0-or-later .. include:: ../../README.rst diff --git a/doc/source/use.rst b/doc/source/use.rst index 8e9fe47..86c3e72 100644 --- a/doc/source/use.rst +++ b/doc/source/use.rst @@ -1,5 +1,5 @@ .. SPDX-FileCopyrightText: 2018-2021 kaliko -.. SPDX-License-Identifier: GPL-3.0-or-later +.. SPDX-License-Identifier: LGPL-3.0-or-later Using the client library ========================= diff --git a/musicpd.py b/musicpd.py index 13a20a5..e2d1265 100644 --- a/musicpd.py +++ b/musicpd.py @@ -3,7 +3,7 @@ # SPDX-FileCopyrightText: 2019 Naglis Jonaitis # SPDX-FileCopyrightText: 2019 Bart Van Loon # SPDX-FileCopyrightText: 2008-2010 J. Alexander Treuman -# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-License-Identifier: LGPL-3.0-or-later """python-musicpd: Python Music Player Daemon client library""" diff --git a/setup.cfg b/setup.cfg index dddaf5e..295b283 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ # SPDX-FileCopyrightText: 2012-2021 kaliko -# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-License-Identifier: LGPL-3.0-or-later [sdist] formats = gztar,zip diff --git a/setup.py b/setup.py index 84eaff9..8fd8f7f 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 # coding: utf-8 # SPDX-FileCopyrightText: 2012-2021 kaliko -# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-License-Identifier: LGPL-3.0-or-later from setuptools import setup diff --git a/test.py b/test.py index 5215917..6265af2 100755 --- a/test.py +++ b/test.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # coding: utf-8 # SPDX-FileCopyrightText: 2012-2021 kaliko -# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-License-Identifier: LGPL-3.0-or-later # pylint: disable=missing-docstring """ Test suite highly borrowed^Wsteal from python-mpd2 [0] project. -- 2.39.2