mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

python 2 is gone and we don't need the abstraction now, drop the remaining usage of this variable. The definition in python3-dir.bbclass is left for now for other layers. (From OE-Core rev: b566b1e32c7993d1ab7795562f648e52ce186a70) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
699 B
BlitzBasic
23 lines
699 B
BlitzBasic
SUMMARY = "With this program/Python library you can easily create mock objects on D-Bus"
|
|
HOMEPAGE = "https://pypi.org/project/python-dbusmock/"
|
|
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02"
|
|
|
|
SRC_URI[sha256sum] = "1d7b3794af7b280942f7f6cda4d8bb5d17d8c7216000825cf8b43b6af8792d7d"
|
|
|
|
PYPI_PACKAGE = "python-dbusmock"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
DEPENDS += "python3-setuptools-scm-native"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-dbus \
|
|
python3-unittest \
|
|
python3-xml \
|
|
"
|
|
|
|
RRECOMMENDS:${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'gobject-introspection-data', '${MLPREFIX}python3-pygobject', '', d)}"
|
|
|
|
BBCLASSEXTEND = "native"
|