summaryrefslogtreecommitdiff
path: root/linuxnamespaces
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2025-07-26 09:00:55 +0200
committerHelmut Grohne <helmut@subdivi.de>2025-07-26 09:00:55 +0200
commit5a1118d38032f902b1259928f83636b86742e49e (patch)
tree7a47bcb21870d9b8dce31c94b5120c18d12aef35 /linuxnamespaces
parentdfe59b8fb43de011367912733516fef7f9e288bd (diff)
downloadpython-linuxnamespaces-5a1118d38032f902b1259928f83636b86742e49e.tar.gz
relicense as GPL-2+HEADmain
The earlier GPL-3 only is implied in the new grant.
Diffstat (limited to 'linuxnamespaces')
-rw-r--r--linuxnamespaces/__init__.py2
-rw-r--r--linuxnamespaces/atlocation.py2
-rw-r--r--linuxnamespaces/filedescriptor.py2
-rw-r--r--linuxnamespaces/idmap.py2
-rw-r--r--linuxnamespaces/syscalls.py2
-rw-r--r--linuxnamespaces/systemd/__init__.py2
-rw-r--r--linuxnamespaces/systemd/dbussy.py2
-rw-r--r--linuxnamespaces/systemd/jeepney.py2
-rw-r--r--linuxnamespaces/tarutils.py2
9 files changed, 9 insertions, 9 deletions
diff --git a/linuxnamespaces/__init__.py b/linuxnamespaces/__init__.py
index 83358b6..ccf3314 100644
--- a/linuxnamespaces/__init__.py
+++ b/linuxnamespaces/__init__.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Provide plumbing-layer functionality for working with Linux namespaces in
Python.
diff --git a/linuxnamespaces/atlocation.py b/linuxnamespaces/atlocation.py
index 46ac541..1e719a1 100644
--- a/linuxnamespaces/atlocation.py
+++ b/linuxnamespaces/atlocation.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Describe a location in the filesystem by a combination of a file descriptor
and a file name each of which can be optional. Many Linux system calls are able
diff --git a/linuxnamespaces/filedescriptor.py b/linuxnamespaces/filedescriptor.py
index ee96a94..f159a83 100644
--- a/linuxnamespaces/filedescriptor.py
+++ b/linuxnamespaces/filedescriptor.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""A type tag for integers that represent file descriptors."""
diff --git a/linuxnamespaces/idmap.py b/linuxnamespaces/idmap.py
index 8f33d70..315198a 100644
--- a/linuxnamespaces/idmap.py
+++ b/linuxnamespaces/idmap.py
@@ -1,5 +1,5 @@
# Copyright 2024-2025 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Provide functionalit related to mapping user and group ids in a user
namespace.
diff --git a/linuxnamespaces/syscalls.py b/linuxnamespaces/syscalls.py
index e9b0e44..86b21e3 100644
--- a/linuxnamespaces/syscalls.py
+++ b/linuxnamespaces/syscalls.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Provide typed Python functions for a number of Linux system calls relevant
for Linux namespaces including the new mount API.
diff --git a/linuxnamespaces/systemd/__init__.py b/linuxnamespaces/systemd/__init__.py
index 84cb135..ff09d00 100644
--- a/linuxnamespaces/systemd/__init__.py
+++ b/linuxnamespaces/systemd/__init__.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Communicate with a systemd instance to create e.g. delegated croups."""
diff --git a/linuxnamespaces/systemd/dbussy.py b/linuxnamespaces/systemd/dbussy.py
index 60b74fc..e38a119 100644
--- a/linuxnamespaces/systemd/dbussy.py
+++ b/linuxnamespaces/systemd/dbussy.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Communicate with a systemd instance via dbus using dbussy."""
diff --git a/linuxnamespaces/systemd/jeepney.py b/linuxnamespaces/systemd/jeepney.py
index ef276d3..16fbca1 100644
--- a/linuxnamespaces/systemd/jeepney.py
+++ b/linuxnamespaces/systemd/jeepney.py
@@ -1,5 +1,5 @@
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Communicate with a systemd instance via dbus using jeepney."""
diff --git a/linuxnamespaces/tarutils.py b/linuxnamespaces/tarutils.py
index 5ad60cd..9569939 100644
--- a/linuxnamespaces/tarutils.py
+++ b/linuxnamespaces/tarutils.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3
# Copyright 2024 Helmut Grohne <helmut@subdivi.de>
-# SPDX-License-Identifier: GPL-3
+# SPDX-License-Identifier: GPL-2+
"""Extensions to the tarfile module.
* ZstdTarFile extends TarFile to deal with zstd-compressed archives.