Hi, I've been working on bug 13524 :
https://bugzilla.yoctoproject.org/show_bug.cgi?id=13524 Here's the patch. Basically I've been adding : # SPDX-License-Identifier: GPL-2.0-or-later to all .py files. Regards, Yann CARDAILLAC
From d89bef6e7b230a627aedd673686509495ea3ed53 Mon Sep 17 00:00:00 2001 From: Yann CARDAILLAC <[email protected]> Date: Tue, 8 Oct 2019 13:33:39 +0200 Subject: [PATCH] add License SPDX identifier to scripts Signed-off-by: Yann CARDAILLAC <[email protected]> --- announce.py | 1 + get_cves.py | 1 + get_hashes.py | 1 + rel_type.py | 1 + release.py | 1 + relnotes.py | 1 + testresults.py | 1 + unihash.py | 1 + uninative.py | 1 + utils.py | 1 + where_am_i.py | 1 + 11 files changed, 11 insertions(+) diff --git a/announce.py b/announce.py index 1dc026b..5ed8ce9 100755 --- a/announce.py +++ b/announce.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on June 19, 2019 diff --git a/get_cves.py b/get_cves.py index 9946af5..081a940 100755 --- a/get_cves.py +++ b/get_cves.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Nov 7, 2018 diff --git a/get_hashes.py b/get_hashes.py index d83b64d..6e13b33 100755 --- a/get_hashes.py +++ b/get_hashes.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Oct 16, 2018 diff --git a/rel_type.py b/rel_type.py index da1dfd1..d85c596 100755 --- a/rel_type.py +++ b/rel_type.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Oct 16, 2018 diff --git a/release.py b/release.py index bf8cd3e..ad1c70d 100755 --- a/release.py +++ b/release.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Jan 7, 2016 diff --git a/relnotes.py b/relnotes.py index 4954ff1..c604a98 100755 --- a/relnotes.py +++ b/relnotes.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Feb 22, 2016 diff --git a/testresults.py b/testresults.py index 65f8a7c..40e8c97 100755 --- a/testresults.py +++ b/testresults.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on June 20, 2019 diff --git a/unihash.py b/unihash.py index 5054b90..381e20c 100644 --- a/unihash.py +++ b/unihash.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on August 7, 2018 diff --git a/uninative.py b/uninative.py index 144a260..f5271ae 100644 --- a/uninative.py +++ b/uninative.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on July 31, 2017 diff --git a/utils.py b/utils.py index 6cb8e20..baa7ce7 100644 --- a/utils.py +++ b/utils.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Oct 16, 2018 diff --git a/where_am_i.py b/where_am_i.py index 9854d9b..662095d 100644 --- a/where_am_i.py +++ b/where_am_i.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ''' Created on Aug 21, 2018 -- 2.7.4
-- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
