mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-23 06:37:12 +00:00
172ef6ae60
Changelog: ============ - Add Latvian language localization - Add i18n support for naturalsize() and French translation - Performance improvements: 1.07x - 8.4x - Lazy imports for Python 3.15+ - Drop experimental Python 3.13 free-threaded - Refactor: simplify scientific() and extract _SUPERSCRIPT_MAP constant - Fix naturalsize() rounding rollover at unit boundaries - Carry metric() to the next SI prefix when rounding reaches 1000 - Stop printing two minus signs in fractional for a negative mixed number - Return an empty string from natural_list() for an empty list - Handle tz-aware datetimes in naturalday() and naturaldate() - Fix Arabic translation - Fix Spanish large number translations to use long scale Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
23 lines
514 B
BlitzBasic
23 lines
514 B
BlitzBasic
SUMMARY = "Python humanize utilities"
|
|
HOMEPAGE = "https://github.com/jmoiron/humanize"
|
|
SECTION = "devel/python"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
|
|
|
|
SRC_URI[sha256sum] = "7dc2244a2f84a4bfb1d36c37bac80cd78e35cdc5c119206d87b018e1445f3a3f"
|
|
|
|
inherit pypi python_hatchling
|
|
|
|
DEPENDS += "\
|
|
python3-setuptools-scm-native \
|
|
python3-hatch-vcs-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-datetime \
|
|
python3-setuptools \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|