[meta-virtualization] [PATCH] meta-openstack: add new python-avahi recipe

Ioan-Adrian Ratiu adrian.ratiu at ni.com
Tue Jan 3 08:47:36 PST 2017


On Tue, 03 Jan 2017, Ioan-Adrian Ratiu <adrian.ratiu at ni.com> wrote:
> 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 <adrian.ratiu at ni.com>
> ---
>  .../recipes-devtools/python/python-avahi_0.6.32.bb | 35 ++++++++++++++++++++++
>  1 file changed, 35 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..e79756d
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-avahi_0.6.32.bb
> @@ -0,0 +1,35 @@
> +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, at 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"
> +q

Sorry for this stupid typo. I've sent v2.

> -- 
> 2.11.0
>
> -- 
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization at yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization


More information about the meta-virtualization mailing list