-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3-dbusmock: add recipe from meta-oe
This is needed for glib ptests. Signed-off-by: Alexander Kanavin <[email protected]> Signed-off-by: Richard Purdie <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -576,6 +576,7 @@ RECIPE_MAINTAINER_pn-python3 = "Oleksandr Kravchuk <open.source@oleksandr-kravch | |
RECIPE_MAINTAINER_pn-python3-async = "Oleksandr Kravchuk <[email protected]>" | ||
RECIPE_MAINTAINER_pn-python3-cython = "Oleksandr Kravchuk <[email protected]>" | ||
RECIPE_MAINTAINER_pn-python3-dbus = "Oleksandr Kravchuk <[email protected]>" | ||
RECIPE_MAINTAINER_pn-python3-dbusmock = "Oleksandr Kravchuk <[email protected]>" | ||
RECIPE_MAINTAINER_pn-python3-docutils = "Oleksandr Kravchuk <[email protected]>" | ||
RECIPE_MAINTAINER_pn-python3-extras = "Oleksandr Kravchuk <[email protected]>" | ||
RECIPE_MAINTAINER_pn-python3-git = "Oleksandr Kravchuk <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
SUMMARY = "With this program/Python library you can easily create mock objects on D-Bus" | ||
|
||
LICENSE = "GPL-3.0" | ||
LIC_FILES_CHKSUM = "file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02" | ||
|
||
SRC_URI[sha256sum] = "497f30eed2fcd5deaa2633b9622e4e99af4bdfba4e972b350ba630bac6fc86c2" | ||
|
||
PYPI_PACKAGE = "python-dbusmock" | ||
|
||
inherit pypi setuptools3 | ||
|
||
RDEPENDS_${PN} += "\ | ||
${PYTHON_PN}-dbus \ | ||
${PYTHON_PN}-pygobject \ | ||
${PYTHON_PN}-xml \ | ||
" |