]> kaliko git repositories - python-musicpd.git/commitdiff
Swith to SPDX for license headers
authorKaliko Jack <kaliko@azylum.org>
Tue, 8 Feb 2022 15:24:17 +0000 (16:24 +0100)
committerKaliko Jack <kaliko@azylum.org>
Sat, 7 May 2022 15:01:21 +0000 (17:01 +0200)
12 files changed:
.gitignore
CHANGES.txt
doc/source/commands.rst
doc/source/conf.py
doc/source/contribute.rst
doc/source/doc.rst
doc/source/index.rst
doc/source/use.rst
musicpd.py
setup.cfg
setup.py
test.py

index 54134f0767043f853bd059bbc75d889ecbd0af2b..3ca37efa70a341a70498a88100e790bd82d52882 100644 (file)
@@ -1,3 +1,5 @@
+# SPDX-FileCopyrightText: 2012-2022  kaliko <kaliko@azylum.org>
+# SPDX-License-Identifier: GPL-3.0-or-later
 # python
 __pycache__
 *.pyc.
index b07388df71b70c960ad284e3a8d7d4bffed06dba..4b0648d5b7d3012dff5c922e7c47cc178cb8ed68 100644 (file)
@@ -6,6 +6,7 @@ Changes in 0.8.0
 
 * Need python 3.6 minimum (modernize code)
 * Add context management for MPDClient instance (Thanks Wonko der Verständige)
+* Switch to SPDX for license header
 
 Changes in 0.7.0
 ----------------
index 0d02402841bed366b59ecf1db829393ad9f1853a..eca6a3ac5b5f5efe41156c473f816e2ab733c366 100644 (file)
@@ -1,3 +1,6 @@
+.. SPDX-FileCopyrightText: 2018-2021  kaliko <kaliko@azylum.org>
+.. SPDX-License-Identifier: GPL-3.0-or-later
+
 .. _commands:
 
 Available commands
index 6839ce53011f95166a6f5e8b77502cdfafa962a0..886811f3c596e33db0cd1feae63d0985b48469a1 100644 (file)
@@ -1,4 +1,6 @@
 # coding: utf-8
+# SPDX-FileCopyrightText: 2018-2021  kaliko <kaliko@azylum.org>
+# SPDX-License-Identifier: GPL-3.0-or-later
 #
 # Python MPD Module documentation build configuration file, created by
 # sphinx-quickstart on Mon Mar 12 14:37:32 2018.
index 26ac918615aae02cfc2df31929217e3e0a6262fd..dd1c5c122a6f6751ed06618429880b3325c63861 100644 (file)
@@ -1,3 +1,6 @@
+.. SPDX-FileCopyrightText: 2018-2021  kaliko <kaliko@azylum.org>
+.. SPDX-License-Identifier: GPL-3.0-or-later
+
 Contributing
 =============
 
index 6731e6b932780f250f868dd8721aabf2bb00d73f..eed237de75575fbdc182a49a2b967d49b2c1cebf 100644 (file)
@@ -1,3 +1,6 @@
+.. SPDX-FileCopyrightText: 2018-2021  kaliko <kaliko@azylum.org>
+.. SPDX-License-Identifier: GPL-3.0-or-later
+
 musicpd namespace
 =================
 
index 76871d1af0e9eabd89c28b05efef13044efe1562..df5e6cd18a132d4a3a3b6c41b934f2676e9a06b3 100644 (file)
@@ -1,3 +1,6 @@
+.. SPDX-FileCopyrightText: 2018-2021  kaliko <kaliko@azylum.org>
+.. SPDX-License-Identifier: GPL-3.0-or-later
+
 .. include:: ../../README.rst
 
 Installation
index b89db3b1ad647ae6a50fdf5fc838b61b25f56444..8e9fe4793cc7e3c67d55dcca6cb1fafa0fa2d281 100644 (file)
@@ -1,3 +1,6 @@
+.. SPDX-FileCopyrightText: 2018-2021  kaliko <kaliko@azylum.org>
+.. SPDX-License-Identifier: GPL-3.0-or-later
+
 Using the client library
 =========================
 
index 9603edc5baacc4b8ce04028aa3248073a5fa7267..b44518b9837954ee775ae3f9d844d34888b4dd62 100644 (file)
@@ -1,22 +1,11 @@
-# python-musicpd: Python MPD client library
-# Copyright (C) 2012-2021  kaliko <kaliko@azylum.org>
-# Copyright (C) 2021       Wonko der Verständige <wonko@hanstool.org>
-# Copyright (C) 2019       Naglis Jonaitis <naglis@mailbox.org>
-# Copyright (C) 2019       Bart Van Loon <bbb@bbbart.be>
-# Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
-#
-# python-musicpd is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# python-musicpd 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 Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public License
-# along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.
+# SPDX-FileCopyrightText: 2012-2022  kaliko <kaliko@azylum.org>
+# SPDX-FileCopyrightText: 2021       Wonko der Verständige <wonko@hanstool.org>
+# SPDX-FileCopyrightText: 2019       Naglis Jonaitis <naglis@mailbox.org>
+# SPDX-FileCopyrightText: 2019       Bart Van Loon <bbb@bbbart.be>
+# SPDX-FileCopyrightText: 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
+# SPDX-License-Identifier: GPL-3.0-or-later
+"""python-musicpd: Python Music Player Daemon client library"""
+
 
 import socket
 import os
index 76d56324175cea11f160aedef988b361dda2b8b9..5bbd5c42e61fd73a2ac509e046588f170c25f43d 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,3 +1,5 @@
+# SPDX-FileCopyrightText: 2012-2021  kaliko <kaliko@azylum.org>
+# SPDX-License-Identifier: GPL-3.0-or-later
 [sdist]
 formats = gztar,zip
 
index e2e8805e3d0072e067ab03b956b4da3cb3fe45c8..84eaff9390bd99f01aa1e2b03c4ed0df7a89f30c 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,7 @@
 #! /usr/bin/env python3
 # coding: utf-8
+# SPDX-FileCopyrightText: 2012-2021  kaliko <kaliko@azylum.org>
+# SPDX-License-Identifier: GPL-3.0-or-later
 
 from setuptools import setup
 
diff --git a/test.py b/test.py
index c911a57319e6a24081a05a8e16558a67c3ad71fe..5215917ce898c838c2c53c3cb81f5e7ad42bbd23 100755 (executable)
--- a/test.py
+++ b/test.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python3
-# -*- coding: utf-8 -*-
+# coding: utf-8
+# SPDX-FileCopyrightText: 2012-2021  kaliko <kaliko@azylum.org>
+# SPDX-License-Identifier: GPL-3.0-or-later
 # pylint: disable=missing-docstring
 """
 Test suite highly borrowed^Wsteal from python-mpd2 [0] project.