From 2dc3f1156fc26d54af2b9f5a22e13038278f6382 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Tue, 21 Dec 2021 17:12:14 -0800 Subject: [PATCH] add copyright notices email and (C) aren't required according to https://www.gnu.org/licenses/gpl-howto.html --- src/nmutil/get_test_path.py | 5 ++++- src/nmutil/grev.py | 2 +- src/nmutil/lut.py | 6 ++++-- src/nmutil/sim_util.py | 5 ++++- src/nmutil/test/test_grev.py | 3 +-- src/nmutil/test/test_lut.py | 5 ++++- 6 files changed, 18 insertions(+), 8 deletions(-) diff --git a/src/nmutil/get_test_path.py b/src/nmutil/get_test_path.py index 52bd530..f58ada8 100644 --- a/src/nmutil/get_test_path.py +++ b/src/nmutil/get_test_path.py @@ -1,5 +1,8 @@ # SPDX-License-Identifier: LGPL-3-or-later -# See Notices.txt for copyright information +# Copyright 2021 Jacob Lifshay + +# Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part +# of Horizon 2020 EU Programme 957073. import weakref from pathlib import Path diff --git a/src/nmutil/grev.py b/src/nmutil/grev.py index 166414c..b0dab4b 100644 --- a/src/nmutil/grev.py +++ b/src/nmutil/grev.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: LGPL-3-or-later -# Copyright Jacob Lifshay ADD EMAIL ADDRESS ADD YEAR - FOLLOW STANDARD PRACTICE +# Copyright 2021 Jacob Lifshay programmerjake@gmail.com # Copyright (C) 2021 Luke Kenneth Casson Leighton # Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part diff --git a/src/nmutil/lut.py b/src/nmutil/lut.py index 261a1d1..8e8a18a 100644 --- a/src/nmutil/lut.py +++ b/src/nmutil/lut.py @@ -1,7 +1,9 @@ # SPDX-License-Identifier: LGPL-3-or-later -# TODO: Copyright notice (standard style, plenty of examples) +# Copyright 2021 Jacob Lifshay # Copyright (C) 2021 Luke Kenneth Casson Leighton -# TODO: credits to NLnet for funding + +# Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part +# of Horizon 2020 EU Programme 957073. """Bitwise logic operators implemented using a look-up table, like LUTs in FPGAs. Inspired by x86's `vpternlog[dq]` instructions. diff --git a/src/nmutil/sim_util.py b/src/nmutil/sim_util.py index 643c32e..9484eb4 100644 --- a/src/nmutil/sim_util.py +++ b/src/nmutil/sim_util.py @@ -1,5 +1,8 @@ # SPDX-License-Identifier: LGPL-3-or-later -# See Notices.txt for copyright information +# Copyright 2021 Jacob Lifshay + +# Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part +# of Horizon 2020 EU Programme 957073. from contextlib import contextmanager from hashlib import sha256 diff --git a/src/nmutil/test/test_grev.py b/src/nmutil/test/test_grev.py index 6b6fd9e..15e7148 100644 --- a/src/nmutil/test/test_grev.py +++ b/src/nmutil/test/test_grev.py @@ -1,6 +1,5 @@ # SPDX-License-Identifier: LGPL-3-or-later -# XXX - this is insufficient See Notices.txt for copyright information - XXX -# XXX TODO: add individual copyright +# Copyright 2021 Jacob Lifshay # Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part # of Horizon 2020 EU Programme 957073. diff --git a/src/nmutil/test/test_lut.py b/src/nmutil/test/test_lut.py index b30c4b7..cdfaa2d 100644 --- a/src/nmutil/test/test_lut.py +++ b/src/nmutil/test/test_lut.py @@ -1,5 +1,8 @@ # SPDX-License-Identifier: LGPL-3-or-later -# See Notices.txt for copyright information +# Copyright 2021 Jacob Lifshay + +# Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part +# of Horizon 2020 EU Programme 957073. import unittest from nmigen.hdl.ast import AnyConst, Assert, Signal -- 2.30.2