diff options
Diffstat (limited to 'scripts/lib/recipetool/create_buildsys_python.py')
-rw-r--r-- | scripts/lib/recipetool/create_buildsys_python.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/create_buildsys_python.py b/scripts/lib/recipetool/create_buildsys_python.py index a589343cfb..a807dafae5 100644 --- a/scripts/lib/recipetool/create_buildsys_python.py +++ b/scripts/lib/recipetool/create_buildsys_python.py | |||
@@ -739,6 +739,7 @@ class PythonPyprojectTomlRecipeHandler(PythonRecipeHandler): | |||
739 | "flit_core.buildapi": "python_flit_core", | 739 | "flit_core.buildapi": "python_flit_core", |
740 | "hatchling.build": "python_hatchling", | 740 | "hatchling.build": "python_hatchling", |
741 | "maturin": "python_maturin", | 741 | "maturin": "python_maturin", |
742 | "mesonpy": "python_mesonpy", | ||
742 | } | 743 | } |
743 | 744 | ||
744 | # setuptools.build_meta and flit declare project metadata into the "project" section of pyproject.toml | 745 | # setuptools.build_meta and flit declare project metadata into the "project" section of pyproject.toml |
@@ -779,6 +780,8 @@ class PythonPyprojectTomlRecipeHandler(PythonRecipeHandler): | |||
779 | "python3-poetry-core-native", | 780 | "python3-poetry-core-native", |
780 | # already provided by python_flit_core.bbclass | 781 | # already provided by python_flit_core.bbclass |
781 | "python3-flit-core-native", | 782 | "python3-flit-core-native", |
783 | # already provided by python_mesonpy | ||
784 | "python3-meson-python-native", | ||
782 | ] | 785 | ] |
783 | 786 | ||
784 | # add here a list of known and often used packages and the corresponding bitbake package | 787 | # add here a list of known and often used packages and the corresponding bitbake package |
@@ -790,6 +793,7 @@ class PythonPyprojectTomlRecipeHandler(PythonRecipeHandler): | |||
790 | "setuptools-scm": "python3-setuptools-scm", | 793 | "setuptools-scm": "python3-setuptools-scm", |
791 | "hatchling": "python3-hatchling", | 794 | "hatchling": "python3-hatchling", |
792 | "hatch-vcs": "python3-hatch-vcs", | 795 | "hatch-vcs": "python3-hatch-vcs", |
796 | "meson-python" : "python3-meson-python", | ||
793 | } | 797 | } |
794 | 798 | ||
795 | def __init__(self): | 799 | def __init__(self): |