All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] connman: added recipe libconnman-qt
@ 2013-02-05 18:49 eu
  2013-02-05 19:33 ` Saul Wold
  2013-02-05 19:35 ` Otavio Salvador
  0 siblings, 2 replies; 12+ messages in thread
From: eu @ 2013-02-05 18:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Felipe F. Tonello

From: "Felipe F. Tonello" <ftonello@cercacor.com>

This recipe provides the Qt library and QML plugins for connman.

Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
---
 ...-to-disable-qml-plugin-and-test-program-t.patch |   35 ++++++++++
 .../connman/libconnman-qt_0.4.0.bb                 |   68 ++++++++++++++++++++
 2 files changed, 103 insertions(+)
 create mode 100644 meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
 create mode 100644 meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb

diff --git a/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch b/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
new file mode 100644
index 0000000..74c27e4
--- /dev/null
+++ b/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
@@ -0,0 +1,35 @@
+From 3850acef7d914a22e3fc4130ad43b2cc47338d6f Mon Sep 17 00:00:00 2001
+From: "Felipe F. Tonello" <ftonello@cercacor.com>
+Date: Mon, 7 Jan 2013 17:13:22 -0800
+Subject: [PATCH] added flags to disable qml plugin and test program to
+ compile
+
+This is usefull when there is no need to compile test program and qml plugin.
+
+Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
+---
+ connman-qt.pro |   11 ++++++++++-
+ 1 file changed, 10 insertions(+), 1 deletion(-)
+
+diff --git a/connman-qt.pro b/connman-qt.pro
+index 7d9ec99..425c41f 100644
+--- a/connman-qt.pro
++++ b/connman-qt.pro
+@@ -1,4 +1,13 @@
+ TEMPLATE = subdirs
+-SUBDIRS += libconnman-qt test plugin
++SUBDIRS += libconnman-qt
+ CONFIG += ordered
+ 
++# CONFIG flag to disable test program
++!notest {
++    SUBDIRS += test
++}
++
++# CONFIG flag to disable qml plugin
++!noplugin {
++    SUBDIRS += plugin
++}
+-- 
+1.7.9.5
+
diff --git a/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb b/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
new file mode 100644
index 0000000..60c11c3
--- /dev/null
+++ b/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
@@ -0,0 +1,68 @@
+DESCRIPTION = "Qt Library for ConnMan"
+HOMEPAGE = "https://github.com/nemomobile/libconnman-qt"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://libconnman-qt/clockmodel.h;endline=8;md5=ea9f724050803f15d2d900ce3c5dac88"
+
+SECTION = "qt/lib"
+
+PR = "r0"
+
+inherit qt4x11 pkgconfig
+
+RDEPENDS_${PN} = "connman"
+RDEPENDS_${PN}-plugin = "${PN}"
+
+PROVIDES += "${PN}-plugin"
+
+PACKAGES =+ "${PN}-plugin ${PN}-plugin-dbg"
+RRECOMMENDS_${PN} = "${PN}-plugin"
+
+BRANCH = "master"
+TAG = "${PV}"
+SRCREV = "${AUTOREV}"
+
+SRC_URI = " \
+  git://github.com/nemomobile/${PN}.git;branch=${BRANCH};tag=${TAG} \
+  file://0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch \
+"
+
+S = "${WORKDIR}/git"
+
+QT_IMPORTS_DIR = "${libdir}/qt4/imports"
+# the plugin target needs to be the same as 'target.path' and 'qmldir.path' in ${S}/plugin/plugin.pro
+PLUGINS_TARGET = "${QT_IMPORTS_DIR}/MeeGo/Connman"
+
+FILES_${PN} = " \
+  ${libdir}/libconnman-qt4${SOLIBS} \
+"
+
+FILES_${PN}-dev = " \
+  ${includedir}/connman-qt/* \
+  ${libdir}/libconnman-qt4${SOLIBSDEV} \
+  ${libdir}/libconnman-qt4.prl \
+  ${libdir}/pkgconfig/connman-qt4.pc \
+  ${libdir}/connman-qt4.pc \
+"
+
+FILES_${PN}-plugin = " \
+  ${PLUGINS_TARGET}/qmldir \
+  ${PLUGINS_TARGET}/lib*.so \
+"
+
+FILES_${PN}-plugin-dbg = " \
+  ${PLUGINS_TARGET}/.debug \
+  ${PLUGINS_TARGET}/.debug/* \
+"
+
+EXTRA_QMAKEVARS_PRE = " \
+  CONFIG+=notest \
+"
+
+do_configure_prepend() {
+  # Hack *.pro variables
+  find ${S}/plugin/*.pro -exec sed -i -e 's,$$\[QT_INSTALL_IMPORTS\],${QT_IMPORTS_DIR},g' '{}' ';'
+}
+
+do_install() {
+  cd ${S} && (INSTALL_ROOT=${D} oe_runmake install)
+}
-- 
1.7.9.5




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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 18:49 [PATCH] connman: added recipe libconnman-qt eu
@ 2013-02-05 19:33 ` Saul Wold
  2013-02-05 22:07   ` Felipe Ferreri Tonello
  2013-02-05 19:35 ` Otavio Salvador
  1 sibling, 1 reply; 12+ messages in thread
From: Saul Wold @ 2013-02-05 19:33 UTC (permalink / raw)
  To: eu; +Cc: Felipe F. Tonello, openembedded-core

On 02/05/2013 10:49 AM, eu@felipetonello.com wrote:
> From: "Felipe F. Tonello" <ftonello@cercacor.com>
>
> This recipe provides the Qt library and QML plugins for connman.
>
This is a tough call, but maybe this is better off in the meta-qt space.

Sau!

> Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
> ---
>   ...-to-disable-qml-plugin-and-test-program-t.patch |   35 ++++++++++
>   .../connman/libconnman-qt_0.4.0.bb                 |   68 ++++++++++++++++++++
>   2 files changed, 103 insertions(+)
>   create mode 100644 meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
>   create mode 100644 meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
>
> diff --git a/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch b/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
> new file mode 100644
> index 0000000..74c27e4
> --- /dev/null
> +++ b/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
> @@ -0,0 +1,35 @@
> +From 3850acef7d914a22e3fc4130ad43b2cc47338d6f Mon Sep 17 00:00:00 2001
> +From: "Felipe F. Tonello" <ftonello@cercacor.com>
> +Date: Mon, 7 Jan 2013 17:13:22 -0800
> +Subject: [PATCH] added flags to disable qml plugin and test program to
> + compile
> +
> +This is usefull when there is no need to compile test program and qml plugin.
> +
> +Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
> +---
> + connman-qt.pro |   11 ++++++++++-
> + 1 file changed, 10 insertions(+), 1 deletion(-)
> +
> +diff --git a/connman-qt.pro b/connman-qt.pro
> +index 7d9ec99..425c41f 100644
> +--- a/connman-qt.pro
> ++++ b/connman-qt.pro
> +@@ -1,4 +1,13 @@
> + TEMPLATE = subdirs
> +-SUBDIRS += libconnman-qt test plugin
> ++SUBDIRS += libconnman-qt
> + CONFIG += ordered
> +
> ++# CONFIG flag to disable test program
> ++!notest {
> ++    SUBDIRS += test
> ++}
> ++
> ++# CONFIG flag to disable qml plugin
> ++!noplugin {
> ++    SUBDIRS += plugin
> ++}
> +--
> +1.7.9.5
> +
> diff --git a/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb b/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
> new file mode 100644
> index 0000000..60c11c3
> --- /dev/null
> +++ b/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
> @@ -0,0 +1,68 @@
> +DESCRIPTION = "Qt Library for ConnMan"
> +HOMEPAGE = "https://github.com/nemomobile/libconnman-qt"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://libconnman-qt/clockmodel.h;endline=8;md5=ea9f724050803f15d2d900ce3c5dac88"
> +
> +SECTION = "qt/lib"
> +
> +PR = "r0"
> +
> +inherit qt4x11 pkgconfig
> +
> +RDEPENDS_${PN} = "connman"
> +RDEPENDS_${PN}-plugin = "${PN}"
> +
> +PROVIDES += "${PN}-plugin"
> +
> +PACKAGES =+ "${PN}-plugin ${PN}-plugin-dbg"
> +RRECOMMENDS_${PN} = "${PN}-plugin"
> +
> +BRANCH = "master"
> +TAG = "${PV}"
> +SRCREV = "${AUTOREV}"
> +
> +SRC_URI = " \
> +  git://github.com/nemomobile/${PN}.git;branch=${BRANCH};tag=${TAG} \
> +  file://0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch \
> +"
> +
> +S = "${WORKDIR}/git"
> +
> +QT_IMPORTS_DIR = "${libdir}/qt4/imports"
> +# the plugin target needs to be the same as 'target.path' and 'qmldir.path' in ${S}/plugin/plugin.pro
> +PLUGINS_TARGET = "${QT_IMPORTS_DIR}/MeeGo/Connman"
> +
> +FILES_${PN} = " \
> +  ${libdir}/libconnman-qt4${SOLIBS} \
> +"
> +
> +FILES_${PN}-dev = " \
> +  ${includedir}/connman-qt/* \
> +  ${libdir}/libconnman-qt4${SOLIBSDEV} \
> +  ${libdir}/libconnman-qt4.prl \
> +  ${libdir}/pkgconfig/connman-qt4.pc \
> +  ${libdir}/connman-qt4.pc \
> +"
> +
> +FILES_${PN}-plugin = " \
> +  ${PLUGINS_TARGET}/qmldir \
> +  ${PLUGINS_TARGET}/lib*.so \
> +"
> +
> +FILES_${PN}-plugin-dbg = " \
> +  ${PLUGINS_TARGET}/.debug \
> +  ${PLUGINS_TARGET}/.debug/* \
> +"
> +
> +EXTRA_QMAKEVARS_PRE = " \
> +  CONFIG+=notest \
> +"
> +
> +do_configure_prepend() {
> +  # Hack *.pro variables
> +  find ${S}/plugin/*.pro -exec sed -i -e 's,$$\[QT_INSTALL_IMPORTS\],${QT_IMPORTS_DIR},g' '{}' ';'
> +}
> +
> +do_install() {
> +  cd ${S} && (INSTALL_ROOT=${D} oe_runmake install)
> +}
>



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 18:49 [PATCH] connman: added recipe libconnman-qt eu
  2013-02-05 19:33 ` Saul Wold
@ 2013-02-05 19:35 ` Otavio Salvador
  2013-02-05 22:05   ` Felipe Ferreri Tonello
  1 sibling, 1 reply; 12+ messages in thread
From: Otavio Salvador @ 2013-02-05 19:35 UTC (permalink / raw)
  To: eu; +Cc: Felipe F. Tonello, Patches and discussions about the oe-core layer

On Tue, Feb 5, 2013 at 4:49 PM,  <eu@felipetonello.com> wrote:
> From: "Felipe F. Tonello" <ftonello@cercacor.com>
>
> This recipe provides the Qt library and QML plugins for connman.
>
> Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>

For now I'd say this recipe should be in meta-oe; another thing,
please take a look in qconnman
(https://bitbucket.org/devonit/qconnman) as it has been used by us and
it had got a lot of fixes lately.

Regards,

--
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 19:35 ` Otavio Salvador
@ 2013-02-05 22:05   ` Felipe Ferreri Tonello
  2013-02-05 23:37     ` Otavio Salvador
  0 siblings, 1 reply; 12+ messages in thread
From: Felipe Ferreri Tonello @ 2013-02-05 22:05 UTC (permalink / raw)
  To: Otavio Salvador
  Cc: Felipe F. Tonello, Patches and discussions about the oe-core layer

Hi Otavio,

On 02/05/2013 11:35 AM, Otavio Salvador wrote:
> On Tue, Feb 5, 2013 at 4:49 PM,  <eu@felipetonello.com> wrote:
>> From: "Felipe F. Tonello" <ftonello@cercacor.com>
>>
>> This recipe provides the Qt library and QML plugins for connman.
>>
>> Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
>
> For now I'd say this recipe should be in meta-oe;

I'm just wondering how one recipe, or patch, is considered to be in 
meta-oe or oe-core?

> another thing,
> please take a look in qconnman
> (https://bitbucket.org/devonit/qconnman) as it has been used by us and
> it had got a lot of fixes lately.

I haven't use qconnman. Well, since I'm contributing to the project, I 
can tell that libconnman-qt is pretty decent. It suppose to have close 
relationship with libofono-qt, both part of nemomobile project. Also it 
has a qml plugin support, which we use here.

Regards,

Felipe Tonello



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 19:33 ` Saul Wold
@ 2013-02-05 22:07   ` Felipe Ferreri Tonello
  2013-02-05 22:58     ` Ross Burton
  0 siblings, 1 reply; 12+ messages in thread
From: Felipe Ferreri Tonello @ 2013-02-05 22:07 UTC (permalink / raw)
  To: Saul Wold; +Cc: Felipe F. Tonello, openembedded-core

Hi Saul,

On 02/05/2013 11:33 AM, Saul Wold wrote:
> On 02/05/2013 10:49 AM, eu@felipetonello.com wrote:
>> From: "Felipe F. Tonello" <ftonello@cercacor.com>
>>
>> This recipe provides the Qt library and QML plugins for connman.
>>
> This is a tough call, but maybe this is better off in the meta-qt space.

I chose this path because there is also a front-end library for connman 
for gnome in the same directory.

Regards,
Felipe Tonello


>> Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
>> ---
>>   ...-to-disable-qml-plugin-and-test-program-t.patch |   35 ++++++++++
>>   .../connman/libconnman-qt_0.4.0.bb                 |   68
>> ++++++++++++++++++++
>>   2 files changed, 103 insertions(+)
>>   create mode 100644
>> meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
>>
>>   create mode 100644
>> meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
>>
>> diff --git
>> a/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
>> b/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
>>
>> new file mode 100644
>> index 0000000..74c27e4
>> --- /dev/null
>> +++
>> b/meta/recipes-connectivity/connman/libconnman-qt/0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch
>>
>> @@ -0,0 +1,35 @@
>> +From 3850acef7d914a22e3fc4130ad43b2cc47338d6f Mon Sep 17 00:00:00 2001
>> +From: "Felipe F. Tonello" <ftonello@cercacor.com>
>> +Date: Mon, 7 Jan 2013 17:13:22 -0800
>> +Subject: [PATCH] added flags to disable qml plugin and test program to
>> + compile
>> +
>> +This is usefull when there is no need to compile test program and qml
>> plugin.
>> +
>> +Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
>> +---
>> + connman-qt.pro |   11 ++++++++++-
>> + 1 file changed, 10 insertions(+), 1 deletion(-)
>> +
>> +diff --git a/connman-qt.pro b/connman-qt.pro
>> +index 7d9ec99..425c41f 100644
>> +--- a/connman-qt.pro
>> ++++ b/connman-qt.pro
>> +@@ -1,4 +1,13 @@
>> + TEMPLATE = subdirs
>> +-SUBDIRS += libconnman-qt test plugin
>> ++SUBDIRS += libconnman-qt
>> + CONFIG += ordered
>> +
>> ++# CONFIG flag to disable test program
>> ++!notest {
>> ++    SUBDIRS += test
>> ++}
>> ++
>> ++# CONFIG flag to disable qml plugin
>> ++!noplugin {
>> ++    SUBDIRS += plugin
>> ++}
>> +--
>> +1.7.9.5
>> +
>> diff --git a/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
>> b/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
>> new file mode 100644
>> index 0000000..60c11c3
>> --- /dev/null
>> +++ b/meta/recipes-connectivity/connman/libconnman-qt_0.4.0.bb
>> @@ -0,0 +1,68 @@
>> +DESCRIPTION = "Qt Library for ConnMan"
>> +HOMEPAGE = "https://github.com/nemomobile/libconnman-qt"
>> +LICENSE = "Apache-2.0"
>> +LIC_FILES_CHKSUM =
>> "file://libconnman-qt/clockmodel.h;endline=8;md5=ea9f724050803f15d2d900ce3c5dac88"
>>
>> +
>> +SECTION = "qt/lib"
>> +
>> +PR = "r0"
>> +
>> +inherit qt4x11 pkgconfig
>> +
>> +RDEPENDS_${PN} = "connman"
>> +RDEPENDS_${PN}-plugin = "${PN}"
>> +
>> +PROVIDES += "${PN}-plugin"
>> +
>> +PACKAGES =+ "${PN}-plugin ${PN}-plugin-dbg"
>> +RRECOMMENDS_${PN} = "${PN}-plugin"
>> +
>> +BRANCH = "master"
>> +TAG = "${PV}"
>> +SRCREV = "${AUTOREV}"
>> +
>> +SRC_URI = " \
>> +  git://github.com/nemomobile/${PN}.git;branch=${BRANCH};tag=${TAG} \
>> +
>> file://0001-added-flags-to-disable-qml-plugin-and-test-program-t.patch \
>> +"
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +QT_IMPORTS_DIR = "${libdir}/qt4/imports"
>> +# the plugin target needs to be the same as 'target.path' and
>> 'qmldir.path' in ${S}/plugin/plugin.pro
>> +PLUGINS_TARGET = "${QT_IMPORTS_DIR}/MeeGo/Connman"
>> +
>> +FILES_${PN} = " \
>> +  ${libdir}/libconnman-qt4${SOLIBS} \
>> +"
>> +
>> +FILES_${PN}-dev = " \
>> +  ${includedir}/connman-qt/* \
>> +  ${libdir}/libconnman-qt4${SOLIBSDEV} \
>> +  ${libdir}/libconnman-qt4.prl \
>> +  ${libdir}/pkgconfig/connman-qt4.pc \
>> +  ${libdir}/connman-qt4.pc \
>> +"
>> +
>> +FILES_${PN}-plugin = " \
>> +  ${PLUGINS_TARGET}/qmldir \
>> +  ${PLUGINS_TARGET}/lib*.so \
>> +"
>> +
>> +FILES_${PN}-plugin-dbg = " \
>> +  ${PLUGINS_TARGET}/.debug \
>> +  ${PLUGINS_TARGET}/.debug/* \
>> +"
>> +
>> +EXTRA_QMAKEVARS_PRE = " \
>> +  CONFIG+=notest \
>> +"
>> +
>> +do_configure_prepend() {
>> +  # Hack *.pro variables
>> +  find ${S}/plugin/*.pro -exec sed -i -e
>> 's,$$\[QT_INSTALL_IMPORTS\],${QT_IMPORTS_DIR},g' '{}' ';'
>> +}
>> +
>> +do_install() {
>> +  cd ${S} && (INSTALL_ROOT=${D} oe_runmake install)
>> +}
>>




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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 22:07   ` Felipe Ferreri Tonello
@ 2013-02-05 22:58     ` Ross Burton
  2013-02-06 22:23       ` Felipe Ferreri Tonello
  0 siblings, 1 reply; 12+ messages in thread
From: Ross Burton @ 2013-02-05 22:58 UTC (permalink / raw)
  To: Felipe Ferreri Tonello; +Cc: Felipe F. Tonello, openembedded-core

On Tuesday, 5 February 2013 at 22:07, Felipe Ferreri Tonello wrote:
> I chose this path because there is also a front-end library for connman
> for gnome in the same directory.

It's not a library, it's a UI.  To be honest, I'd happily see it move to recipes-gnome and connman-qt be in recipes-qt.

Ross 





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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 22:05   ` Felipe Ferreri Tonello
@ 2013-02-05 23:37     ` Otavio Salvador
  0 siblings, 0 replies; 12+ messages in thread
From: Otavio Salvador @ 2013-02-05 23:37 UTC (permalink / raw)
  To: Felipe Ferreri Tonello
  Cc: Felipe F. Tonello, Patches and discussions about the oe-core layer

On Tue, Feb 5, 2013 at 8:05 PM, Felipe Ferreri Tonello
<eu@felipetonello.com> wrote:
> Hi Otavio,
>
>
> On 02/05/2013 11:35 AM, Otavio Salvador wrote:
>>
>> On Tue, Feb 5, 2013 at 4:49 PM,  <eu@felipetonello.com> wrote:
>>>
>>> From: "Felipe F. Tonello" <ftonello@cercacor.com>
>>>
>>> This recipe provides the Qt library and QML plugins for connman.
>>>
>>> Signed-off-by: Felipe F. Tonello <ftonello@cercacor.com>
>>
>>
>> For now I'd say this recipe should be in meta-oe;
>
>
> I'm just wondering how one recipe, or patch, is considered to be in meta-oe
> or oe-core?

Well, usually things should go to meta-oe except if it is going to be
commonly used or is used to test something in oe-core. For now, as
default sato does not use Qt connman I'd say it might go to meta-oe.

>> another thing,
>> please take a look in qconnman
>> (https://bitbucket.org/devonit/qconnman) as it has been used by us and
>> it had got a lot of fixes lately.
>
>
> I haven't use qconnman. Well, since I'm contributing to the project, I can
> tell that libconnman-qt is pretty decent. It suppose to have close
> relationship with libofono-qt, both part of nemomobile project. Also it has
> a qml plugin support, which we use here.

Nice; you might be interested in take a look in qconnman-ui -
https://github.com/OSSystems/qconnman-ui - which provides a
configuration interface above libqconnman; it shouldn't be hard to
port it to another connman library.

I'll take a look in connman-qt :-)

--
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-05 22:58     ` Ross Burton
@ 2013-02-06 22:23       ` Felipe Ferreri Tonello
  2013-02-08 11:05         ` Otavio Salvador
  0 siblings, 1 reply; 12+ messages in thread
From: Felipe Ferreri Tonello @ 2013-02-06 22:23 UTC (permalink / raw)
  To: Ross Burton; +Cc: Felipe F. Tonello, openembedded-core

On 02/05/2013 02:58 PM, Ross Burton wrote:
> On Tuesday, 5 February 2013 at 22:07, Felipe Ferreri Tonello wrote:
>> I chose this path because there is also a front-end library for connman
>> for gnome in the same directory.
>
> It's not a library, it's a UI.  To be honest, I'd happily see it move to recipes-gnome and connman-qt be in recipes-qt.
>

So what was decided? Should I re-send the patch with what path?

Regards,
Felipe Tonello



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-06 22:23       ` Felipe Ferreri Tonello
@ 2013-02-08 11:05         ` Otavio Salvador
  2013-02-08 11:10           ` Burton, Ross
  0 siblings, 1 reply; 12+ messages in thread
From: Otavio Salvador @ 2013-02-08 11:05 UTC (permalink / raw)
  To: Felipe Ferreri Tonello
  Cc: Felipe F. Tonello, Patches and discussions about the oe-core layer

On Wed, Feb 6, 2013 at 8:23 PM, Felipe Ferreri Tonello
<eu@felipetonello.com> wrote:
> On 02/05/2013 02:58 PM, Ross Burton wrote:
>>
>> On Tuesday, 5 February 2013 at 22:07, Felipe Ferreri Tonello wrote:
>>>
>>> I chose this path because there is also a front-end library for connman
>>> for gnome in the same directory.
>>
>>
>> It's not a library, it's a UI.  To be honest, I'd happily see it move to
>> recipes-gnome and connman-qt be in recipes-qt.
>>
>
> So what was decided? Should I re-send the patch with what path?

Until something inside OE-Core uses it I would prefer it in meta-oe. Ross?

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-08 11:05         ` Otavio Salvador
@ 2013-02-08 11:10           ` Burton, Ross
  2013-02-08 19:49             ` Felipe Ferreri Tonello
  0 siblings, 1 reply; 12+ messages in thread
From: Burton, Ross @ 2013-02-08 11:10 UTC (permalink / raw)
  To: Otavio Salvador
  Cc: Felipe F. Tonello, Patches and discussions about the oe-core layer

On 8 February 2013 11:05, Otavio Salvador <otavio@ossystems.com.br> wrote:
>> So what was decided? Should I re-send the patch with what path?
>
> Until something inside OE-Core uses it I would prefer it in meta-oe. Ross?

If it were connman enabling in Qt directly I'd say oe-core, but as
it's a separate library meta-oe is the right place IMHO.

Ross



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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-08 11:10           ` Burton, Ross
@ 2013-02-08 19:49             ` Felipe Ferreri Tonello
  2013-02-08 19:54               ` Otavio Salvador
  0 siblings, 1 reply; 12+ messages in thread
From: Felipe Ferreri Tonello @ 2013-02-08 19:49 UTC (permalink / raw)
  To: Burton, Ross
  Cc: Otavio Salvador, Patches and discussions about the oe-core layer

On 02/08/2013 03:10 AM, Burton, Ross wrote:
> On 8 February 2013 11:05, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>> So what was decided? Should I re-send the patch with what path?
>>
>> Until something inside OE-Core uses it I would prefer it in meta-oe. Ross?
>
> If it were connman enabling in Qt directly I'd say oe-core, but as
> it's a separate library meta-oe is the right place IMHO.

But where exactly? meta-oe/recipes-qt/libconnman-qt?

Felipe




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

* Re: [PATCH] connman: added recipe libconnman-qt
  2013-02-08 19:49             ` Felipe Ferreri Tonello
@ 2013-02-08 19:54               ` Otavio Salvador
  0 siblings, 0 replies; 12+ messages in thread
From: Otavio Salvador @ 2013-02-08 19:54 UTC (permalink / raw)
  To: Felipe Ferreri Tonello; +Cc: Patches and discussions about the oe-core layer

On Fri, Feb 8, 2013 at 5:49 PM, Felipe Ferreri Tonello
<eu@felipetonello.com> wrote:
> On 02/08/2013 03:10 AM, Burton, Ross wrote:
>>
>> On 8 February 2013 11:05, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>>>
>>>> So what was decided? Should I re-send the patch with what path?
>>>
>>>
>>> Until something inside OE-Core uses it I would prefer it in meta-oe.
>>> Ross?
>>
>>
>> If it were connman enabling in Qt directly I'd say oe-core, but as
>> it's a separate library meta-oe is the right place IMHO.
>
>
> But where exactly? meta-oe/recipes-qt/libconnman-qt?

Yes.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

end of thread, other threads:[~2013-02-08 20:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-05 18:49 [PATCH] connman: added recipe libconnman-qt eu
2013-02-05 19:33 ` Saul Wold
2013-02-05 22:07   ` Felipe Ferreri Tonello
2013-02-05 22:58     ` Ross Burton
2013-02-06 22:23       ` Felipe Ferreri Tonello
2013-02-08 11:05         ` Otavio Salvador
2013-02-08 11:10           ` Burton, Ross
2013-02-08 19:49             ` Felipe Ferreri Tonello
2013-02-08 19:54               ` Otavio Salvador
2013-02-05 19:35 ` Otavio Salvador
2013-02-05 22:05   ` Felipe Ferreri Tonello
2013-02-05 23:37     ` Otavio Salvador

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.