From: Bartosz Golaszewski <[email protected]> pydbus is a popular (and probably the most 'pythonic') implementation of DBus for python but unfortunately it doesn't implement the ObjectManager interface. This project is an extension providing this functionality.
The reason for having this as a separate project is simple: pydbus seems to no longer be actively maintained so it's hard to make it part of the original codebase. Signed-off-by: Bartosz Golaszewski <[email protected]> --- v1 -> v2: - add pydbus-manager to packagegroup-meta-python3 .../packagegroups/packagegroup-meta-python.bb | 1 + .../python/python3-pydbus-manager_git.bb | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-pydbus-manager_git.bb diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index 8b267c9cb..e31b0b8b4 100644 --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb @@ -288,6 +288,7 @@ RDEPENDS_packagegroup-meta-python3 = "\ python3-pycrypto \ python3-pycurl \ python3-pydbus \ + python3-pydbus-manager \ python3-pydicti \ python3-pyephem \ python3-pyexpect \ diff --git a/meta-python/recipes-devtools/python/python3-pydbus-manager_git.bb b/meta-python/recipes-devtools/python/python3-pydbus-manager_git.bb new file mode 100644 index 000000000..ae9e42160 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pydbus-manager_git.bb @@ -0,0 +1,13 @@ +SUMMARY = "DBus.ObjectManager implementation for pydbus" +AUTHOR = "Sébastien Corne" + +LICENSE = "WTFPL" +LIC_FILES_CHKSUM = "file://LICENSE;md5=0fd5bb1dae91ba145745db55870be6a7" + +inherit setuptools3 + +SRC_URI = "git://github.com/seebz/pydbus-manager.git" +SRCREV = "6b576b969cbda50521dca62a7df929167207f9fc" +PV = "git${SRCPV}" + +S = "${WORKDIR}/git" -- 2.29.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#89490): https://lists.openembedded.org/g/openembedded-devel/message/89490 Mute This Topic: https://lists.openembedded.org/mt/80553956/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
