add copyright notices
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 22 Dec 2021 01:12:14 +0000 (17:12 -0800)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 22 Dec 2021 01:12:14 +0000 (17:12 -0800)
email and (C) aren't required according to https://www.gnu.org/licenses/gpl-howto.html

src/nmutil/get_test_path.py
src/nmutil/grev.py
src/nmutil/lut.py
src/nmutil/sim_util.py
src/nmutil/test/test_grev.py
src/nmutil/test/test_lut.py

index 52bd53066d2254f87888a9c2b549ee3d5776b36d..f58ada8dbc7da1fedb9bd823bdabb89decf7a2c5 100644 (file)
@@ -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
index 166414c27fc001a2289aedb9c5fb21394a3aae51..b0dab4bbc3a3ea2eef1584d64ae96d0b33f250d3 100644 (file)
@@ -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 <lkcl@lkcl.net>
 
 # Funded by NLnet Assure Programme 2021-02-052, https://nlnet.nl/assure part
index 261a1d1bcbfc1a7fab2e9c103667b38e530c5bc0..8e8a18a7c4c5c99b815dcbc0bdcc05e1947cbde3 100644 (file)
@@ -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 <lkcl@lkcl.net>
-# 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.
index 643c32e5093b34761177a27d1aed2e87d20c4981..9484eb4ab7bf619226689576ffac56a6be389c2d 100644 (file)
@@ -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
index 6b6fd9e0f37b862ca7fa99b3d49e8d65dcee6a39..15e71489a738b601646cdb6bc2683550e7e58f13 100644 (file)
@@ -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.
index b30c4b7c801158e531a9619beead852a9b14d1c6..cdfaa2db1a0bf2d063688bff14af90672ac2ca6e 100644 (file)
@@ -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