Re: [yocto] [PATCH] [auto-upgrade-helper] Add SPDX identifier to auto-upgrade-helper

2019-10-22 Thread Alexander Kanavin
Thanks, patch applied and pushed.

Alex

On Mon, 21 Oct 2019 at 14:46, Yann CARDAILLAC 
wrote:

> Hi guys,
>
> I'm working on bug :
> https://bugzilla.yoctoproject.org/show_bug.cgi?id=13531
>
> I've add GPLV2-or-later to all the sources, is there any modification you
> want to add?
>
> Best regards,
>
> Yann CARDAILLAC
> --
> [image: SMILE] 
>
> 20 rue des Jardins
> 92600 Asnières-sur-Seine
> *Yann CARDAILLAC*
> Ingénieur Systèmes Embarqués
>
> [image: email] yann.cardail...@smile.fr
> [image: url] http://www.smile.eu
>
> [image: Twitter]  [image: Facebook]
>  [image: LinkedIn]
>  [image: Github]
> 
>
>
> [image: eco] Pour la planète, n'imprimez ce mail que si c'est nécessaire
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH] [auto-upgrade-helper] Add SPDX identifier to auto-upgrade-helper

2019-10-21 Thread Yann CARDAILLAC
Hi guys,

I'm working on bug :
https://bugzilla.yoctoproject.org/show_bug.cgi?id=13531

I've add GPLV2-or-later to all the sources, is there any modification you
want to add?

Best regards,

Yann CARDAILLAC
-- 
[image: SMILE] 

20 rue des Jardins
92600 Asnières-sur-Seine
*Yann CARDAILLAC*
Ingénieur Systèmes Embarqués

[image: email] yann.cardail...@smile.fr
[image: url] http://www.smile.eu

[image: Twitter]  [image: Facebook]
 [image: LinkedIn]
 [image: Github]



[image: eco] Pour la planète, n'imprimez ce mail que si c'est nécessaire
From d90316a23834c5631b352e123ebfbfb3b1bd02e5 Mon Sep 17 00:00:00 2001
From: Yann CARDAILLAC 
Date: Mon, 21 Oct 2019 14:40:35 +0200
Subject: [PATCH] add SPDX Licence identifier

Signed-off-by: Yann CARDAILLAC 
---
 modules/buildhistory.py   | 1 +
 modules/errors.py | 1 +
 modules/statistics.py | 1 +
 modules/steps.py  | 1 +
 modules/testimage.py  | 1 +
 modules/utils/__init__.py | 1 +
 modules/utils/bitbake.py  | 1 +
 modules/utils/devtool.py  | 1 +
 modules/utils/emailhandler.py | 1 +
 modules/utils/git.py  | 1 +
 upgradehelper.py  | 1 +
 11 files changed, 11 insertions(+)
 mode change 100755 => 100644 upgradehelper.py

diff --git a/modules/buildhistory.py b/modules/buildhistory.py
index e78da05..4fdc36c 100644
--- a/modules/buildhistory.py
+++ b/modules/buildhistory.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2015 Intel Corporation
diff --git a/modules/errors.py b/modules/errors.py
index ad56215..fa543f7 100644
--- a/modules/errors.py
+++ b/modules/errors.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2014 Intel Corporation
diff --git a/modules/statistics.py b/modules/statistics.py
index db83c5b..323d042 100644
--- a/modules/statistics.py
+++ b/modules/statistics.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2014 Intel Corporation
diff --git a/modules/steps.py b/modules/steps.py
index 87d7584..1465b78 100644
--- a/modules/steps.py
+++ b/modules/steps.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2015 Intel Corporation
diff --git a/modules/testimage.py b/modules/testimage.py
index 35e23c9..4272c84 100644
--- a/modules/testimage.py
+++ b/modules/testimage.py
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2015 Intel Corporation
diff --git a/modules/utils/__init__.py b/modules/utils/__init__.py
index e69de29..315c06b 100644
--- a/modules/utils/__init__.py
+++ b/modules/utils/__init__.py
@@ -0,0 +1 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
diff --git a/modules/utils/bitbake.py b/modules/utils/bitbake.py
index 2ae3a1c..4835ca6 100644
--- a/modules/utils/bitbake.py
+++ b/modules/utils/bitbake.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2014 Intel Corporation
diff --git a/modules/utils/devtool.py b/modules/utils/devtool.py
index 7f5b5d4..0d27bb0 100644
--- a/modules/utils/devtool.py
+++ b/modules/utils/devtool.py
@@ -1,3 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
 import os
 import logging as log
 from logging import debug as D
diff --git a/modules/utils/emailhandler.py b/modules/utils/emailhandler.py
index 8436364..066f013 100644
--- a/modules/utils/emailhandler.py
+++ b/modules/utils/emailhandler.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2014 Intel Corporation
diff --git a/modules/utils/git.py b/modules/utils/git.py
index 749d24d..abdcc47 100644
--- a/modules/utils/git.py
+++ b/modules/utils/git.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2014 Intel Corporation
diff --git a/upgradehelper.py b/upgradehelper.py
old mode 100755
new mode 100644
index bdd6d4e..2cfa94a
--- a/upgradehelper.py
+++ b/upgradehelper.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# SPDX-License-Identifier: GPL-2.0-or-later
 # vim: set ts=4 sw=4 et:
 #
 # Copyright (c) 2013 - 2014 Intel Corporation
-- 
2.7.4

-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto