diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-06-02 12:25:44 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 11:45:24 +0100 |
commit | 6334de28bfd5252343deef326e4edca785254b85 (patch) | |
tree | 158b4f49313196917b716a092f485a4917902a42 /meta/recipes-connectivity | |
parent | f55e040f901371427db0f7c68a7139e55d5953d2 (diff) | |
download | openembedded-core-6334de28bfd5252343deef326e4edca785254b85.tar.gz openembedded-core-6334de28bfd5252343deef326e4edca785254b85.tar.bz2 openembedded-core-6334de28bfd5252343deef326e4edca785254b85.zip |
neard: do not package python test scripts
They require python-dbus and python-gobject
(which are only provided for Python 3), and have not
been ported to Python 3.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/neard/neard_0.15.bb | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/meta/recipes-connectivity/neard/neard_0.15.bb b/meta/recipes-connectivity/neard/neard_0.15.bb index 93bddb34ce..065cbec931 100644 --- a/meta/recipes-connectivity/neard/neard_0.15.bb +++ b/meta/recipes-connectivity/neard/neard_0.15.bb @@ -33,18 +33,9 @@ do_install_append() { > ${D}${sysconfdir}/init.d/neard chmod 0755 ${D}${sysconfdir}/init.d/neard fi - - # Install the tests for neard-tests - install -d ${D}${libdir}/neard - install -m 0755 ${S}/test/* ${D}${libdir}/${BPN}/ - install -m 0755 ${B}/tools/nfctool/nfctool ${D}${libdir}/${BPN}/ } -PACKAGES =+ "${PN}-tests" - -FILES_${PN}-tests = "${libdir}/${BPN}/*-test" - -RDEPENDS_${PN} = "dbus python python-dbus python-pygobject" +RDEPENDS_${PN} = "dbus" # Bluez & Wifi are not mandatory except for handover RRECOMMENDS_${PN} = "\ @@ -52,8 +43,6 @@ RRECOMMENDS_${PN} = "\ ${@bb.utils.contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \ " -RDEPENDS_${PN}-tests = "python python-dbus python-pygobject" - INITSCRIPT_NAME = "neard" INITSCRIPT_PARAMS = "defaults 64" |