mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
recipetool; add support for python_mesonpy class
* Add support to detect the "mesonpy" build-backend for recipetool create. * Add oe-selftest case for creating a recipe for "siphash24" from pypi. https://pypi.org/project/siphash24/ This is by far the simplest recipe using the mesonpy build backend. Upstream does not provide LICENSE file(s) and we do not detect the LICENSE so don't check for that result in the test. Likewise, upstream does not define HOMEPAGE, so skip that result. (From OE-Core rev: 256749322671d2f4ea994db671d73c4de10e1723) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a7484a66b4
commit
9f7475b4e5
@@ -739,6 +739,7 @@ class PythonPyprojectTomlRecipeHandler(PythonRecipeHandler):
|
||||
"flit_core.buildapi": "python_flit_core",
|
||||
"hatchling.build": "python_hatchling",
|
||||
"maturin": "python_maturin",
|
||||
"mesonpy": "python_mesonpy",
|
||||
}
|
||||
|
||||
# setuptools.build_meta and flit declare project metadata into the "project" section of pyproject.toml
|
||||
@@ -779,6 +780,8 @@ class PythonPyprojectTomlRecipeHandler(PythonRecipeHandler):
|
||||
"python3-poetry-core-native",
|
||||
# already provided by python_flit_core.bbclass
|
||||
"python3-flit-core-native",
|
||||
# already provided by python_mesonpy
|
||||
"python3-meson-python-native",
|
||||
]
|
||||
|
||||
# add here a list of known and often used packages and the corresponding bitbake package
|
||||
@@ -790,6 +793,7 @@ class PythonPyprojectTomlRecipeHandler(PythonRecipeHandler):
|
||||
"setuptools-scm": "python3-setuptools-scm",
|
||||
"hatchling": "python3-hatchling",
|
||||
"hatch-vcs": "python3-hatch-vcs",
|
||||
"meson-python" : "python3-meson-python",
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
|
||||
Reference in New Issue
Block a user