add SPDX-License-Identifier comments rather than using License:
authorJacob Lifshay <programmerjake@gmail.com>
Fri, 8 Apr 2022 23:26:58 +0000 (16:26 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Fri, 8 Apr 2022 23:26:58 +0000 (16:26 -0700)
17 files changed:
src/nmutil/byterev.py
src/nmutil/clz.py
src/nmutil/concurrentunit.py
src/nmutil/divmod.py
src/nmutil/extend.py
src/nmutil/iocontrol.py
src/nmutil/latch.py
src/nmutil/mask.py
src/nmutil/multipipe.py
src/nmutil/nmoperator.py
src/nmutil/picker.py
src/nmutil/pipeline.py
src/nmutil/pipemodbase.py
src/nmutil/ripple.py
src/nmutil/singlepipe.py
src/nmutil/stageapi.py
src/nmutil/util.py

index 84ba740a6a0b02888416b32e7ae13624609b72c1..b0c9daf4afa61ed3aaeef570eb228b217a8383cb 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index 39e832941be146533479552cd59aede32db18da1..c94222610bc29c49583a0eb12a01c58bac4760f8 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 from nmigen import Module, Signal, Elaboratable, Cat, Repl
 import math
 """ This module is much more efficient than PriorityEncoder
 from nmigen import Module, Signal, Elaboratable, Cat, Repl
 import math
 """ This module is much more efficient than PriorityEncoder
index bbb605977c2cafe58d34b6c8eef5e2f0e3163e0f..f317fbcd52ed1c8ee16630841bf23f2ba3681b33 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ concurrent unit from mitch alsup augmentations to 6600 scoreboard
 
     This work is funded through NLnet under Grant 2019-02-012
 """ concurrent unit from mitch alsup augmentations to 6600 scoreboard
 
     This work is funded through NLnet under Grant 2019-02-012
index 5a8207eea424f5330891cb5ba7dea78278d56854..7c503e6199992462824c8646f1ef62d697d6a536 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index c2f8e4d5104ea4874ad71aaadcb78ae952ebae46..7b7d1acb78cdc52422040e85479ad8c680091184 100644 (file)
@@ -1,5 +1,5 @@
+# SPDX-License-Identifier: LGPL-2-or-later
 # Copyright (C) Luke Kenneth Casson Leighton 2020,2021 <lkcl@lkcl.net>
 # Copyright (C) Luke Kenneth Casson Leighton 2020,2021 <lkcl@lkcl.net>
-# License: LGPLv2+
 """
 Provides sign/unsigned extension/truncation utility functions.
 
 """
 Provides sign/unsigned extension/truncation utility functions.
 
index 4705b0079f2ea8fc1720b980da68b7ff4c496ef7..3d32a49bde120cca3b52f195c854f518afbc97ad 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ IO Control API
 
     This work is funded through NLnet under Grant 2019-02-012
 """ IO Control API
 
     This work is funded through NLnet under Grant 2019-02-012
index 769f76848f1bb36d3298cf098f7cfd115ebe8fee..e2d7541d396fa7468668f4bd903346abd504a94f 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index dc2f05d59f4e460b2692798cc749142b2abb933e..3bd69f9b6c1a82e8338039d14821cc0e1b7c33d3 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index d882742d764384f64ce59f773cb10c541dede64c..0b91f8baf565528a10bd9297ba423674289b104b 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ Combinatorial Multi-input and Multi-output multiplexer blocks
     conforming to Pipeline API
 
 """ Combinatorial Multi-input and Multi-output multiplexer blocks
     conforming to Pipeline API
 
index e48bb7fb56222d5de82fdf79b77278aa6bb4f1ca..5163bff740245a55e96eabaf5eb8c0f8e56e1b33 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ nmigen operator functions / utils
 
     This work is funded through NLnet under Grant 2019-02-012
 """ nmigen operator functions / utils
 
     This work is funded through NLnet under Grant 2019-02-012
index 380ffb8051289a962976dc308af8b02af8e3fff0..8df01e783445f53e623e61eac7e1ef3698ed660b 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ Priority Picker: optimised back-to-back PriorityEncoder and Decoder
     and MultiPriorityPicker: cascading mutually-exclusive pickers
 
 """ Priority Picker: optimised back-to-back PriorityEncoder and Decoder
     and MultiPriorityPicker: cascading mutually-exclusive pickers
 
index ded2e03dbc55dba55bff72d46bcb858eb8289744..8d5559a88d61d77b5dd6e33b9ac0044ae645872f 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index 455a2040fb869ff8fb5c97770da938d6566b9400..c07623085e50461cca08ca561430456a740bdd12 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index 6b40d43a5ba8e5043c8eabbcd181d09634265a2a..6e7a5af2eecf317344ec290ef57966d9874995e8 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012
 
index 3fae364960e19e8553bbdef34a9048653ab00b00..eb57e02af5beb86de557283ef368380f3c3eae9b 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ Pipeline API.  For multi-input and multi-output variants, see multipipe.
 
     This work is funded through NLnet under Grant 2019-02-012
 """ Pipeline API.  For multi-input and multi-output variants, see multipipe.
 
     This work is funded through NLnet under Grant 2019-02-012
index bc79071046b5d358e4c9c005b9704be3c48f2ff8..01fc568b0146d2502321441619a667438d1aaa7a 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """ Stage API
 
     This work is funded through NLnet under Grant 2019-02-012
 """ Stage API
 
     This work is funded through NLnet under Grant 2019-02-012
index 68180d449e0e10acdd8e457b56976bade37657d0..5864d5edb92b8db47c752280c1fb3ae83145c698 100644 (file)
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: LGPL-3-or-later
 """
     This work is funded through NLnet under Grant 2019-02-012
 
 """
     This work is funded through NLnet under Grant 2019-02-012