[gnome-continuous-yocto/gnomeostree-3.28-rocko: 4934/8267] create_npm.py: convert MIT/X11 to MIT



commit ca83f35f5a561fc50b6d026a6237ee07b775b396
Author: Anders Darander <anders chargestorm se>
Date:   Wed Mar 1 18:19:56 2017 +0100

    create_npm.py: convert MIT/X11 to MIT
    
    Quite a few npm packages declare MIT/X11 as their license. This is equal to
    a pure MIT license.
    
    (From OE-Core rev: 8df5e731a10cc9ade1266e9daaa26ec7c855c062)
    
    Signed-off-by: Anders Darander <anders chargestorm se>
    Signed-off-by: Ross Burton <ross burton intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 scripts/lib/recipetool/create_npm.py |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/scripts/lib/recipetool/create_npm.py b/scripts/lib/recipetool/create_npm.py
index 3ba6de0..d3fcd99 100644
--- a/scripts/lib/recipetool/create_npm.py
+++ b/scripts/lib/recipetool/create_npm.py
@@ -45,6 +45,8 @@ class NpmRecipeHandler(RecipeHandler):
             license = data['license']
             if isinstance(license, dict):
                 license = license.get('type', None)
+            if 'MIT/X11' in license:
+                license = 'MIT'
         return license
 
     def _shrinkwrap(self, srctree, localfilesdir, extravalues, lines_before):


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]