mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
There's no need to pull in python_setuptools_build_meta as maturin is a build system of its own. (From OE-Core rev: ea639b83816ae89c0da0a0695ac80f4d678b33db) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
303 B
Plaintext
18 lines
303 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
inherit python_pyo3 python_pep517
|
|
|
|
DEPENDS += "python3-maturin-native"
|
|
|
|
python_maturin_do_configure() {
|
|
python_pyo3_do_configure
|
|
cargo_common_do_configure
|
|
python_pep517_do_configure
|
|
}
|
|
|
|
EXPORT_FUNCTIONS do_configure
|