All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe-core][PATCHv2] libva-initial: unbreak do_populate_sdk
@ 2022-05-24 15:50 Markus Volk
  2022-05-31 14:23 ` richard.purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Volk @ 2022-05-24 15:50 UTC (permalink / raw)
  To: openembedded-core; +Cc: Markus Volk

Error:
 Problem: package libva-dev-2.14.0-r0.corei7_64 requires libva-initial-dev, but none of the providers can be installed
  - conflicting requests
  - nothing provides libva-initial = 2.14.0-r0 needed by libva-initial-dev-2.14.0-r0.corei7_64
(try to add '--skip-broken' to skip uninstallable packages)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 meta/recipes-graphics/libva/libva-initial_2.14.0.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-graphics/libva/libva-initial_2.14.0.bb b/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
index 453096822f..b234797efb 100644
--- a/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
+++ b/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
@@ -6,3 +6,4 @@ do_install:append () {
 	rm -f ${D}${libdir}/*.so*
 }
 
+RDEPENDS:${PN}-dev = ""
-- 
2.25.1



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

* Re: [oe-core][PATCHv2] libva-initial: unbreak do_populate_sdk
  2022-05-24 15:50 [oe-core][PATCHv2] libva-initial: unbreak do_populate_sdk Markus Volk
@ 2022-05-31 14:23 ` richard.purdie
  2022-05-31 15:02   ` Markus Volk
  0 siblings, 1 reply; 4+ messages in thread
From: richard.purdie @ 2022-05-31 14:23 UTC (permalink / raw)
  To: Markus Volk, openembedded-core

On Tue, 2022-05-24 at 17:50 +0200, Markus Volk wrote:
> Error:
>  Problem: package libva-dev-2.14.0-r0.corei7_64 requires libva-initial-dev, but none of the providers can be installed
>   - conflicting requests
>   - nothing provides libva-initial = 2.14.0-r0 needed by libva-initial-dev-2.14.0-r0.corei7_64
> (try to add '--skip-broken' to skip uninstallable packages)
> 
> Signed-off-by: Markus Volk <f_l_k@t-online.de>
> ---
>  meta/recipes-graphics/libva/libva-initial_2.14.0.bb | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/meta/recipes-graphics/libva/libva-initial_2.14.0.bb b/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
> index 453096822f..b234797efb 100644
> --- a/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
> +++ b/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
> @@ -6,3 +6,4 @@ do_install:append () {
>  	rm -f ${D}${libdir}/*.so*
>  }
>  
> +RDEPENDS:${PN}-dev = ""

Should libva-initial be creating any packages at all?

I'd have thought they should all come from libva and we should disable
the packages from libva-initial entirely?

Cheers,

Richard


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

* Re: [oe-core][PATCHv2] libva-initial: unbreak do_populate_sdk
  2022-05-31 14:23 ` richard.purdie
@ 2022-05-31 15:02   ` Markus Volk
  2022-05-31 16:38     ` richard.purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Volk @ 2022-05-31 15:02 UTC (permalink / raw)
  To: richard.purdie, openembedded-core

For my build libva-initial is empty but libva-initial-dev contains 
headers and .pc files

Markus

Am 31.05.22 um 16:23 schrieb richard.purdie@linuxfoundation.org:

> On Tue, 2022-05-24 at 17:50 +0200, Markus Volk wrote:
>> Error:
>>   Problem: package libva-dev-2.14.0-r0.corei7_64 requires libva-initial-dev, but none of the providers can be installed
>>    - conflicting requests
>>    - nothing provides libva-initial = 2.14.0-r0 needed by libva-initial-dev-2.14.0-r0.corei7_64
>> (try to add '--skip-broken' to skip uninstallable packages)
>>
>> Signed-off-by: Markus Volk <f_l_k@t-online.de>
>> ---
>>   meta/recipes-graphics/libva/libva-initial_2.14.0.bb | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/recipes-graphics/libva/libva-initial_2.14.0.bb b/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
>> index 453096822f..b234797efb 100644
>> --- a/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
>> +++ b/meta/recipes-graphics/libva/libva-initial_2.14.0.bb
>> @@ -6,3 +6,4 @@ do_install:append () {
>>   	rm -f ${D}${libdir}/*.so*
>>   }
>>   
>> +RDEPENDS:${PN}-dev = ""
> Should libva-initial be creating any packages at all?
>
> I'd have thought they should all come from libva and we should disable
> the packages from libva-initial entirely?
>
> Cheers,
>
> Richard


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

* Re: [oe-core][PATCHv2] libva-initial: unbreak do_populate_sdk
  2022-05-31 15:02   ` Markus Volk
@ 2022-05-31 16:38     ` richard.purdie
  0 siblings, 0 replies; 4+ messages in thread
From: richard.purdie @ 2022-05-31 16:38 UTC (permalink / raw)
  To: Markus Volk, openembedded-core

On Tue, 2022-05-31 at 17:02 +0200, Markus Volk wrote:
> For my build libva-initial is empty but libva-initial-dev contains 
> headers and .pc files

That doesn't change my view that it shouldn't create any packages at
all though!

Cheers,

Richard



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

end of thread, other threads:[~2022-05-31 16:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-24 15:50 [oe-core][PATCHv2] libva-initial: unbreak do_populate_sdk Markus Volk
2022-05-31 14:23 ` richard.purdie
2022-05-31 15:02   ` Markus Volk
2022-05-31 16:38     ` richard.purdie

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.