All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Bluez5 fixes
@ 2013-09-06 14:48 Mihai Prica
  2013-09-06 14:49 ` [PATCH 1/2] bluez5: Install the bluetooth library Mihai Prica
  2013-09-06 14:49 ` [PATCH 2/2] bluez5: Rename tests package to testtools Mihai Prica
  0 siblings, 2 replies; 4+ messages in thread
From: Mihai Prica @ 2013-09-06 14:48 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit c7994f83baa678a4670472e1f037bfc16cb1e3be:

  bitbake: runqueue: Fix scenequeue to pass file descriptors, not a float (2013-09-02 09:16:24 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib mihaip/bluez5
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mihaip/bluez5

Mihai Prica (2):
  bluez5: Install the bluetooth library
  bluez5: Rename tests package to testtools

 meta/recipes-connectivity/bluez5/bluez5.inc |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] bluez5: Install the bluetooth library
  2013-09-06 14:48 [PATCH 0/2] Bluez5 fixes Mihai Prica
@ 2013-09-06 14:49 ` Mihai Prica
  2013-09-06 14:49 ` [PATCH 2/2] bluez5: Rename tests package to testtools Mihai Prica
  1 sibling, 0 replies; 4+ messages in thread
From: Mihai Prica @ 2013-09-06 14:49 UTC (permalink / raw)
  To: openembedded-core

Bluez5 doesn't install libbluetooth by default. This is required
by connman, ofono or other packages.

Signed-off-by: Mihai Prica <mihai.prica@intel.com>
---
 meta/recipes-connectivity/bluez5/bluez5.inc |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc
index 2fae7fb..e2b7169 100644
--- a/meta/recipes-connectivity/bluez5/bluez5.inc
+++ b/meta/recipes-connectivity/bluez5/bluez5.inc
@@ -36,6 +36,7 @@ EXTRA_OECONF = "\
   --enable-test \
   --enable-datafiles \
   ${@base_contains('DISTRO_FEATURES', 'systemd', '--with-systemdunitdir=${systemd_unitdir}/system/', '--disable-systemd', d)} \
+  --enable-library \
 "
 
 do_install_append() {
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] bluez5: Rename tests package to testtools
  2013-09-06 14:48 [PATCH 0/2] Bluez5 fixes Mihai Prica
  2013-09-06 14:49 ` [PATCH 1/2] bluez5: Install the bluetooth library Mihai Prica
@ 2013-09-06 14:49 ` Mihai Prica
  2013-09-06 18:14   ` Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Mihai Prica @ 2013-09-06 14:49 UTC (permalink / raw)
  To: openembedded-core

Bluez5 ships some tools that can be used to test its
functionality.

The installation can be tested using "make check" and
this should be included in a ptest package.

[YB #5028]

Signed-off-by: Mihai Prica <mihai.prica@intel.com>
---
 meta/recipes-connectivity/bluez5/bluez5.inc |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc
index e2b7169..e5cb9e8 100644
--- a/meta/recipes-connectivity/bluez5/bluez5.inc
+++ b/meta/recipes-connectivity/bluez5/bluez5.inc
@@ -55,7 +55,7 @@ do_install_append() {
 }
 
 ALLOW_EMPTY_libasound-module-bluez = "1"
-PACKAGES =+ "libasound-module-bluez ${PN}-test ${PN}-obex"
+PACKAGES =+ "libasound-module-bluez ${PN}-testtools ${PN}-obex"
 
 FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so ${datadir}/alsa"
 FILES_${PN} += "${libdir}/bluetooth/plugins ${libdir}/bluetooth/plugins/*.so ${base_libdir}/udev/ ${nonarch_base_libdir}/udev/ ${systemd_unitdir}/ ${datadir}/dbus-1"
@@ -70,7 +70,7 @@ FILES_${PN}-obex = "${libdir}/bluez5/bluetooth/obexd \
                    "
 SYSTEMD_SERVICE_${PN}-obex = "obex.service"
 
-FILES_${PN}-test = "${libdir}/bluez/test/*"
+FILES_${PN}-testtools = "${libdir}/bluez/test/*"
 
 FILES_${PN}-dbg += "\
   ${libdir}/${BPN}/bluetooth/.debug \
@@ -79,4 +79,6 @@ FILES_${PN}-dbg += "\
   */udev/.debug \
   "
 
+RDEPENDS_${PN}-testtools += "python python-dbus python-pygobject"
+
 SYSTEMD_SERVICE_${PN} = "bluetooth.service"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] bluez5: Rename tests package to testtools
  2013-09-06 14:49 ` [PATCH 2/2] bluez5: Rename tests package to testtools Mihai Prica
@ 2013-09-06 18:14   ` Saul Wold
  0 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2013-09-06 18:14 UTC (permalink / raw)
  To: Mihai Prica; +Cc: openembedded-core

On 09/06/2013 07:49 AM, Mihai Prica wrote:
> Bluez5 ships some tools that can be used to test its
> functionality.
>
> The installation can be tested using "make check" and
> this should be included in a ptest package.
>
> [YB #5028]
>
> Signed-off-by: Mihai Prica <mihai.prica@intel.com>
> ---
>   meta/recipes-connectivity/bluez5/bluez5.inc |    6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc
> index e2b7169..e5cb9e8 100644
> --- a/meta/recipes-connectivity/bluez5/bluez5.inc
> +++ b/meta/recipes-connectivity/bluez5/bluez5.inc
> @@ -55,7 +55,7 @@ do_install_append() {
>   }
>
>   ALLOW_EMPTY_libasound-module-bluez = "1"
> -PACKAGES =+ "libasound-module-bluez ${PN}-test ${PN}-obex"
> +PACKAGES =+ "libasound-module-bluez ${PN}-testtools ${PN}-obex"
>
>   FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so ${datadir}/alsa"
>   FILES_${PN} += "${libdir}/bluetooth/plugins ${libdir}/bluetooth/plugins/*.so ${base_libdir}/udev/ ${nonarch_base_libdir}/udev/ ${systemd_unitdir}/ ${datadir}/dbus-1"
> @@ -70,7 +70,7 @@ FILES_${PN}-obex = "${libdir}/bluez5/bluetooth/obexd \
>                      "
>   SYSTEMD_SERVICE_${PN}-obex = "obex.service"
>
> -FILES_${PN}-test = "${libdir}/bluez/test/*"
> +FILES_${PN}-testtools = "${libdir}/bluez/test/*"
>
Are all the files located in test related to the testtools or are some 
of them related to ptest?

Sau!

>   FILES_${PN}-dbg += "\
>     ${libdir}/${BPN}/bluetooth/.debug \
> @@ -79,4 +79,6 @@ FILES_${PN}-dbg += "\
>     */udev/.debug \
>     "
>
> +RDEPENDS_${PN}-testtools += "python python-dbus python-pygobject"
> +
>   SYSTEMD_SERVICE_${PN} = "bluetooth.service"
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-06 18:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-06 14:48 [PATCH 0/2] Bluez5 fixes Mihai Prica
2013-09-06 14:49 ` [PATCH 1/2] bluez5: Install the bluetooth library Mihai Prica
2013-09-06 14:49 ` [PATCH 2/2] bluez5: Rename tests package to testtools Mihai Prica
2013-09-06 18:14   ` Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.