All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ceph: inherit pkgconfig.bbclass
@ 2021-10-19  2:53 kai
  2021-10-19  3:04 ` [meta-virtualization] " Bruce Ashfield
  0 siblings, 1 reply; 3+ messages in thread
From: kai @ 2021-10-19  2:53 UTC (permalink / raw)
  To: martin.jansa; +Cc: meta-virtualization

From: Kai Kang <kai.kang@windriver.com>

According to oe-core commit

8e26252b45 layer.conf: Extend recipes not to install without explict dependencies

pkgconfig-native is not deployed in sysroot by default any more. Inherit
pkgconfig.bbclass to make it available for ceph.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
v2:
* correct referenced commit

 recipes-extended/ceph/ceph_15.2.12.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/ceph/ceph_15.2.12.bb b/recipes-extended/ceph/ceph_15.2.12.bb
index 6636d7a..693b525 100644
--- a/recipes-extended/ceph/ceph_15.2.12.bb
+++ b/recipes-extended/ceph/ceph_15.2.12.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING-LGPL2.1;md5=fbc093901857fcd118f065f900982c24
                     file://COPYING-GPL2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
                     file://COPYING;md5=4eb012c221c5fd4b760029a2981a6754 \
 "
-inherit cmake python3native python3-dir systemd
+inherit cmake pkgconfig python3native python3-dir systemd
 # Disable python pybind support for ceph temporary, when corss compiling pybind,
 # pybind mix cmake and python setup environment, would case a lot of errors.
 
-- 
2.17.1


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

* Re: [meta-virtualization] [PATCH v2] ceph: inherit pkgconfig.bbclass
  2021-10-19  2:53 [PATCH v2] ceph: inherit pkgconfig.bbclass kai
@ 2021-10-19  3:04 ` Bruce Ashfield
  2021-10-19  3:16   ` kai
  0 siblings, 1 reply; 3+ messages in thread
From: Bruce Ashfield @ 2021-10-19  3:04 UTC (permalink / raw)
  To: kai; +Cc: Martin Jansa, meta-virtualization

On Mon, Oct 18, 2021 at 10:53 PM kai <kai.kang@windriver.com> wrote:
>
> From: Kai Kang <kai.kang@windriver.com>
>
> According to oe-core commit
>
> 8e26252b45 layer.conf: Extend recipes not to install without explict dependencies
>
> pkgconfig-native is not deployed in sysroot by default any more. Inherit
> pkgconfig.bbclass to make it available for ceph.
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ---
> v2:
> * correct referenced commit

v2 is staged on master-next.

If this is needed anywhere else than master (i.e. honister), let me
know ... It wouldn't break anything on honister, but I'm trying to
keep the changes there to a minimum.

Cheers,

Bruce

>
>  recipes-extended/ceph/ceph_15.2.12.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-extended/ceph/ceph_15.2.12.bb b/recipes-extended/ceph/ceph_15.2.12.bb
> index 6636d7a..693b525 100644
> --- a/recipes-extended/ceph/ceph_15.2.12.bb
> +++ b/recipes-extended/ceph/ceph_15.2.12.bb
> @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING-LGPL2.1;md5=fbc093901857fcd118f065f900982c24
>                      file://COPYING-GPL2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>                      file://COPYING;md5=4eb012c221c5fd4b760029a2981a6754 \
>  "
> -inherit cmake python3native python3-dir systemd
> +inherit cmake pkgconfig python3native python3-dir systemd
>  # Disable python pybind support for ceph temporary, when corss compiling pybind,
>  # pybind mix cmake and python setup environment, would case a lot of errors.
>
> --
> 2.17.1
>
>
> 
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

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

* Re: [meta-virtualization] [PATCH v2] ceph: inherit pkgconfig.bbclass
  2021-10-19  3:04 ` [meta-virtualization] " Bruce Ashfield
@ 2021-10-19  3:16   ` kai
  0 siblings, 0 replies; 3+ messages in thread
From: kai @ 2021-10-19  3:16 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: Martin Jansa, meta-virtualization

On 10/19/21 11:04 AM, Bruce Ashfield wrote:
> On Mon, Oct 18, 2021 at 10:53 PM kai <kai.kang@windriver.com> wrote:
>> From: Kai Kang <kai.kang@windriver.com>
>>
>> According to oe-core commit
>>
>> 8e26252b45 layer.conf: Extend recipes not to install without explict dependencies
>>
>> pkgconfig-native is not deployed in sysroot by default any more. Inherit
>> pkgconfig.bbclass to make it available for ceph.
>>
>> Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> ---
>> v2:
>> * correct referenced commit
> v2 is staged on master-next.
>
> If this is needed anywhere else than master (i.e. honister), let me
> know ... It wouldn't break anything on honister, but I'm trying to
> keep the changes there to a minimum.

It is only required by master that the oe-core commit only exists in 
oe-core master and next release(kirkstone) branches:

$ git br -r --contains 8e26252b45

   origin/HEAD -> origin/master
   origin/kirkstone-next
   origin/master
   origin/master-next

Regards,
Kai

>
> Cheers,
>
> Bruce
>
>>   recipes-extended/ceph/ceph_15.2.12.bb | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/recipes-extended/ceph/ceph_15.2.12.bb b/recipes-extended/ceph/ceph_15.2.12.bb
>> index 6636d7a..693b525 100644
>> --- a/recipes-extended/ceph/ceph_15.2.12.bb
>> +++ b/recipes-extended/ceph/ceph_15.2.12.bb
>> @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING-LGPL2.1;md5=fbc093901857fcd118f065f900982c24
>>                       file://COPYING-GPL2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>>                       file://COPYING;md5=4eb012c221c5fd4b760029a2981a6754 \
>>   "
>> -inherit cmake python3native python3-dir systemd
>> +inherit cmake pkgconfig python3native python3-dir systemd
>>   # Disable python pybind support for ceph temporary, when corss compiling pybind,
>>   # pybind mix cmake and python setup environment, would case a lot of errors.
>>
>> --
>> 2.17.1
>>
>>
>> 
>>
>

-- 
Kai Kang
Wind River Linux


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

end of thread, other threads:[~2021-10-19  3:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19  2:53 [PATCH v2] ceph: inherit pkgconfig.bbclass kai
2021-10-19  3:04 ` [meta-virtualization] " Bruce Ashfield
2021-10-19  3:16   ` kai

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.