meta-openembedded/meta-python/recipes-connectivity/telepathy/telepathy-python3_0.15.19.bb
Alexander Kanavin fc78d37ff0
meta-openembedded/all: adapt to UNPACKDIR changes
Please see
https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265
for what changes are needed, and sed commands that can be used to make them en masse.

I've verified that bitbake -c patch world works with these, but did not run a world
build; the majority of recipes shouldn't need further fixups, but if there are
some that still fall out, they can be fixed in followups.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-06-25 06:44:52 -07:00

33 lines
1.2 KiB
BlitzBasic

SUMMARY = "Telepathy IM framework - Python package"
HOMEPAGE = "https://telepathy.freedesktop.org/wiki/"
LICENSE = "LGPL-2.1-or-later"
LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1 \
file://src/utils.py;beginline=1;endline=17;md5=9a07d1a9791a7429a14e7b25c6c86822"
DEPENDS = "libxslt-native"
SRC_URI = "http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-${PV}.tar.gz \
file://parallel_make.patch \
file://remove_duplicate_install.patch \
file://telepathy-python_fix_for_automake_1.12.patch"
S = "${UNPACKDIR}/telepathy-python-${PV}"
inherit autotools python3native
SRC_URI[sha256sum] = "244c0e1bf4bbd78ae298ea659fe10bf3a73738db550156767cc2477aedf72376"
FILES:${PN} += "\
${PYTHON_SITEPACKAGES_DIR}/telepathy/*.py \
${PYTHON_SITEPACKAGES_DIR}/telepathy/*/*.py \
"
do_install:append () {
rm -fr ${D}${PYTHON_SITEPACKAGES_DIR}/telepathy/__pycache__
rm -fr ${D}${PYTHON_SITEPACKAGES_DIR}/telepathy/__pycache__
rm -fr ${D}${PYTHON_SITEPACKAGES_DIR}/telepathy/*/__pycache__
rm -fr ${D}${PYTHON_SITEPACKAGES_DIR}/telepathy/*/__pycache__
}
RDEPENDS:${PN} += "python3-dbus"