linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] Cover letter
@ 2023-07-26 14:48 Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 1/5] bitmasklist_test: Added SPDX licence Anubhav Shelat
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Anubhav Shelat @ 2023-07-26 14:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: kcarcia, Anubhav Shelat

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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/5] bitmasklist_test: Added SPDX licence
  2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
@ 2023-07-26 14:48 ` Anubhav Shelat
  2023-07-26 16:47   ` John Kacur
  2023-07-26 14:48 ` [PATCH 2/5] setup: " Anubhav Shelat
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Anubhav Shelat @ 2023-07-26 14:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: kcarcia, Anubhav Shelat

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


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/5] setup: Added SPDX licence
  2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 1/5] bitmasklist_test: Added SPDX licence Anubhav Shelat
@ 2023-07-26 14:48 ` Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 3/5] __init__: " Anubhav Shelat
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Anubhav Shelat @ 2023-07-26 14:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: kcarcia, Anubhav Shelat

setup: Added SPDX licence
Signed-off-by: Anubhav Shelat <ashelat@redhat.com>
---
 setup.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/setup.py b/setup.py
index 0ee543487c31..060f903dcb0c 100755
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
 #!/usr/bin/python3
 import os
 from os.path import isfile, join
-- 
2.39.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/5] __init__: Added SPDX licence
  2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 1/5] bitmasklist_test: Added SPDX licence Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 2/5] setup: " Anubhav Shelat
@ 2023-07-26 14:48 ` Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 4/5] procfs: " Anubhav Shelat
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Anubhav Shelat @ 2023-07-26 14:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: kcarcia, Anubhav Shelat

__init__: Added SPDX licence
Signed-off-by: Anubhav Shelat <ashelat@redhat.com>
---
 procfs/__init__.py | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/procfs/__init__.py b/procfs/__init__.py
index 071c54dacab8..99785e735d4a 100644
--- a/procfs/__init__.py
+++ b/procfs/__init__.py
@@ -1,22 +1,8 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
 #! /usr/bin/python3
 # -*- python -*-
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2008, 2009 Red Hat, Inc.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
 """
 Copyright (c) 2008, 2009  Red Hat Inc.
 
-- 
2.39.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/5] procfs: Added SPDX licence
  2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
                   ` (2 preceding siblings ...)
  2023-07-26 14:48 ` [PATCH 3/5] __init__: " Anubhav Shelat
@ 2023-07-26 14:48 ` Anubhav Shelat
  2023-07-26 14:48 ` [PATCH 5/5] utilist: " Anubhav Shelat
  2023-07-26 15:06 ` [PATCH 0/5] Cover letter John Kacur
  5 siblings, 0 replies; 8+ messages in thread
From: Anubhav Shelat @ 2023-07-26 14:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: kcarcia, Anubhav Shelat

procfs: Added SPDX licence
Signed-off-by: Anubhav Shelat <ashelat@redhat.com>
---
 procfs/procfs.py | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/procfs/procfs.py b/procfs/procfs.py
index 36f38f965475..0037c18fead1 100755
--- a/procfs/procfs.py
+++ b/procfs/procfs.py
@@ -1,22 +1,10 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
 #!/usr/bin/python3
 # -*- python -*-
 # -*- coding: utf-8 -*-
 #
 # Copyright (C) 2007-2015 Red Hat, Inc.
 #
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
 
 import os
 import platform
-- 
2.39.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/5] utilist: Added SPDX licence
  2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
                   ` (3 preceding siblings ...)
  2023-07-26 14:48 ` [PATCH 4/5] procfs: " Anubhav Shelat
@ 2023-07-26 14:48 ` Anubhav Shelat
  2023-07-26 15:06 ` [PATCH 0/5] Cover letter John Kacur
  5 siblings, 0 replies; 8+ messages in thread
From: Anubhav Shelat @ 2023-07-26 14:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: kcarcia, Anubhav Shelat

utilist: Added SPDX licence
Signed-off-by: Anubhav Shelat <ashelat@redhat.com>
---
 procfs/utilist.py | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/procfs/utilist.py b/procfs/utilist.py
index f9f1862944c8..371006ea5934 100755
--- a/procfs/utilist.py
+++ b/procfs/utilist.py
@@ -1,22 +1,10 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
 #! /usr/bin/python3
 # -*- python -*-
 # -*- coding: utf-8 -*-
 #
 # Copyright (C) 2007 Red Hat, Inc.
 #
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
 
 from six.moves import range
 
-- 
2.39.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 0/5] Cover letter
  2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
                   ` (4 preceding siblings ...)
  2023-07-26 14:48 ` [PATCH 5/5] utilist: " Anubhav Shelat
@ 2023-07-26 15:06 ` John Kacur
  5 siblings, 0 replies; 8+ messages in thread
From: John Kacur @ 2023-07-26 15:06 UTC (permalink / raw)
  To: Anubhav Shelat; +Cc: linux-rt-users, kcarcia



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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/5] bitmasklist_test: Added SPDX licence
  2023-07-26 14:48 ` [PATCH 1/5] bitmasklist_test: Added SPDX licence Anubhav Shelat
@ 2023-07-26 16:47   ` John Kacur
  0 siblings, 0 replies; 8+ messages in thread
From: John Kacur @ 2023-07-26 16:47 UTC (permalink / raw)
  To: Anubhav Shelat; +Cc: linux-rt-users, kcarcia



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


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-07-26 16:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-26 14:48 [PATCH 0/5] Cover letter Anubhav Shelat
2023-07-26 14:48 ` [PATCH 1/5] bitmasklist_test: Added SPDX licence Anubhav Shelat
2023-07-26 16:47   ` John Kacur
2023-07-26 14:48 ` [PATCH 2/5] setup: " Anubhav Shelat
2023-07-26 14:48 ` [PATCH 3/5] __init__: " Anubhav Shelat
2023-07-26 14:48 ` [PATCH 4/5] procfs: " Anubhav Shelat
2023-07-26 14:48 ` [PATCH 5/5] utilist: " Anubhav Shelat
2023-07-26 15:06 ` [PATCH 0/5] Cover letter John Kacur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).