Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-qt5] [PATCH] qttools: DEPENDS on icu
@ 2017-06-20  4:28 liu.ming50
  2017-06-22 19:18 ` Denys Dmytriyenko
  0 siblings, 1 reply; 7+ messages in thread
From: liu.ming50 @ 2017-06-20  4:28 UTC (permalink / raw)
  To: openembedded-devel, martin.jansa; +Cc: Ming Liu

From: Ming Liu <peter.x.liu@external.atlascopco.com>

This fixes a following QA issue:
| QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicui18n, but it isn't a build dependency.
| QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicuuc, but it isn't a build dependency.
| QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicudata, but it isn't a build dependency.

Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
---
 recipes-qt/qt5/qttools_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/qttools_git.bb
index 5c0f51c..1108390 100644
--- a/recipes-qt/qt5/qttools_git.bb
+++ b/recipes-qt/qt5/qttools_git.bb
@@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
 
 inherit ptest
 
-DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
+DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
 
 SRC_URI += " \
     file://run-ptest \
-- 
2.7.4



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

* Re: [meta-qt5] [PATCH] qttools: DEPENDS on icu
  2017-06-20  4:28 [meta-qt5] [PATCH] qttools: DEPENDS on icu liu.ming50
@ 2017-06-22 19:18 ` Denys Dmytriyenko
  2017-06-23 21:19   ` Denys Dmytriyenko
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2017-06-22 19:18 UTC (permalink / raw)
  To: liu.ming50; +Cc: Ming Liu, openembedded-devel

On Tue, Jun 20, 2017 at 06:28:32AM +0200, liu.ming50@gmail.com wrote:
> From: Ming Liu <peter.x.liu@external.atlascopco.com>
> 
> This fixes a following QA issue:
> | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicui18n, but it isn't a build dependency.
> | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicuuc, but it isn't a build dependency.
> | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicudata, but it isn't a build dependency.

It seems there's inconsistency here between errors above referring to 
nativesdk-qtbase-tools and the change below made to qttools instead of 
qtbase!

I wonder if this fix was not included by the author:

https://github.com/meta-qt5/meta-qt5/commit/ff073f04109900fc07bf81e2f1df63c626caf342

Just to double-check, I just built nativesdk-qttools using meta-qt5 w/o this 
patch and I don't see the above QA errors.

-- 
Denys


> Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> ---
>  recipes-qt/qt5/qttools_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/qttools_git.bb
> index 5c0f51c..1108390 100644
> --- a/recipes-qt/qt5/qttools_git.bb
> +++ b/recipes-qt/qt5/qttools_git.bb
> @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
>  
>  inherit ptest
>  
> -DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
> +DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
>  
>  SRC_URI += " \
>      file://run-ptest \
> -- 
> 2.7.4
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-qt5] [PATCH] qttools: DEPENDS on icu
  2017-06-22 19:18 ` Denys Dmytriyenko
@ 2017-06-23 21:19   ` Denys Dmytriyenko
  2017-06-23 21:41     ` Martin Jansa
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2017-06-23 21:19 UTC (permalink / raw)
  To: liu.ming50; +Cc: Ming Liu, openembedded-devel

Martin,

Were you able to look into this yet? I didn't copy you directly at first, so 
not sure if you missed it...


On Thu, Jun 22, 2017 at 03:18:49PM -0400, Denys Dmytriyenko wrote:
> On Tue, Jun 20, 2017 at 06:28:32AM +0200, liu.ming50@gmail.com wrote:
> > From: Ming Liu <peter.x.liu@external.atlascopco.com>
> > 
> > This fixes a following QA issue:
> > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicui18n, but it isn't a build dependency.
> > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicuuc, but it isn't a build dependency.
> > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicudata, but it isn't a build dependency.
> 
> It seems there's inconsistency here between errors above referring to 
> nativesdk-qtbase-tools and the change below made to qttools instead of 
> qtbase!
> 
> I wonder if this fix was not included by the author:
> 
> https://github.com/meta-qt5/meta-qt5/commit/ff073f04109900fc07bf81e2f1df63c626caf342
> 
> Just to double-check, I just built nativesdk-qttools using meta-qt5 w/o this 
> patch and I don't see the above QA errors.
> 
> -- 
> Denys
> 
> 
> > Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> > ---
> >  recipes-qt/qt5/qttools_git.bb | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/qttools_git.bb
> > index 5c0f51c..1108390 100644
> > --- a/recipes-qt/qt5/qttools_git.bb
> > +++ b/recipes-qt/qt5/qttools_git.bb
> > @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
> >  
> >  inherit ptest
> >  
> > -DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
> > +DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
> >  
> >  SRC_URI += " \
> >      file://run-ptest \
> > -- 
> > 2.7.4
> > 
> > -- 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-qt5] [PATCH] qttools: DEPENDS on icu
  2017-06-23 21:19   ` Denys Dmytriyenko
@ 2017-06-23 21:41     ` Martin Jansa
  2017-06-23 21:46       ` Denys Dmytriyenko
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2017-06-23 21:41 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: Ming Liu, openembedded-devel, Ming Liu

Yes, I've seen both e-mails. I'm waiting for response from author, then
I'll revert it in master and pyro branches.

On Fri, Jun 23, 2017 at 11:19 PM, Denys Dmytriyenko <denis@denix.org> wrote:

> Martin,
>
> Were you able to look into this yet? I didn't copy you directly at first,
> so
> not sure if you missed it...
>
>
> On Thu, Jun 22, 2017 at 03:18:49PM -0400, Denys Dmytriyenko wrote:
> > On Tue, Jun 20, 2017 at 06:28:32AM +0200, liu.ming50@gmail.com wrote:
> > > From: Ming Liu <peter.x.liu@external.atlascopco.com>
> > >
> > > This fixes a following QA issue:
> > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicui18n,
> but it isn't a build dependency.
> > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicuuc, but
> it isn't a build dependency.
> > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicudata,
> but it isn't a build dependency.
> >
> > It seems there's inconsistency here between errors above referring to
> > nativesdk-qtbase-tools and the change below made to qttools instead of
> > qtbase!
> >
> > I wonder if this fix was not included by the author:
> >
> > https://github.com/meta-qt5/meta-qt5/commit/
> ff073f04109900fc07bf81e2f1df63c626caf342
> >
> > Just to double-check, I just built nativesdk-qttools using meta-qt5 w/o
> this
> > patch and I don't see the above QA errors.
> >
> > --
> > Denys
> >
> >
> > > Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > ---
> > >  recipes-qt/qt5/qttools_git.bb | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/
> qttools_git.bb
> > > index 5c0f51c..1108390 100644
> > > --- a/recipes-qt/qt5/qttools_git.bb
> > > +++ b/recipes-qt/qt5/qttools_git.bb
> > > @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
> > >
> > >  inherit ptest
> > >
> > > -DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
> > > +DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
> > >
> > >  SRC_URI += " \
> > >      file://run-ptest \
> > > --
> > > 2.7.4
> > >
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-qt5] [PATCH] qttools: DEPENDS on icu
  2017-06-23 21:41     ` Martin Jansa
@ 2017-06-23 21:46       ` Denys Dmytriyenko
       [not found]         ` <CALatG=7jn597sL8XE2hk8X67smJTH84HPe+wsYzwHC1HNHh9cA@mail.gmail.com>
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2017-06-23 21:46 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Ming Liu, openembedded-devel, Ming Liu

Thanks.

On Fri, Jun 23, 2017 at 11:41:05PM +0200, Martin Jansa wrote:
> Yes, I've seen both e-mails. I'm waiting for response from author, then
> I'll revert it in master and pyro branches.
> 
> On Fri, Jun 23, 2017 at 11:19 PM, Denys Dmytriyenko <denis@denix.org> wrote:
> 
> > Martin,
> >
> > Were you able to look into this yet? I didn't copy you directly at first,
> > so
> > not sure if you missed it...
> >
> >
> > On Thu, Jun 22, 2017 at 03:18:49PM -0400, Denys Dmytriyenko wrote:
> > > On Tue, Jun 20, 2017 at 06:28:32AM +0200, liu.ming50@gmail.com wrote:
> > > > From: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > >
> > > > This fixes a following QA issue:
> > > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicui18n,
> > but it isn't a build dependency.
> > > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicuuc, but
> > it isn't a build dependency.
> > > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicudata,
> > but it isn't a build dependency.
> > >
> > > It seems there's inconsistency here between errors above referring to
> > > nativesdk-qtbase-tools and the change below made to qttools instead of
> > > qtbase!
> > >
> > > I wonder if this fix was not included by the author:
> > >
> > > https://github.com/meta-qt5/meta-qt5/commit/
> > ff073f04109900fc07bf81e2f1df63c626caf342
> > >
> > > Just to double-check, I just built nativesdk-qttools using meta-qt5 w/o
> > this
> > > patch and I don't see the above QA errors.
> > >
> > > --
> > > Denys
> > >
> > >
> > > > Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > > ---
> > > >  recipes-qt/qt5/qttools_git.bb | 2 +-
> > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/
> > qttools_git.bb
> > > > index 5c0f51c..1108390 100644
> > > > --- a/recipes-qt/qt5/qttools_git.bb
> > > > +++ b/recipes-qt/qt5/qttools_git.bb
> > > > @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
> > > >
> > > >  inherit ptest
> > > >
> > > > -DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
> > > > +DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
> > > >
> > > >  SRC_URI += " \
> > > >      file://run-ptest \
> > > > --
> > > > 2.7.4
> > > >
> > > > --
> > > > _______________________________________________
> > > > Openembedded-devel mailing list
> > > > Openembedded-devel@lists.openembedded.org
> > > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >


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

* Re: [meta-qt5] [PATCH] qttools: DEPENDS on icu
       [not found]         ` <CALatG=7jn597sL8XE2hk8X67smJTH84HPe+wsYzwHC1HNHh9cA@mail.gmail.com>
@ 2017-06-26 15:52           ` Denys Dmytriyenko
  2017-06-27  3:04             ` Ming Liu
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2017-06-26 15:52 UTC (permalink / raw)
  To: Ming Liu; +Cc: openembedded-devel

I believe this was meant to be sent to the list, not just me directly...

On Mon, Jun 26, 2017 at 05:00:14AM +0200, Ming Liu wrote:
> Hi,
> 
> Please revert it, I probably made a mistake, I encountered this issue in
> morty branch, then I checked the qttools-5.7 source, and found there is
> code referring ICU, so I thought the issue is also impacting the upstream,
> which it seems is not according to Denys, sorry for the inconvenience I
> brought.
> 
> //Ming Liu
> 
> 2017-06-23 23:46 GMT+02:00 Denys Dmytriyenko <denis@denix.org>:
> 
> > Thanks.
> >
> > On Fri, Jun 23, 2017 at 11:41:05PM +0200, Martin Jansa wrote:
> > > Yes, I've seen both e-mails. I'm waiting for response from author, then
> > > I'll revert it in master and pyro branches.
> > >
> > > On Fri, Jun 23, 2017 at 11:19 PM, Denys Dmytriyenko <denis@denix.org>
> > wrote:
> > >
> > > > Martin,
> > > >
> > > > Were you able to look into this yet? I didn't copy you directly at
> > first,
> > > > so
> > > > not sure if you missed it...
> > > >
> > > >
> > > > On Thu, Jun 22, 2017 at 03:18:49PM -0400, Denys Dmytriyenko wrote:
> > > > > On Tue, Jun 20, 2017 at 06:28:32AM +0200, liu.ming50@gmail.com
> > wrote:
> > > > > > From: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > > > >
> > > > > > This fixes a following QA issue:
> > > > > > | QA Issue: nativesdk-qtbase-tools rdepends on
> > nativesdk-libicui18n,
> > > > but it isn't a build dependency.
> > > > > > | QA Issue: nativesdk-qtbase-tools rdepends on nativesdk-libicuuc,
> > but
> > > > it isn't a build dependency.
> > > > > > | QA Issue: nativesdk-qtbase-tools rdepends on
> > nativesdk-libicudata,
> > > > but it isn't a build dependency.
> > > > >
> > > > > It seems there's inconsistency here between errors above referring to
> > > > > nativesdk-qtbase-tools and the change below made to qttools instead
> > of
> > > > > qtbase!
> > > > >
> > > > > I wonder if this fix was not included by the author:
> > > > >
> > > > > https://github.com/meta-qt5/meta-qt5/commit/
> > > > ff073f04109900fc07bf81e2f1df63c626caf342
> > > > >
> > > > > Just to double-check, I just built nativesdk-qttools using meta-qt5
> > w/o
> > > > this
> > > > > patch and I don't see the above QA errors.
> > > > >
> > > > > --
> > > > > Denys
> > > > >
> > > > >
> > > > > > Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > > > > ---
> > > > > >  recipes-qt/qt5/qttools_git.bb | 2 +-
> > > > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > > > >
> > > > > > diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/
> > > > qttools_git.bb
> > > > > > index 5c0f51c..1108390 100644
> > > > > > --- a/recipes-qt/qt5/qttools_git.bb
> > > > > > +++ b/recipes-qt/qt5/qttools_git.bb
> > > > > > @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
> > > > > >
> > > > > >  inherit ptest
> > > > > >
> > > > > > -DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
> > > > > > +DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
> > > > > >
> > > > > >  SRC_URI += " \
> > > > > >      file://run-ptest \
> > > > > > --
> > > > > > 2.7.4
> > > > > >
> > > > > > --
> > > > > > _______________________________________________
> > > > > > Openembedded-devel mailing list
> > > > > > Openembedded-devel@lists.openembedded.org
> > > > > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> > > > > --
> > > > > _______________________________________________
> > > > > Openembedded-devel mailing list
> > > > > Openembedded-devel@lists.openembedded.org
> > > > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> > > >
> >


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

* Re: [meta-qt5] [PATCH] qttools: DEPENDS on icu
  2017-06-26 15:52           ` Denys Dmytriyenko
@ 2017-06-27  3:04             ` Ming Liu
  0 siblings, 0 replies; 7+ messages in thread
From: Ming Liu @ 2017-06-27  3:04 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: openembedded-devel

Hi,

Please revert it, I probably made a mistake, I encountered this issue in
morty branch, then I checked the qttools-5.7 source, and found there is
code referring ICU, so I thought the issue is also impacting the upstream,
which it seems is not according to Denys, sorry for the inconvenience I
brought.

2017-06-26 17:52 GMT+02:00 Denys Dmytriyenko <denis@denix.org>:

> I believe this was meant to be sent to the list, not just me directly...
>
> On Mon, Jun 26, 2017 at 05:00:14AM +0200, Ming Liu wrote:
> > Hi,
> >
> > Please revert it, I probably made a mistake, I encountered this issue in
> > morty branch, then I checked the qttools-5.7 source, and found there is
> > code referring ICU, so I thought the issue is also impacting the
> upstream,
> > which it seems is not according to Denys, sorry for the inconvenience I
> > brought.
> >
> > //Ming Liu
> >
> > 2017-06-23 23:46 GMT+02:00 Denys Dmytriyenko <denis@denix.org>:
> >
> > > Thanks.
> > >
> > > On Fri, Jun 23, 2017 at 11:41:05PM +0200, Martin Jansa wrote:
> > > > Yes, I've seen both e-mails. I'm waiting for response from author,
> then
> > > > I'll revert it in master and pyro branches.
> > > >
> > > > On Fri, Jun 23, 2017 at 11:19 PM, Denys Dmytriyenko <denis@denix.org
> >
> > > wrote:
> > > >
> > > > > Martin,
> > > > >
> > > > > Were you able to look into this yet? I didn't copy you directly at
> > > first,
> > > > > so
> > > > > not sure if you missed it...
> > > > >
> > > > >
> > > > > On Thu, Jun 22, 2017 at 03:18:49PM -0400, Denys Dmytriyenko wrote:
> > > > > > On Tue, Jun 20, 2017 at 06:28:32AM +0200, liu.ming50@gmail.com
> > > wrote:
> > > > > > > From: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > > > > >
> > > > > > > This fixes a following QA issue:
> > > > > > > | QA Issue: nativesdk-qtbase-tools rdepends on
> > > nativesdk-libicui18n,
> > > > > but it isn't a build dependency.
> > > > > > > | QA Issue: nativesdk-qtbase-tools rdepends on
> nativesdk-libicuuc,
> > > but
> > > > > it isn't a build dependency.
> > > > > > > | QA Issue: nativesdk-qtbase-tools rdepends on
> > > nativesdk-libicudata,
> > > > > but it isn't a build dependency.
> > > > > >
> > > > > > It seems there's inconsistency here between errors above
> referring to
> > > > > > nativesdk-qtbase-tools and the change below made to qttools
> instead
> > > of
> > > > > > qtbase!
> > > > > >
> > > > > > I wonder if this fix was not included by the author:
> > > > > >
> > > > > > https://github.com/meta-qt5/meta-qt5/commit/
> > > > > ff073f04109900fc07bf81e2f1df63c626caf342
> > > > > >
> > > > > > Just to double-check, I just built nativesdk-qttools using
> meta-qt5
> > > w/o
> > > > > this
> > > > > > patch and I don't see the above QA errors.
> > > > > >
> > > > > > --
> > > > > > Denys
> > > > > >
> > > > > >
> > > > > > > Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> > > > > > > ---
> > > > > > >  recipes-qt/qt5/qttools_git.bb | 2 +-
> > > > > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > > > > >
> > > > > > > diff --git a/recipes-qt/qt5/qttools_git.bb b/recipes-qt/qt5/
> > > > > qttools_git.bb
> > > > > > > index 5c0f51c..1108390 100644
> > > > > > > --- a/recipes-qt/qt5/qttools_git.bb
> > > > > > > +++ b/recipes-qt/qt5/qttools_git.bb
> > > > > > > @@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = " \
> > > > > > >
> > > > > > >  inherit ptest
> > > > > > >
> > > > > > > -DEPENDS += "qtbase qtdeclarative qtxmlpatterns"
> > > > > > > +DEPENDS += "qtbase qtdeclarative qtxmlpatterns icu"
> > > > > > >
> > > > > > >  SRC_URI += " \
> > > > > > >      file://run-ptest \
> > > > > > > --
> > > > > > > 2.7.4
> > > > > > >
> > > > > > > --
> > > > > > > _______________________________________________
> > > > > > > Openembedded-devel mailing list
> > > > > > > Openembedded-devel@lists.openembedded.org
> > > > > > > http://lists.openembedded.org/mailman/listinfo/openembedded-
> devel
> > > > > > --
> > > > > > _______________________________________________
> > > > > > Openembedded-devel mailing list
> > > > > > Openembedded-devel@lists.openembedded.org
> > > > > > http://lists.openembedded.org/mailman/listinfo/openembedded-
> devel
> > > > >
> > >
>


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

end of thread, other threads:[~2017-06-27  3:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-20  4:28 [meta-qt5] [PATCH] qttools: DEPENDS on icu liu.ming50
2017-06-22 19:18 ` Denys Dmytriyenko
2017-06-23 21:19   ` Denys Dmytriyenko
2017-06-23 21:41     ` Martin Jansa
2017-06-23 21:46       ` Denys Dmytriyenko
     [not found]         ` <CALatG=7jn597sL8XE2hk8X67smJTH84HPe+wsYzwHC1HNHh9cA@mail.gmail.com>
2017-06-26 15:52           ` Denys Dmytriyenko
2017-06-27  3:04             ` Ming Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox