From 23cb5c9e5a1e3abfde97bcb126d0549e5bc38639 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 2 Jan 2024 15:15:55 -0600 Subject: [PATCH] add SPDX-FileCopyrightText Signed-off-by: Brian S. Stephan --- gp2040ce_bintools/__init__.py | 1 + gp2040ce_bintools/builder.py | 1 + gp2040ce_bintools/gui.py | 1 + gp2040ce_bintools/rp2040.py | 1 + gp2040ce_bintools/storage.py | 1 + tests/conftest.py | 1 + tests/test_builder.py | 1 + tests/test_commands.py | 1 + tests/test_gui.py | 1 + tests/test_package.py | 1 + tests/test_rp2040.py | 1 + tests/test_storage.py | 1 + 12 files changed, 12 insertions(+) diff --git a/gp2040ce_bintools/__init__.py b/gp2040ce_bintools/__init__.py index befe210..e6d7203 100644 --- a/gp2040ce_bintools/__init__.py +++ b/gp2040ce_bintools/__init__.py @@ -1,5 +1,6 @@ """Initialize the package and get dependencies. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import argparse diff --git a/gp2040ce_bintools/builder.py b/gp2040ce_bintools/builder.py index c3f6bcd..11dfdc8 100644 --- a/gp2040ce_bintools/builder.py +++ b/gp2040ce_bintools/builder.py @@ -1,5 +1,6 @@ """Build binary files for a GP2040-CE board. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import argparse diff --git a/gp2040ce_bintools/gui.py b/gp2040ce_bintools/gui.py index 19245d1..873a442 100644 --- a/gp2040ce_bintools/gui.py +++ b/gp2040ce_bintools/gui.py @@ -1,5 +1,6 @@ """GUI applications for working with binary files. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import argparse diff --git a/gp2040ce_bintools/rp2040.py b/gp2040ce_bintools/rp2040.py index 2e74ff6..0239f2b 100644 --- a/gp2040ce_bintools/rp2040.py +++ b/gp2040ce_bintools/rp2040.py @@ -2,6 +2,7 @@ Much of this code is a partial Python implementation of picotool. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import logging diff --git a/gp2040ce_bintools/storage.py b/gp2040ce_bintools/storage.py index b16c191..9d0d6c1 100644 --- a/gp2040ce_bintools/storage.py +++ b/gp2040ce_bintools/storage.py @@ -1,5 +1,6 @@ """Interact with the protobuf config from a picotool flash dump of a GP2040-CE board. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import argparse diff --git a/tests/conftest.py b/tests/conftest.py index b3a44a1..898d088 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,6 @@ """Create the test fixtures and other data. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import os diff --git a/tests/test_builder.py b/tests/test_builder.py index 0597365..106d766 100644 --- a/tests/test_builder.py +++ b/tests/test_builder.py @@ -1,5 +1,6 @@ """Tests for the image builder module. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import os diff --git a/tests/test_commands.py b/tests/test_commands.py index 5001d42..b2cbca1 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -1,5 +1,6 @@ """Test our tools themselves to make sure they adhere to certain flags. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import json diff --git a/tests/test_gui.py b/tests/test_gui.py index dd59ef6..527f738 100644 --- a/tests/test_gui.py +++ b/tests/test_gui.py @@ -1,5 +1,6 @@ """Test the Textual GUI. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import os diff --git a/tests/test_package.py b/tests/test_package.py index 32d4de3..2068ee1 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -1,5 +1,6 @@ """Test high level package capabilities. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import os diff --git a/tests/test_rp2040.py b/tests/test_rp2040.py index cfd381e..e0688ff 100644 --- a/tests/test_rp2040.py +++ b/tests/test_rp2040.py @@ -1,5 +1,6 @@ """Test operations for interfacing directly with a Pico. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import os diff --git a/tests/test_storage.py b/tests/test_storage.py index 6fc4f7c..7130218 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -1,5 +1,6 @@ """Unit tests for the storage module. +SPDX-FileCopyrightText: © 2023 Brian S. Stephan SPDX-License-Identifier: MIT """ import os