mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Changelog: ========== -Document calendar-based versioning scheme -Enforce that the entire marker string is parsed -Requirement parsing no longer automatically validates the URL -Canonicalize names for requirements comparison -Introduce metadata.Metadata -Introduce the validate keyword parameter to utils.validate_name() -Introduce utils.is_normalized_name() -Make utils.parse_sdist_filename() and utils.parse_wheel_filename() raise InvalidSdistFilename and InvalidWheelFilename, respectively, when the version component of the name is invalid (From OE-Core rev: b191effe2c89b405ed732d124ceeffbb4935ad3c) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
549 B
BlitzBasic
19 lines
549 B
BlitzBasic
SUMMARY = "Core utilities for Python packages"
|
|
HOMEPAGE = "https://github.com/pypa/packaging"
|
|
LICENSE = "Apache-2.0 | BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
|
|
|
|
SRC_URI[sha256sum] = "048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"
|
|
|
|
inherit pypi python_flit_core
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
# Bootstrap the native build
|
|
DEPENDS:remove:class-native = "python3-build-native"
|
|
RDEPENDS:${PN} += "python3-profile"
|
|
|
|
do_compile:class-native () {
|
|
python_flit_core_do_manual_build
|
|
}
|