From: Jacob Lifshay Date: Fri, 8 Apr 2022 23:26:58 +0000 (-0700) Subject: add SPDX-License-Identifier comments rather than using License: X-Git-Url: https://git.libre-soc.org/?p=nmutil.git;a=commitdiff_plain;h=8aa377705c96f365606950c0fa142e40546e566b add SPDX-License-Identifier comments rather than using License: --- diff --git a/src/nmutil/byterev.py b/src/nmutil/byterev.py index 84ba740..b0c9daf 100644 --- a/src/nmutil/byterev.py +++ b/src/nmutil/byterev.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/clz.py b/src/nmutil/clz.py index 39e8329..c942226 100644 --- a/src/nmutil/clz.py +++ b/src/nmutil/clz.py @@ -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 diff --git a/src/nmutil/concurrentunit.py b/src/nmutil/concurrentunit.py index bbb6059..f317fbc 100644 --- a/src/nmutil/concurrentunit.py +++ b/src/nmutil/concurrentunit.py @@ -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 diff --git a/src/nmutil/divmod.py b/src/nmutil/divmod.py index 5a8207e..7c503e6 100644 --- a/src/nmutil/divmod.py +++ b/src/nmutil/divmod.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/extend.py b/src/nmutil/extend.py index c2f8e4d..7b7d1ac 100644 --- a/src/nmutil/extend.py +++ b/src/nmutil/extend.py @@ -1,5 +1,5 @@ +# SPDX-License-Identifier: LGPL-2-or-later # Copyright (C) Luke Kenneth Casson Leighton 2020,2021 -# License: LGPLv2+ """ Provides sign/unsigned extension/truncation utility functions. diff --git a/src/nmutil/iocontrol.py b/src/nmutil/iocontrol.py index 4705b00..3d32a49 100644 --- a/src/nmutil/iocontrol.py +++ b/src/nmutil/iocontrol.py @@ -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 diff --git a/src/nmutil/latch.py b/src/nmutil/latch.py index 769f768..e2d7541 100644 --- a/src/nmutil/latch.py +++ b/src/nmutil/latch.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/mask.py b/src/nmutil/mask.py index dc2f05d..3bd69f9 100644 --- a/src/nmutil/mask.py +++ b/src/nmutil/mask.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/multipipe.py b/src/nmutil/multipipe.py index d882742..0b91f8b 100644 --- a/src/nmutil/multipipe.py +++ b/src/nmutil/multipipe.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ Combinatorial Multi-input and Multi-output multiplexer blocks conforming to Pipeline API diff --git a/src/nmutil/nmoperator.py b/src/nmutil/nmoperator.py index e48bb7f..5163bff 100644 --- a/src/nmutil/nmoperator.py +++ b/src/nmutil/nmoperator.py @@ -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 diff --git a/src/nmutil/picker.py b/src/nmutil/picker.py index 380ffb8..8df01e7 100644 --- a/src/nmutil/picker.py +++ b/src/nmutil/picker.py @@ -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 diff --git a/src/nmutil/pipeline.py b/src/nmutil/pipeline.py index ded2e03..8d5559a 100644 --- a/src/nmutil/pipeline.py +++ b/src/nmutil/pipeline.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/pipemodbase.py b/src/nmutil/pipemodbase.py index 455a204..c076230 100644 --- a/src/nmutil/pipemodbase.py +++ b/src/nmutil/pipemodbase.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/ripple.py b/src/nmutil/ripple.py index 6b40d43..6e7a5af 100644 --- a/src/nmutil/ripple.py +++ b/src/nmutil/ripple.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/singlepipe.py b/src/nmutil/singlepipe.py index 3fae364..eb57e02 100644 --- a/src/nmutil/singlepipe.py +++ b/src/nmutil/singlepipe.py @@ -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 diff --git a/src/nmutil/stageapi.py b/src/nmutil/stageapi.py index bc79071..01fc568 100644 --- a/src/nmutil/stageapi.py +++ b/src/nmutil/stageapi.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ Stage API This work is funded through NLnet under Grant 2019-02-012 diff --git a/src/nmutil/util.py b/src/nmutil/util.py index 68180d4..5864d5e 100644 --- a/src/nmutil/util.py +++ b/src/nmutil/util.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: LGPL-3-or-later """ This work is funded through NLnet under Grant 2019-02-012