mbox series

[0/5] Cover letter

Message ID 20230726144826.355643-1-ashelat@redhat.com
Headers show
Series Cover letter | expand

Message

Anubhav Shelat July 26, 2023, 2:48 p.m. UTC
Added SPDX licence to python files in python-linux-procfs

Anubhav Shelat (5):
  bitmasklist_test: Added SPDX licence
  setup: Added SPDX licence
  __init__: Added SPDX licence
  procfs: Added SPDX licence
  utilist: Added SPDX licence

 bitmasklist_test.py |  1 +
 procfs/__init__.py  | 16 +---------------
 procfs/procfs.py    | 14 +-------------
 procfs/utilist.py   | 14 +-------------
 setup.py            |  1 +
 5 files changed, 5 insertions(+), 41 deletions(-)

Comments

John Kacur July 26, 2023, 3:06 p.m. UTC | #1
On Wed, 26 Jul 2023, Anubhav Shelat wrote:

> Added SPDX licence to python files in python-linux-procfs
> 
> Anubhav Shelat (5):
>   bitmasklist_test: Added SPDX licence
>   setup: Added SPDX licence
>   __init__: Added SPDX licence
>   procfs: Added SPDX licence
>   utilist: Added SPDX licence
> 
>  bitmasklist_test.py |  1 +
>  procfs/__init__.py  | 16 +---------------
>  procfs/procfs.py    | 14 +-------------
>  procfs/utilist.py   | 14 +-------------
>  setup.py            |  1 +
>  5 files changed, 5 insertions(+), 41 deletions(-)
> 
> -- 
> 2.39.3
> 
> 
Thanks for the patches, however, this is the wrong mailing list!
Please send them here instead.
https://lists.fedorahosted.org/archives/list/tuna-devel@lists.fedorahosted.org/

John
John Kacur July 26, 2023, 4:47 p.m. UTC | #2
On Wed, 26 Jul 2023, Anubhav Shelat wrote:

> bitmasklist_test: Added SPDX licence
> Signed-off-by: Anubhav Shelat <ashelat@redhat.com>
> ---
>  bitmasklist_test.py | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/bitmasklist_test.py b/bitmasklist_test.py
> index 677c84a9504f..16169af52bfd 100755
> --- a/bitmasklist_test.py
> +++ b/bitmasklist_test.py
> @@ -1,3 +1,4 @@
> +# SPDX-License-Identifier: GPL-2.0-or-later
>  #!/usr/bin/python3
>  
>  """ Module to test bitmasklist functionality """
> -- 
> 2.39.3
> 
> 

Did you try running this?
The shebang (#!) must always be the first thing in a script

John