All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/1] pyro: Fix opencv build
@ 2017-10-19 17:40 Anselmo L. S. Melo
  2017-10-19 17:40 ` [meta-oe][PATCH 1/1] opencv: fix runtime dependencies Anselmo L. S. Melo
  2017-10-19 17:47 ` [meta-oe][PATCH 0/1] pyro: Fix opencv build akuster808
  0 siblings, 2 replies; 5+ messages in thread
From: Anselmo L. S. Melo @ 2017-10-19 17:40 UTC (permalink / raw)
  To: openembedded-devel

git cherry-pick 0abf5af3ffd3d13c009a8ffcd5a6f045c36be837
from meta-oe master branch.

Ismo Puustinen (1):
  opencv: fix runtime dependencies.

 meta-oe/recipes-support/opencv/opencv_3.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.14.2



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

* [meta-oe][PATCH 1/1] opencv: fix runtime dependencies.
  2017-10-19 17:40 [meta-oe][PATCH 0/1] pyro: Fix opencv build Anselmo L. S. Melo
@ 2017-10-19 17:40 ` Anselmo L. S. Melo
  2017-10-20 16:21   ` Martin Jansa
  2017-10-19 17:47 ` [meta-oe][PATCH 0/1] pyro: Fix opencv build akuster808
  1 sibling, 1 reply; 5+ messages in thread
From: Anselmo L. S. Melo @ 2017-10-19 17:40 UTC (permalink / raw)
  To: openembedded-devel

From: Ismo Puustinen <ismo.puustinen@intel.com>

The newly split "libopencv-ts" package is empty (and thus not created),
because all ts files are installed in the development package. So, do
not add a runtime dependency to libopencv-ts.

Signed-off-by: Ismo Puustinen <ismo.puustinen@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/opencv/opencv_3.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/opencv/opencv_3.2.bb b/meta-oe/recipes-support/opencv/opencv_3.2.bb
index 535c761fa..fc62e9975 100644
--- a/meta-oe/recipes-support/opencv/opencv_3.2.bb
+++ b/meta-oe/recipes-support/opencv/opencv_3.2.bb
@@ -126,7 +126,7 @@ python populate_packages_prepend () {
 
     metapkg =  pn
     d.setVar('ALLOW_EMPTY_' + metapkg, "1")
-    blacklist = [ metapkg ]
+    blacklist = [ metapkg, "libopencv-ts" ]
     metapkg_rdepends = [ ]
     for pkg in packages[1:]:
         if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.endswith('-doc') and not pkg.endswith('-locale') and not pkg.endswith('-staticdev'):
-- 
2.14.2



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

* Re: [meta-oe][PATCH 0/1] pyro: Fix opencv build
  2017-10-19 17:40 [meta-oe][PATCH 0/1] pyro: Fix opencv build Anselmo L. S. Melo
  2017-10-19 17:40 ` [meta-oe][PATCH 1/1] opencv: fix runtime dependencies Anselmo L. S. Melo
@ 2017-10-19 17:47 ` akuster808
  1 sibling, 0 replies; 5+ messages in thread
From: akuster808 @ 2017-10-19 17:47 UTC (permalink / raw)
  To: Anselmo L. S. Melo, openembedded-devel



On 10/19/2017 10:40 AM, Anselmo L. S. Melo wrote:
> git cherry-pick 0abf5af3ffd3d13c009a8ffcd5a6f045c36be837
> from meta-oe master branch.
>
> Ismo Puustinen (1):
>   opencv: fix runtime dependencies.
thanks. its in my stagging now.
- armin
>
>  meta-oe/recipes-support/opencv/opencv_3.2.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>



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

* Re: [meta-oe][PATCH 1/1] opencv: fix runtime dependencies.
  2017-10-19 17:40 ` [meta-oe][PATCH 1/1] opencv: fix runtime dependencies Anselmo L. S. Melo
@ 2017-10-20 16:21   ` Martin Jansa
  2018-01-12 12:00     ` Mikko Gronoff
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2017-10-20 16:21 UTC (permalink / raw)
  To: Anselmo L. S. Melo; +Cc: openembedded-devel

Follow the README and put [pyro] in the subject.

I've noticed this only because this doesn't apply to master where 3.2
version was removed 3 months ago with:
commit 31fceb560c0b81cff3aa439e3f43fd7a04dc477f
Author:     Ismo Puustinen <ismo.puustinen@intel.com>
AuthorDate: Thu Aug 10 12:58:18 2017 +0300
Commit:     Martin Jansa <Martin.Jansa@gmail.com>
CommitDate: Sun Aug 13 13:21:02 2017 +0200

    opencv: update to version 3.3.

and this commit is already in master.

On Thu, Oct 19, 2017 at 7:40 PM, Anselmo L. S. Melo <anselmo.melo@intel.com>
wrote:

> From: Ismo Puustinen <ismo.puustinen@intel.com>
>
> The newly split "libopencv-ts" package is empty (and thus not created),
> because all ts files are installed in the development package. So, do
> not add a runtime dependency to libopencv-ts.
>
> Signed-off-by: Ismo Puustinen <ismo.puustinen@intel.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta-oe/recipes-support/opencv/opencv_3.2.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-support/opencv/opencv_3.2.bb
> b/meta-oe/recipes-support/opencv/opencv_3.2.bb
> index 535c761fa..fc62e9975 100644
> --- a/meta-oe/recipes-support/opencv/opencv_3.2.bb
> +++ b/meta-oe/recipes-support/opencv/opencv_3.2.bb
> @@ -126,7 +126,7 @@ python populate_packages_prepend () {
>
>      metapkg =  pn
>      d.setVar('ALLOW_EMPTY_' + metapkg, "1")
> -    blacklist = [ metapkg ]
> +    blacklist = [ metapkg, "libopencv-ts" ]
>      metapkg_rdepends = [ ]
>      for pkg in packages[1:]:
>          if not pkg in blacklist and not pkg in metapkg_rdepends and not
> pkg.endswith('-dev') and not pkg.endswith('-dbg') and not
> pkg.endswith('-doc') and not pkg.endswith('-locale') and not
> pkg.endswith('-staticdev'):
> --
> 2.14.2
>
>


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

* Re: [meta-oe][PATCH 1/1] opencv: fix runtime dependencies.
  2017-10-20 16:21   ` Martin Jansa
@ 2018-01-12 12:00     ` Mikko Gronoff
  0 siblings, 0 replies; 5+ messages in thread
From: Mikko Gronoff @ 2018-01-12 12:00 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

Hi,

this single commit (0abf5af3ffd3d13c009a8ffcd5a6f045c36be837) has been 
in "pyro-next" branch for a long time. Can this be picked to "pyro" branch?


On 10/20/2017 07:21 PM, Martin Jansa wrote:
> Follow the README and put [pyro] in the subject.
>
> I've noticed this only because this doesn't apply to master where 3.2
> version was removed 3 months ago with:
> commit 31fceb560c0b81cff3aa439e3f43fd7a04dc477f
> Author:     Ismo Puustinen <ismo.puustinen@intel.com>
> AuthorDate: Thu Aug 10 12:58:18 2017 +0300
> Commit:     Martin Jansa <Martin.Jansa@gmail.com>
> CommitDate: Sun Aug 13 13:21:02 2017 +0200
>
>      opencv: update to version 3.3.
>
> and this commit is already in master.
>
> On Thu, Oct 19, 2017 at 7:40 PM, Anselmo L. S. Melo <anselmo.melo@intel.com>
> wrote:
>
>> From: Ismo Puustinen <ismo.puustinen@intel.com>
>>
>> The newly split "libopencv-ts" package is empty (and thus not created),
>> because all ts files are installed in the development package. So, do
>> not add a runtime dependency to libopencv-ts.
>>
>> Signed-off-by: Ismo Puustinen <ismo.puustinen@intel.com>
>> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
>> ---
>>   meta-oe/recipes-support/opencv/opencv_3.2.bb | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta-oe/recipes-support/opencv/opencv_3.2.bb
>> b/meta-oe/recipes-support/opencv/opencv_3.2.bb
>> index 535c761fa..fc62e9975 100644
>> --- a/meta-oe/recipes-support/opencv/opencv_3.2.bb
>> +++ b/meta-oe/recipes-support/opencv/opencv_3.2.bb
>> @@ -126,7 +126,7 @@ python populate_packages_prepend () {
>>
>>       metapkg =  pn
>>       d.setVar('ALLOW_EMPTY_' + metapkg, "1")
>> -    blacklist = [ metapkg ]
>> +    blacklist = [ metapkg, "libopencv-ts" ]
>>       metapkg_rdepends = [ ]
>>       for pkg in packages[1:]:
>>           if not pkg in blacklist and not pkg in metapkg_rdepends and not
>> pkg.endswith('-dev') and not pkg.endswith('-dbg') and not
>> pkg.endswith('-doc') and not pkg.endswith('-locale') and not
>> pkg.endswith('-staticdev'):
>> --
>> 2.14.2
>>
>>



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

end of thread, other threads:[~2018-01-12 16:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-19 17:40 [meta-oe][PATCH 0/1] pyro: Fix opencv build Anselmo L. S. Melo
2017-10-19 17:40 ` [meta-oe][PATCH 1/1] opencv: fix runtime dependencies Anselmo L. S. Melo
2017-10-20 16:21   ` Martin Jansa
2018-01-12 12:00     ` Mikko Gronoff
2017-10-19 17:47 ` [meta-oe][PATCH 0/1] pyro: Fix opencv build akuster808

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.