All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-qt5][PATCH v4 1/2] qtimageformats: allow empty qtimageformats package
@ 2014-03-02  4:22 Jonathan Liu
  2014-03-02  4:22 ` [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development Jonathan Liu
  0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Liu @ 2014-03-02  4:22 UTC (permalink / raw)
  To: openembedded-devel

This fixes installing qtimageformats-dev with opkg as it depends on the
qtimageformats package which wasn't created.

The qtimageformats package was not created as it is empty and BitBake
avoids producing empty packages by default. The installed files consist
of source files split into qtimageformats-dbg, CMake files split into
qtimageformats-dev, plugins split into qtimageformats-plugins and
debug build of plugins split into qtimageformats-plugins-dbg.

Signed-off-by: Jonathan Liu <net147@gmail.com>
---
 recipes-qt/qt5/qtimageformats.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/recipes-qt/qt5/qtimageformats.inc b/recipes-qt/qt5/qtimageformats.inc
index 1b4bb4f..f90e58a 100644
--- a/recipes-qt/qt5/qtimageformats.inc
+++ b/recipes-qt/qt5/qtimageformats.inc
@@ -1,3 +1,4 @@
 require qt5.inc
 
 DEPENDS += "qtbase tiff"
+ALLOW_EMPTY_${PN} = "1"
-- 
1.9.0



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

* [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-02  4:22 [meta-qt5][PATCH v4 1/2] qtimageformats: allow empty qtimageformats package Jonathan Liu
@ 2014-03-02  4:22 ` Jonathan Liu
  2014-03-03 19:53   ` Otavio Salvador
  2014-03-04 20:00   ` Denys Dmytriyenko
  0 siblings, 2 replies; 11+ messages in thread
From: Jonathan Liu @ 2014-03-02  4:22 UTC (permalink / raw)
  To: openembedded-devel

This adds the necessary target packages for development with all of the
Qt 5 modules.

Signed-off-by: Jonathan Liu <net147@gmail.com>
---
 .../packagegroup-qt5-toolchain-target.bb           | 80 ++++++++++++++++++----
 1 file changed, 65 insertions(+), 15 deletions(-)

diff --git a/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb b/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb
index 997df18..25983dc 100644
--- a/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb
+++ b/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb
@@ -9,32 +9,82 @@ PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
 
 # Requires meta-ruby to work
 USE_RUBY = " \
-    qtwebkit-mkspecs \
     qtwebkit-dev \
+    qtwebkit-mkspecs \
+    qtwebkit-qmlplugins \
+"
+
+# Requires Wayland to work
+USE_WAYLAND = " \
+    qtwayland-dev \
+    qtwayland-mkspecs \
+    qtwayland-plugins \
+    qtwayland-tools \
+"
+
+# Requires X11 to work
+USE_X11 = " \
+    qtx11extras-dev \
+    qtx11extras-mkspecs \
 "
 
 RDEPENDS_${PN} += " \
     packagegroup-core-standalone-sdk-target \
     libsqlite3-dev \
-    qtbase-mkspecs \
-    qtscript-mkspecs \
-    qtxmlpatterns-mkspecs \
-    qtdeclarative-mkspecs \
-    qtsensors-mkspecs \
+    qt3d-dev \
     qt3d-mkspecs \
-    qtlocation-mkspecs \
-    qtsvg-mkspecs \
+    qt3d-qmlplugins \
     qtbase-dev \
+    qtbase-fonts \
+    qtbase-mkspecs \
+    qtbase-plugins \
+    qtbase-staticdev \
+    qtconnectivity-dev \
+    qtconnectivity-mkspecs \
+    qtconnectivity-qmlplugins \
     qtdeclarative-dev \
-    qtscript-dev \
-    qt3d-dev \
+    qtdeclarative-mkspecs \
+    qtdeclarative-plugins \
+    qtdeclarative-qmlplugins \
+    qtdeclarative-staticdev \
+    qtgraphicaleffects-qmlplugins \
+    qtimageformats-dev \
+    qtimageformats-plugins \
     qtlocation-dev \
+    qtlocation-mkspecs \
+    qtlocation-plugins \
+    qtlocation-qmlplugins \
+    qtmultimedia-dev \
+    qtmultimedia-mkspecs \
+    qtmultimedia-plugins \
+    qtmultimedia-qmlplugins \
+    qtquick1-dev \
+    qtquick1-mkspecs \
+    qtquick1-plugins \
+    qtquick1-qmlplugins \
+    qtquickcontrols-qmlplugins \
+    qtscript-dev \
+    qtscript-mkspecs \
     qtsensors-dev \
+    qtsensors-mkspecs \
+    qtsensors-plugins \
+    qtsensors-qmlplugins \
+    qtserialport-dev \
+    qtserialport-mkspecs \
     qtsvg-dev \
-    qtxmlpatterns-dev \
-    qtdeclarative-dev \
-    qtdeclarative-plugins \
-    qtdeclarative-qmlplugins \
-    qtgraphicaleffects-dev \
+    qtsvg-mkspecs \
+    qtsvg-plugins \
+    qtsystems-dev \
+    qtsystems-mkspecs \
+    qtsystems-qmlplugins \
+    qttools-dev \
+    qttools-mkspecs \
+    qttools-plugins \
+    qttools-staticdev \
+    qttools-tools \
+    ${@base_contains('DISTRO_FEATURES', 'wayland', '${USE_WAYLAND}', '', d)} \
     ${@base_contains('BBFILE_COLLECTIONS', 'ruby-layer', '${USE_RUBY}', '', d)} \
+    ${@base_contains('DISTRO_FEATURES', 'x11', '${USE_X11}', '', d)} \
+    qtxmlpatterns-dev \
+    qtxmlpatterns-mkspecs \
 "
-- 
1.9.0



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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-02  4:22 ` [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development Jonathan Liu
@ 2014-03-03 19:53   ` Otavio Salvador
  2014-03-04  3:43     ` Jonathan Liu
  2014-03-04 20:00   ` Denys Dmytriyenko
  1 sibling, 1 reply; 11+ messages in thread
From: Otavio Salvador @ 2014-03-03 19:53 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
> This adds the necessary target packages for development with all of the
> Qt 5 modules.
>
> Signed-off-by: Jonathan Liu <net147@gmail.com>

Why are you adding qttools here? this is not need for toolchain use,
is it? It is need for host.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-03 19:53   ` Otavio Salvador
@ 2014-03-04  3:43     ` Jonathan Liu
  2014-03-04 14:34       ` Otavio Salvador
  0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Liu @ 2014-03-04  3:43 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>> This adds the necessary target packages for development with all of the
>> Qt 5 modules.
>>
>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>
> Why are you adding qttools here? this is not need for toolchain use,
> is it? It is need for host.

The QtTools module includes components that may be used by
applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools

Regards,
Jonathan


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-04  3:43     ` Jonathan Liu
@ 2014-03-04 14:34       ` Otavio Salvador
  2014-03-11 11:39         ` Jonathan Liu
  0 siblings, 1 reply; 11+ messages in thread
From: Otavio Salvador @ 2014-03-04 14:34 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Tue, Mar 4, 2014 at 12:43 AM, Jonathan Liu <net147@gmail.com> wrote:
> On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
>> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>>> This adds the necessary target packages for development with all of the
>>> Qt 5 modules.
>>>
>>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>>
>> Why are you adding qttools here? this is not need for toolchain use,
>> is it? It is need for host.
>
> The QtTools module includes components that may be used by
> applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools

From the doc it is not clear to me how it will be used in the target,
it seems something used in host.

Could you help me to understand your reasoning for it?

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-02  4:22 ` [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development Jonathan Liu
  2014-03-03 19:53   ` Otavio Salvador
@ 2014-03-04 20:00   ` Denys Dmytriyenko
  1 sibling, 0 replies; 11+ messages in thread
From: Denys Dmytriyenko @ 2014-03-04 20:00 UTC (permalink / raw)
  To: openembedded-devel

On Sun, Mar 02, 2014 at 03:22:45PM +1100, Jonathan Liu wrote:
> This adds the necessary target packages for development with all of the
> Qt 5 modules.
> 
> Signed-off-by: Jonathan Liu <net147@gmail.com>
> ---
>  .../packagegroup-qt5-toolchain-target.bb           | 80 ++++++++++++++++++----
>  1 file changed, 65 insertions(+), 15 deletions(-)
> 
> diff --git a/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb b/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb
> index 997df18..25983dc 100644
> --- a/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb
> +++ b/recipes-qt/packagegroups/packagegroup-qt5-toolchain-target.bb
> @@ -9,32 +9,82 @@ PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
>  
>  # Requires meta-ruby to work
>  USE_RUBY = " \
> -    qtwebkit-mkspecs \
>      qtwebkit-dev \
> +    qtwebkit-mkspecs \
> +    qtwebkit-qmlplugins \
> +"
> +
> +# Requires Wayland to work
> +USE_WAYLAND = " \
> +    qtwayland-dev \
> +    qtwayland-mkspecs \
> +    qtwayland-plugins \
> +    qtwayland-tools \
> +"
> +
> +# Requires X11 to work
> +USE_X11 = " \
> +    qtx11extras-dev \
> +    qtx11extras-mkspecs \
>  "
>  
>  RDEPENDS_${PN} += " \
>      packagegroup-core-standalone-sdk-target \
>      libsqlite3-dev \
> -    qtbase-mkspecs \
> -    qtscript-mkspecs \
> -    qtxmlpatterns-mkspecs \
> -    qtdeclarative-mkspecs \
> -    qtsensors-mkspecs \
> +    qt3d-dev \
>      qt3d-mkspecs \
> -    qtlocation-mkspecs \
> -    qtsvg-mkspecs \
> +    qt3d-qmlplugins \
>      qtbase-dev \
> +    qtbase-fonts \
> +    qtbase-mkspecs \
> +    qtbase-plugins \
> +    qtbase-staticdev \
> +    qtconnectivity-dev \
> +    qtconnectivity-mkspecs \
> +    qtconnectivity-qmlplugins \
>      qtdeclarative-dev \
> -    qtscript-dev \
> -    qt3d-dev \
> +    qtdeclarative-mkspecs \
> +    qtdeclarative-plugins \
> +    qtdeclarative-qmlplugins \
> +    qtdeclarative-staticdev \
> +    qtgraphicaleffects-qmlplugins \
> +    qtimageformats-dev \
> +    qtimageformats-plugins \
>      qtlocation-dev \
> +    qtlocation-mkspecs \
> +    qtlocation-plugins \
> +    qtlocation-qmlplugins \
> +    qtmultimedia-dev \
> +    qtmultimedia-mkspecs \
> +    qtmultimedia-plugins \
> +    qtmultimedia-qmlplugins \
> +    qtquick1-dev \
> +    qtquick1-mkspecs \
> +    qtquick1-plugins \
> +    qtquick1-qmlplugins \
> +    qtquickcontrols-qmlplugins \
> +    qtscript-dev \
> +    qtscript-mkspecs \
>      qtsensors-dev \
> +    qtsensors-mkspecs \
> +    qtsensors-plugins \
> +    qtsensors-qmlplugins \
> +    qtserialport-dev \
> +    qtserialport-mkspecs \
>      qtsvg-dev \
> -    qtxmlpatterns-dev \
> -    qtdeclarative-dev \
> -    qtdeclarative-plugins \
> -    qtdeclarative-qmlplugins \
> -    qtgraphicaleffects-dev \
> +    qtsvg-mkspecs \
> +    qtsvg-plugins \
> +    qtsystems-dev \
> +    qtsystems-mkspecs \
> +    qtsystems-qmlplugins \
> +    qttools-dev \
> +    qttools-mkspecs \
> +    qttools-plugins \
> +    qttools-staticdev \
> +    qttools-tools \
> +    ${@base_contains('DISTRO_FEATURES', 'wayland', '${USE_WAYLAND}', '', d)} \
>      ${@base_contains('BBFILE_COLLECTIONS', 'ruby-layer', '${USE_RUBY}', '', d)} \
> +    ${@base_contains('DISTRO_FEATURES', 'x11', '${USE_X11}', '', d)} \

Like I said in v2 comment - I like the conditionals here. Can we possibly make 
other modules as conditionals as well? I.e. qt3d or qtwebkit when they are not 
built for the target?

-- 
Denys


> +    qtxmlpatterns-dev \
> +    qtxmlpatterns-mkspecs \
>  "
> -- 
> 1.9.0
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-04 14:34       ` Otavio Salvador
@ 2014-03-11 11:39         ` Jonathan Liu
  2014-03-12 18:42           ` Otavio Salvador
  0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Liu @ 2014-03-11 11:39 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: openembedded-devel

On 5/03/2014 1:34 AM, Otavio Salvador wrote:
> On Tue, Mar 4, 2014 at 12:43 AM, Jonathan Liu <net147@gmail.com> wrote:
>> On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>> This adds the necessary target packages for development with all of the
>>>> Qt 5 modules.
>>>>
>>>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>>> Why are you adding qttools here? this is not need for toolchain use,
>>> is it? It is need for host.
>> The QtTools module includes components that may be used by
>> applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools
>  From the doc it is not clear to me how it will be used in the target,
> it seems something used in host.
>
> Could you help me to understand your reasoning for it?
>
It includes Qt Help which is used to implement context-sensitive help to 
the user in Qt applications.

Regards,
Jonathan


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-11 11:39         ` Jonathan Liu
@ 2014-03-12 18:42           ` Otavio Salvador
  2014-03-12 21:03             ` Jonathan Liu
  0 siblings, 1 reply; 11+ messages in thread
From: Otavio Salvador @ 2014-03-12 18:42 UTC (permalink / raw)
  To: Jonathan Liu; +Cc: OpenEmbedded Devel List

On Tue, Mar 11, 2014 at 8:39 AM, Jonathan Liu <net147@gmail.com> wrote:
> On 5/03/2014 1:34 AM, Otavio Salvador wrote:
>>
>> On Tue, Mar 4, 2014 at 12:43 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>
>>> On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>>>
>>>> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>>>
>>>>> This adds the necessary target packages for development with all of the
>>>>> Qt 5 modules.
>>>>>
>>>>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>>>>
>>>> Why are you adding qttools here? this is not need for toolchain use,
>>>> is it? It is need for host.
>>>
>>> The QtTools module includes components that may be used by
>>> applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools
>>
>>  From the doc it is not clear to me how it will be used in the target,
>> it seems something used in host.
>>
>> Could you help me to understand your reasoning for it?
>>
> It includes Qt Help which is used to implement context-sensitive help to the
> user in Qt applications.

I am fine with it than; do you have any other change pending? please
let me know or I pick v2 of this.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-12 18:42           ` Otavio Salvador
@ 2014-03-12 21:03             ` Jonathan Liu
  2014-03-12 22:37               ` Otavio Salvador
  0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Liu @ 2014-03-12 21:03 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: OpenEmbedded Devel List

On 13/03/2014 5:42 AM, Otavio Salvador wrote:
> On Tue, Mar 11, 2014 at 8:39 AM, Jonathan Liu <net147@gmail.com> wrote:
>> On 5/03/2014 1:34 AM, Otavio Salvador wrote:
>>> On Tue, Mar 4, 2014 at 12:43 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>> On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>>>> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>>>> This adds the necessary target packages for development with all of the
>>>>>> Qt 5 modules.
>>>>>>
>>>>>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>>>>> Why are you adding qttools here? this is not need for toolchain use,
>>>>> is it? It is need for host.
>>>> The QtTools module includes components that may be used by
>>>> applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools
>>>   From the doc it is not clear to me how it will be used in the target,
>>> it seems something used in host.
>>>
>>> Could you help me to understand your reasoning for it?
>>>
>> It includes Qt Help which is used to implement context-sensitive help to the
>> user in Qt applications.
> I am fine with it than; do you have any other change pending? please
> let me know or I pick v2 of this.
>
I don't have any update pending. Please use the latest patch series (v4).

Regards,
Jonathan


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-12 21:03             ` Jonathan Liu
@ 2014-03-12 22:37               ` Otavio Salvador
  2014-03-12 22:47                 ` Jonathan Liu
  0 siblings, 1 reply; 11+ messages in thread
From: Otavio Salvador @ 2014-03-12 22:37 UTC (permalink / raw)
  To: Jonathan Liu; +Cc: OpenEmbedded Devel List

Hello,

On Wed, Mar 12, 2014 at 6:03 PM, Jonathan Liu <net147@gmail.com> wrote:
> On 13/03/2014 5:42 AM, Otavio Salvador wrote:
>>
>> On Tue, Mar 11, 2014 at 8:39 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>
>>> On 5/03/2014 1:34 AM, Otavio Salvador wrote:
>>>>
>>>> On Tue, Mar 4, 2014 at 12:43 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>>>
>>>>> On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>>>>>
>>>>>> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>>>>>
>>>>>>> This adds the necessary target packages for development with all of
>>>>>>> the
>>>>>>> Qt 5 modules.
>>>>>>>
>>>>>>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>>>>>>
>>>>>> Why are you adding qttools here? this is not need for toolchain use,
>>>>>> is it? It is need for host.
>>>>>
>>>>> The QtTools module includes components that may be used by
>>>>> applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools
>>>>
>>>>   From the doc it is not clear to me how it will be used in the target,
>>>> it seems something used in host.
>>>>
>>>> Could you help me to understand your reasoning for it?
>>>>
>>> It includes Qt Help which is used to implement context-sensitive help to
>>> the
>>> user in Qt applications.
>>
>> I am fine with it than; do you have any other change pending? please
>> let me know or I pick v2 of this.
>>
> I don't have any update pending. Please use the latest patch series (v4).

NOTE: Runtime target 'qtquick1-dev' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['qtquick1-dev',
'qtwebkit', 'ruby-native']
NOTE: Runtime target 'packagegroup-qt5-toolchain-target' is
unbuildable, removing...
Missing or unbuildable dependency chain was:
['packagegroup-qt5-toolchain-target', 'qtquick1-dev', 'qtwebkit',
'ruby-native']

This failed to build with Ruby disabled :-)

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development
  2014-03-12 22:37               ` Otavio Salvador
@ 2014-03-12 22:47                 ` Jonathan Liu
  0 siblings, 0 replies; 11+ messages in thread
From: Jonathan Liu @ 2014-03-12 22:47 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: OpenEmbedded Devel List

On 13/03/2014 9:37 AM, Otavio Salvador wrote:
> Hello,
>
> On Wed, Mar 12, 2014 at 6:03 PM, Jonathan Liu <net147@gmail.com> wrote:
>> On 13/03/2014 5:42 AM, Otavio Salvador wrote:
>>> On Tue, Mar 11, 2014 at 8:39 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>> On 5/03/2014 1:34 AM, Otavio Salvador wrote:
>>>>> On Tue, Mar 4, 2014 at 12:43 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>>>> On 4 March 2014 06:53, Otavio Salvador <otavio@ossystems.com.br> wrote:
>>>>>>> On Sun, Mar 2, 2014 at 1:22 AM, Jonathan Liu <net147@gmail.com> wrote:
>>>>>>>> This adds the necessary target packages for development with all of
>>>>>>>> the
>>>>>>>> Qt 5 modules.
>>>>>>>>
>>>>>>>> Signed-off-by: Jonathan Liu <net147@gmail.com>
>>>>>>> Why are you adding qttools here? this is not need for toolchain use,
>>>>>>> is it? It is need for host.
>>>>>> The QtTools module includes components that may be used by
>>>>>> applications - http://qt-project.org/doc/qt-5/qtmodules.html#qt-tools
>>>>>    From the doc it is not clear to me how it will be used in the target,
>>>>> it seems something used in host.
>>>>>
>>>>> Could you help me to understand your reasoning for it?
>>>>>
>>>> It includes Qt Help which is used to implement context-sensitive help to
>>>> the
>>>> user in Qt applications.
>>> I am fine with it than; do you have any other change pending? please
>>> let me know or I pick v2 of this.
>>>
>> I don't have any update pending. Please use the latest patch series (v4).
> NOTE: Runtime target 'qtquick1-dev' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['qtquick1-dev',
> 'qtwebkit', 'ruby-native']
> NOTE: Runtime target 'packagegroup-qt5-toolchain-target' is
> unbuildable, removing...
> Missing or unbuildable dependency chain was:
> ['packagegroup-qt5-toolchain-target', 'qtquick1-dev', 'qtwebkit',
> 'ruby-native']
>
> This failed to build with Ruby disabled :-)
>
Fixed with v5 patch series.

Regards,
Jonathan


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

end of thread, other threads:[~2014-03-12 22:47 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02  4:22 [meta-qt5][PATCH v4 1/2] qtimageformats: allow empty qtimageformats package Jonathan Liu
2014-03-02  4:22 ` [meta-qt5][PATCH v4 2/2] packagegroup-qt5-toolchain-target: include all modules for development Jonathan Liu
2014-03-03 19:53   ` Otavio Salvador
2014-03-04  3:43     ` Jonathan Liu
2014-03-04 14:34       ` Otavio Salvador
2014-03-11 11:39         ` Jonathan Liu
2014-03-12 18:42           ` Otavio Salvador
2014-03-12 21:03             ` Jonathan Liu
2014-03-12 22:37               ` Otavio Salvador
2014-03-12 22:47                 ` Jonathan Liu
2014-03-04 20:00   ` Denys Dmytriyenko

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.