summaryrefslogtreecommitdiffstats
path: root/scripts/lib
diff options
context:
space:
mode:
authorJulien Stephan <jstephan@baylibre.com>2023-10-25 17:46:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-27 08:28:38 +0100
commitbe129bd0bc5ed4e637dbb313c8cf96bad660438c (patch)
treeb2d75867d82705696f1f962db8f1717919dbc615 /scripts/lib
parent0021e3573af3751089c45b690213f5abe4a883f8 (diff)
downloadpoky-be129bd0bc5ed4e637dbb313c8cf96bad660438c.tar.gz
recipetool/create_buildsys_python: prefix created recipes with python3-
By convention, all python recipes start with "python3-" so update create_buildsys_python to do this This rule doesn't apply for packages already starting with "python" Update recipetool's selftest accordingly (From OE-Core rev: b0d87440e610b80f763d09784d4a90a148bb3e7b) Signed-off-by: Julien Stephan <jstephan@baylibre.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r--scripts/lib/recipetool/create_buildsys_python.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/create_buildsys_python.py b/scripts/lib/recipetool/create_buildsys_python.py
index 321d0ba257..502e1dfbc3 100644
--- a/scripts/lib/recipetool/create_buildsys_python.py
+++ b/scripts/lib/recipetool/create_buildsys_python.py
@@ -297,6 +297,11 @@ class PythonRecipeHandler(RecipeHandler):
297 value = ' '.join(str(v) for v in values if v) 297 value = ' '.join(str(v) for v in values if v)
298 298
299 bbvar = self.bbvar_map[field] 299 bbvar = self.bbvar_map[field]
300 if bbvar == "PN":
301 # by convention python recipes start with "python3-"
302 if not value.startswith('python'):
303 value = 'python3-' + value
304
300 if bbvar not in extravalues and value: 305 if bbvar not in extravalues and value:
301 extravalues[bbvar] = value 306 extravalues[bbvar] = value
302 307