OE-core commit 36e9ed89950 ("avahi-ui: remove support for building a python
module") removed the python avahi bindings because nothing in OE-core used
them. These bindings are very useful however when configuring targets from
salt using the zeroconf protocol.An added benefit of having a python-avahi recipe separate from avahi-ui is that we don't need X11 in DISTRO_FEATURES anymore to use python-avahi, it's just two simple python files, there was no need for all that complexity in avahi-ui in the first place to get the python avahi bindings. Signed-off-by: Ioan-Adrian Ratiu <[email protected]> --- .../recipes-devtools/python/python-avahi_0.6.32.bb | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 meta-openstack/recipes-devtools/python/python-avahi_0.6.32.bb diff --git a/meta-openstack/recipes-devtools/python/python-avahi_0.6.32.bb b/meta-openstack/recipes-devtools/python/python-avahi_0.6.32.bb new file mode 100644 index 0000000..0a1b1a7 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-avahi_0.6.32.bb @@ -0,0 +1,34 @@ +SUMMARY = "Python bindings for the avahi zeroconf client" +HOMEPAGE = "https://github.com/lathiat/avahi" +SECTION = "devel/python" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1" + +SRC_URI = "https://github.com/lathiat/avahi/releases/download/v${PV}/avahi-${PV}.tar.gz" + +SRC_URI[md5sum] = "22b5e705d3eabb31d26f2e1e7b074013" +SRC_URI[sha256sum] = "d54991185d514a0aba54ebeb408d7575b60f5818a772e28fa0e18b98bc1db454" + +S = "${WORKDIR}/avahi-${PV}" + +inherit python-dir pythonnative + +# we only need the python bindings +do_install () { + install -d ${D}${PYTHON_SITEPACKAGES_DIR}/avahi + + sed -i'' -e 's,@PYTHON\@,/usr/bin/python,g' \ + ${S}/avahi-python/avahi/__init__.py \ + ${S}/avahi-python/avahi-bookmarks.in + + install -m 0775 ${S}/avahi-python/avahi/__init__.py \ + ${D}${PYTHON_SITEPACKAGES_DIR}/avahi/__init__.py + + install -m 0775 ${S}/avahi-python/avahi-bookmarks.in \ + ${D}${PYTHON_SITEPACKAGES_DIR}/avahi/avahi-bookmarks +} + +RDEPENDS_${PN} += "python-core python-dbus" + +FILES_${PN} = "${PYTHON_SITEPACKAGES_DIR}/avahi" -- 2.11.0 -- _______________________________________________ meta-virtualization mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-virtualization
