diff options
author | Derek Straka <derek@asterius.io> | 2016-07-15 15:05:50 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-07-22 21:45:39 +0200 |
commit | ac2336f83f7044e17cfc9f8230a3f8a81fca8c6d (patch) | |
tree | f56d59254c3eff96e1d64187ffa741e0eeb86cd9 /meta-python | |
parent | 3cac200a6557d2d28a70313d7a6c41b61ed94931 (diff) | |
download | meta-openembedded-ac2336f83f7044e17cfc9f8230a3f8a81fca8c6d.tar.gz |
python-dbusmock: update to version 0.16.6 and update required RDEPENDS
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python-dbusmock_0.16.6.bb (renamed from meta-python/recipes-devtools/python/python-dbusmock_0.10.1.bb) | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/meta-python/recipes-devtools/python/python-dbusmock_0.10.1.bb b/meta-python/recipes-devtools/python/python-dbusmock_0.16.6.bb index 2520bfc95..4b3d2011e 100644 --- a/meta-python/recipes-devtools/python/python-dbusmock_0.10.1.bb +++ b/meta-python/recipes-devtools/python/python-dbusmock_0.16.6.bb | |||
@@ -2,20 +2,25 @@ | |||
2 | 2 | ||
3 | SUMMARY = "With this program/Python library you can easily create mock objects on D-Bus" | 3 | SUMMARY = "With this program/Python library you can easily create mock objects on D-Bus" |
4 | AUTHOR = "Martin Pitt <martin.pitt@ubuntu.com>" | 4 | AUTHOR = "Martin Pitt <martin.pitt@ubuntu.com>" |
5 | SECTION = "devel/python" | ||
6 | 5 | ||
7 | LICENSE = "GPL-3.0" | 6 | LICENSE = "GPL-3.0" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02" |
9 | 8 | ||
10 | DEPENDS += "python-pygobject python-dbus" | 9 | SRC_URI[md5sum] = "6af369964653098f2cd5e7c4e060a533" |
11 | 10 | SRC_URI[sha256sum] = "87c551030369005a6c818d9f27e931090bff837e70af060b65281e9ea77108cf" | |
12 | SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" | ||
13 | SRC_URI[md5sum] = "7370d325c4a75494dd71885ca65b79e8" | ||
14 | SRC_URI[sha256sum] = "03aadc93bdc26ea18d4d78fcff7b6cb34f4e18623bc5cc41cf9539d663cee11e" | ||
15 | 11 | ||
16 | SRC_URI += " \ | 12 | SRC_URI += " \ |
17 | file://0001-Add-functionality-to-add-own-objects-to-internal-obj.patch \ | 13 | file://0001-Add-functionality-to-add-own-objects-to-internal-obj.patch \ |
18 | file://0002-Add-possibility-to-import-templates-from-packages.patch \ | 14 | file://0002-Add-possibility-to-import-templates-from-packages.patch \ |
19 | " | 15 | " |
20 | 16 | ||
21 | inherit setuptools | 17 | PYPI_PACKAGE = "python-dbusmock" |
18 | |||
19 | inherit pypi setuptools | ||
20 | |||
21 | RDEPENDS_${PN} += "\ | ||
22 | ${PYTHON_PN}-dbus \ | ||
23 | ${PYTHON_PN}-importlib \ | ||
24 | ${PYTHON_PN}-pygobject \ | ||
25 | ${PYTHON_PN}-xml \ | ||
26 | " | ||