From: Anders Darander Date: Wed, 1 Mar 2017 17:20:01 +0000 (+0100) Subject: scripts/lib/create_npm: handle Public Domain licenses X-Git-Tag: uninative-1.5~30 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d7f0af5aa90a9ef7714c842fb4cb762017820768;p=openembedded-core.git scripts/lib/create_npm: handle Public Domain licenses Rewrite Public Domain as PD, as that's what the place holder in meta/files/common_licenses is called. Signed-off-by: Anders Darander Signed-off-by: Ross Burton --- diff --git a/scripts/lib/recipetool/create_npm.py b/scripts/lib/recipetool/create_npm.py index 72ceb953e2..158029fa04 100644 --- a/scripts/lib/recipetool/create_npm.py +++ b/scripts/lib/recipetool/create_npm.py @@ -60,6 +60,7 @@ class NpmRecipeHandler(RecipeHandler): if license[-1] == ')': license = license[:-1] license = license.replace('MIT/X11', 'MIT') + license = license.replace('Public Domain', 'PD') license = license.replace('SEE LICENSE IN EULA', 'SEE-LICENSE-IN-EULA') return license