mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Upstream notably removed the setup.cfg/setup.py files in this period and updated pyproject.toml. It still uses setuptools as the build backend, and should be compatible with recent versions. Changelog (https://github.com/martinpitt/python-dbusmock/releases): 0.37.0: - templates: Drop iio-sensors-proxy (See #241) - DBusTestCase: Drop obsolete {start,stop}_dbus() methods - Fix dbus-daemon startup race condition (Debian#1109272) 0.36.0: - mockobject: Fix _wrap_in_dbus_variant for Struct and Dict types (thanks Sebastian Wick) - Drop setup.{cfg,py} and RHEL 9 support, move to pybuild (rhbz#2377609) - Drop iio-sensor-proxy tests, the template is broken (see #241) 0.35.0: - modemmanager: Add operator code (thanks Guido Günther) - modemmanager: Allow to set CellBroadcast channel list (thanks Guido Günther) 0.34.3: - tests: Relax libnotify expected format for libnotify 0.8.4 0.34.2: - spec: Adjust %autosetup to PEP-625 tarball top-level directory 0.34.1: - spec: Adjust Source URL to PEP-625 tarball name 0.34.0: - modemmanager: Add cell broadcast messages (thanks Guido Günther) - Move release builds to pybuild for PEP-625 compatibility (From OE-Core rev: 523001d3131eb5839162d44d296b65cbf0f6fd56) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> 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] = "38754c5ad2ad8f3936ff67d4b058bca416588a72bc094e91ded9f8f401b06310"
|
|
|
|
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"
|