mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-08-08 11:57:36 +00:00
38e02a08e7
Add a recipe for release 2.1.0 of python-xmp-toolkit: - Add support for python 3.14 - Make exempi a run-time dependency - Add missing error codes - Remove tox - Use flit for build - Remove travis - Remove packaging dependency requirement - Remove support for python <= 3.6 (All python2 code removed) - fix exempi returns char-size bool, not int - homebrew path fixup This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
32 lines
756 B
BlitzBasic
32 lines
756 B
BlitzBasic
SUMMARY = "XMP I/O wrapping Exempi"
|
|
DESCRIPTION = "XMP I/O wrapping Exempi"
|
|
HOMEPAGE = "https://github.com/python-xmp-toolkit/python-xmp-toolkit"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=30fa74de63728af31f13dc3bb8cb1756"
|
|
|
|
SRC_URI[sha256sum] = "ca0aa2c60d418dd2558767db59953ab5954fb5b87dc0b50cecd60566b0b4e2da"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest-python-pytest
|
|
|
|
PYPI_PACKAGE = "python_xmp_toolkit"
|
|
|
|
DEPENDS += "\
|
|
python3-pytz-native \
|
|
"
|
|
RDEPENDS:${PN} = "\
|
|
exempi \
|
|
python3-pytz \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-core \
|
|
python3-pytest-cov \
|
|
"
|
|
|
|
do_install_ptest:append() {
|
|
install -d ${D}${PTEST_PATH}/test
|
|
cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|