mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
RDEPENDS on python3-tomli instead of python3-toml Cleanup RDEPENDS (common vs. class-target) For changes, see: https://github.com/pypa/setuptools_scm/blob/main/CHANGELOG.rst#632 (From OE-Core rev: db2f3df621ada3f4a87136279fc8015f81a6ad0c) Signed-off-by: Tim Orling <timothy.t.orling@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
877 B
BlitzBasic
27 lines
877 B
BlitzBasic
SUMMARY = "the blessed package to manage your versions by scm tags"
|
|
HOMEPAGE = "https://pypi.org/project/setuptools-scm/"
|
|
DESCRIPTION = "setuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file."
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
|
|
|
|
SRC_URI[sha256sum] = "a49aa8081eeb3514eb9728fa5040f2eaa962d6c6f4ec9c32f6c1fba88f88a0f2"
|
|
|
|
PYPI_PACKAGE = "setuptools_scm"
|
|
inherit pypi setuptools3
|
|
|
|
UPSTREAM_CHECK_REGEX = "setuptools_scm-(?P<pver>.*)\.tar"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
${PYTHON_PN}-packaging \
|
|
${PYTHON_PN}-pyparsing \
|
|
${PYTHON_PN}-setuptools \
|
|
${PYTHON_PN}-tomli \
|
|
"
|
|
|
|
RDEPENDS:${PN}:append:class-target = " \
|
|
${PYTHON_PN}-debugger \
|
|
${PYTHON_PN}-json \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|