mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to version 0.11.1: - Improved interface generator handling of multiple uppercase letters sequences. - Improved python formatting generated by interface code generator. - Added option --block to generate blocking interface code. - Fixed docstrings still being present even if python was configured with --without-doc-strings. - Fixed interface generator crashing when a rare write-only property is encountered. - Fixed async interfaces iterating over all members during initialization. - Fixed TypeError: Dbus type '\x00' is unknown being raised when trying to read from a message more than one time. - Fixed missing class body when generating code for interface without members. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
544 B
BlitzBasic
18 lines
544 B
BlitzBasic
SUMMARY = "Modern Python library for the systemd D-Bus"
|
|
HOMEPAGE = "https://python-sdbus.readthedocs.io/en/latest/"
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e77986dc8e2ee22d44a7c863e96852ae"
|
|
|
|
SRC_URI[sha256sum] = "adb97718ce996bb308520682c50b1a13e606d65a6edb1c1967a15d2e570cb3b7"
|
|
|
|
REQUIRED_DISTRO_FEATURES = "systemd"
|
|
DEPENDS += "systemd"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
${PYTHON_PN}-asyncio \
|
|
${PYTHON_PN}-numbers \
|
|
${PYTHON_PN}-core \
|
|
"
|
|
|
|
inherit pypi setuptools3 features_check pkgconfig
|