All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/2] python3-rich: add recipe
@ 2023-03-08 13:57 Yi Zhao
  2023-03-08 13:57 ` [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies Yi Zhao
  2023-03-08 18:59 ` [oe] [meta-python][PATCH 1/2] python3-rich: add recipe Tim Orling
  0 siblings, 2 replies; 7+ messages in thread
From: Yi Zhao @ 2023-03-08 13:57 UTC (permalink / raw)
  To: openembedded-devel

Rich is a Python library for rich text and beautiful formatting in the
terminal.

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 .../python-rich/python3-rich_13.3.2.bb              | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb

diff --git a/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb b/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
new file mode 100644
index 000000000..b3a458ab8
--- /dev/null
+++ b/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
@@ -0,0 +1,13 @@
+SUMMARY = "Rich is a Python library for rich text and beautiful formatting in the terminal"
+DESCRIPTION = "The Rich API makes it easy to add color and style to terminal output. \
+Rich can also render pretty tables, progress bars, markdown, syntax highlighted source code, \
+tracebacks, and more."
+HOMEPAGE="https://github.com/Textualize/rich"
+SECTION = "devel/python"
+LICENSE = "MIT"
+
+LIC_FILES_CHKSUM = "file://LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303"
+
+SRC_URI[sha256sum] = "91954fe80cfb7985727a467ca98a7618e5dd15178cc2da10f553b36a93859001"
+
+inherit pypi setuptools3
-- 
2.25.1



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

* [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies
  2023-03-08 13:57 [meta-python][PATCH 1/2] python3-rich: add recipe Yi Zhao
@ 2023-03-08 13:57 ` Yi Zhao
  2023-03-10 16:46   ` [oe] " Alexandre Belloni
  2023-03-08 18:59 ` [oe] [meta-python][PATCH 1/2] python3-rich: add recipe Tim Orling
  1 sibling, 1 reply; 7+ messages in thread
From: Yi Zhao @ 2023-03-08 13:57 UTC (permalink / raw)
  To: openembedded-devel

Add python3-dbus and python3-rich[1] to RDEPENDS.

[1] https://github.com/canonical/netplan/pull/290

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 .../meta-python/recipes-connectivity/netplan/netplan_0.106.bb   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
index b7fe7ae3e..8c1eaa550 100644
--- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
+++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
@@ -26,7 +26,7 @@ PACKAGECONFIG ?= ""
 
 PACKAGECONFIG[tests] = ",,,python3-nose python3-coverage python3-netifaces python3-pycodestyle python3-pyflakes python3-pyyaml"
 
-RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan"
+RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan python3-dbus python3-rich"
 
 inherit pkgconfig systemd
 
-- 
2.25.1



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

* Re: [oe] [meta-python][PATCH 1/2] python3-rich: add recipe
  2023-03-08 13:57 [meta-python][PATCH 1/2] python3-rich: add recipe Yi Zhao
  2023-03-08 13:57 ` [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies Yi Zhao
@ 2023-03-08 18:59 ` Tim Orling
  2023-03-09  1:28   ` Yi Zhao
  1 sibling, 1 reply; 7+ messages in thread
From: Tim Orling @ 2023-03-08 18:59 UTC (permalink / raw)
  To: Yi Zhao; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2082 bytes --]

On Wed, Mar 8, 2023 at 5:57 AM Yi Zhao <yi.zhao@eng.windriver.com> wrote:

> Rich is a Python library for rich text and beautiful formatting in the
> terminal.
>
> Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
> ---
>  .../python-rich/python3-rich_13.3.2.bb              | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>  create mode 100644 meta-python/recipes-extended/python-rich/
> python3-rich_13.3.2.bb
>
> diff --git a/meta-python/recipes-extended/python-rich/
> python3-rich_13.3.2.bb b/meta-python/recipes-extended/python-rich/
> python3-rich_13.3.2.bb
> new file mode 100644
> index 000000000..b3a458ab8
> --- /dev/null
> +++ b/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
> @@ -0,0 +1,13 @@
> +SUMMARY = "Rich is a Python library for rich text and beautiful
> formatting in the terminal"
> +DESCRIPTION = "The Rich API makes it easy to add color and style to
> terminal output. \
> +Rich can also render pretty tables, progress bars, markdown, syntax
> highlighted source code, \
> +tracebacks, and more."
> +HOMEPAGE="https://github.com/Textualize/rich"
> +SECTION = "devel/python"
> +LICENSE = "MIT"
> +
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303"
> +
> +SRC_URI[sha256sum] =
> "91954fe80cfb7985727a467ca98a7618e5dd15178cc2da10f553b36a93859001"
> +
> +inherit pypi setuptools3
>

This should instead inherit python_poetry_core, since it has a proper
pyproject.toml
https://github.com/Textualize/rich/blob/master/pyproject.toml#L49

Also, please double check whether it needs any RDEPENDS.


> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#101424):
> https://lists.openembedded.org/g/openembedded-devel/message/101424
> Mute This Topic: https://lists.openembedded.org/mt/97472578/924729
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> ticotimo@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

[-- Attachment #2: Type: text/html, Size: 3787 bytes --]

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

* Re: [oe] [meta-python][PATCH 1/2] python3-rich: add recipe
  2023-03-08 18:59 ` [oe] [meta-python][PATCH 1/2] python3-rich: add recipe Tim Orling
@ 2023-03-09  1:28   ` Yi Zhao
  0 siblings, 0 replies; 7+ messages in thread
From: Yi Zhao @ 2023-03-09  1:28 UTC (permalink / raw)
  To: Tim Orling, Yi Zhao; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 4287 bytes --]


On 3/9/23 02:59, Tim Orling wrote:
>
>
> On Wed, Mar 8, 2023 at 5:57 AM Yi Zhao <yi.zhao@eng.windriver.com> wrote:
>
>     Rich is a Python library for rich text and beautiful formatting in the
>     terminal.
>
>     Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
>     ---
>      .../python-rich/python3-rich_13.3.2.bb
>     <https://urldefense.com/v3/__http://python3-rich_13.3.2.bb__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l6Lx_0-Ew$>
>                 | 13 +++++++++++++
>      1 file changed, 13 insertions(+)
>      create mode 100644
>     meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
>     <https://urldefense.com/v3/__http://python3-rich_13.3.2.bb__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l6Lx_0-Ew$>
>
>     diff --git
>     a/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
>     <https://urldefense.com/v3/__http://python3-rich_13.3.2.bb__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l6Lx_0-Ew$>
>     b/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
>     <https://urldefense.com/v3/__http://python3-rich_13.3.2.bb__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l6Lx_0-Ew$>
>     new file mode 100644
>     index 000000000..b3a458ab8
>     --- /dev/null
>     +++
>     b/meta-python/recipes-extended/python-rich/python3-rich_13.3.2.bb
>     <https://urldefense.com/v3/__http://python3-rich_13.3.2.bb__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l6Lx_0-Ew$>
>     @@ -0,0 +1,13 @@
>     +SUMMARY = "Rich is a Python library for rich text and beautiful
>     formatting in the terminal"
>     +DESCRIPTION = "The Rich API makes it easy to add color and style
>     to terminal output. \
>     +Rich can also render pretty tables, progress bars, markdown,
>     syntax highlighted source code, \
>     +tracebacks, and more."
>     +HOMEPAGE="https://github.com/Textualize/rich
>     <https://urldefense.com/v3/__https://github.com/Textualize/rich__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l5H96Hp3w$>"
>     +SECTION = "devel/python"
>     +LICENSE = "MIT"
>     +
>     +LIC_FILES_CHKSUM =
>     "file://LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303"
>     +
>     +SRC_URI[sha256sum] =
>     "91954fe80cfb7985727a467ca98a7618e5dd15178cc2da10f553b36a93859001"
>     +
>     +inherit pypi setuptools3
>
>
> This should instead inherit python_poetry_core, since it has a proper 
> pyproject.toml
> https://github.com/Textualize/rich/blob/master/pyproject.toml#L49 
> <https://urldefense.com/v3/__https://github.com/Textualize/rich/blob/master/pyproject.toml*L49__;Iw!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l6vd0-Waw$>
>
> Also, please double check whether it needs any RDEPENDS.


Thanks. I will check this.


//Yi


>     -- 
>     2.25.1
>
>
>     -=-=-=-=-=-=-=-=-=-=-=-
>     Links: You receive all messages sent to this group.
>     View/Reply Online (#101424):
>     https://lists.openembedded.org/g/openembedded-devel/message/101424
>     <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/message/101424__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l7zyq4Lnw$>
>     Mute This Topic: https://lists.openembedded.org/mt/97472578/924729
>     <https://urldefense.com/v3/__https://lists.openembedded.org/mt/97472578/924729__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l5puEaR1Q$>
>     Group Owner: openembedded-devel+owner@lists.openembedded.org
>     <mailto:openembedded-devel%2Bowner@lists.openembedded.org>
>     Unsubscribe:
>     https://lists.openembedded.org/g/openembedded-devel/unsub
>     <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/unsub__;!!AjveYdw8EvQ!e8_Wo5LG5fpvw4ff3zhjHEbs4hRtcd2-e78YBs-lSshKsidmY4bIa0HbK4Ehx9rkUZAH5uYUSsZ23l7UVm9-9A$>
>     [ticotimo@gmail.com]
>     -=-=-=-=-=-=-=-=-=-=-=-
>

[-- Attachment #2: Type: text/html, Size: 7287 bytes --]

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

* Re: [oe] [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies
  2023-03-08 13:57 ` [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies Yi Zhao
@ 2023-03-10 16:46   ` Alexandre Belloni
  2023-03-10 18:24     ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Alexandre Belloni @ 2023-03-10 16:46 UTC (permalink / raw)
  To: Yi Zhao; +Cc: openembedded-devel

Hello,

This broke check-layer-nightly on the autobuilders:

https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/15/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/21/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/23/logs/stdio

I'm not completely sure why yet.

On 08/03/2023 21:57:05+0800, Yi Zhao wrote:
> Add python3-dbus and python3-rich[1] to RDEPENDS.
> 
> [1] https://github.com/canonical/netplan/pull/290
> 
> Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
> ---
>  .../meta-python/recipes-connectivity/netplan/netplan_0.106.bb   | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> index b7fe7ae3e..8c1eaa550 100644
> --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> @@ -26,7 +26,7 @@ PACKAGECONFIG ?= ""
>  
>  PACKAGECONFIG[tests] = ",,,python3-nose python3-coverage python3-netifaces python3-pycodestyle python3-pyflakes python3-pyyaml"
>  
> -RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan"
> +RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan python3-dbus python3-rich"
>  
>  inherit pkgconfig systemd
>  
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#101425): https://lists.openembedded.org/g/openembedded-devel/message/101425
> Mute This Topic: https://lists.openembedded.org/mt/97472579/3617179
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [oe] [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies
  2023-03-10 16:46   ` [oe] " Alexandre Belloni
@ 2023-03-10 18:24     ` Khem Raj
  2023-03-10 19:46       ` Alexandre Belloni
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2023-03-10 18:24 UTC (permalink / raw)
  To: alexandre.belloni; +Cc: Yi Zhao, openembedded-devel

On Fri, Mar 10, 2023 at 8:46 AM Alexandre Belloni via
lists.openembedded.org
<alexandre.belloni=bootlin.com@lists.openembedded.org> wrote:
>
> Hello,
>
> This broke check-layer-nightly on the autobuilders:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/15/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/21/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/23/logs/stdio
>
> I'm not completely sure why yet.

it started to depend on python-rich and the recipe for python-rich is
now in meta-python but perhaps this went in ahead of the new recipe.
Ideally they should have
gone in atomically.

>
> On 08/03/2023 21:57:05+0800, Yi Zhao wrote:
> > Add python3-dbus and python3-rich[1] to RDEPENDS.
> >
> > [1] https://github.com/canonical/netplan/pull/290
> >
> > Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
> > ---
> >  .../meta-python/recipes-connectivity/netplan/netplan_0.106.bb   | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> > index b7fe7ae3e..8c1eaa550 100644
> > --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> > +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> > @@ -26,7 +26,7 @@ PACKAGECONFIG ?= ""
> >
> >  PACKAGECONFIG[tests] = ",,,python3-nose python3-coverage python3-netifaces python3-pycodestyle python3-pyflakes python3-pyyaml"
> >
> > -RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan"
> > +RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan python3-dbus python3-rich"
> >
> >  inherit pkgconfig systemd
> >
> > --
> > 2.25.1
> >
>
> >
> >
> >
>
>
> --
> Alexandre Belloni, co-owner and COO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#101494): https://lists.openembedded.org/g/openembedded-devel/message/101494
> Mute This Topic: https://lists.openembedded.org/mt/97472579/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [oe] [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies
  2023-03-10 18:24     ` Khem Raj
@ 2023-03-10 19:46       ` Alexandre Belloni
  0 siblings, 0 replies; 7+ messages in thread
From: Alexandre Belloni @ 2023-03-10 19:46 UTC (permalink / raw)
  To: Khem Raj; +Cc: Yi Zhao, openembedded-devel

On 10/03/2023 10:24:20-0800, Khem Raj wrote:
> On Fri, Mar 10, 2023 at 8:46 AM Alexandre Belloni via
> lists.openembedded.org
> <alexandre.belloni=bootlin.com@lists.openembedded.org> wrote:
> >
> > Hello,
> >
> > This broke check-layer-nightly on the autobuilders:
> >
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/15/logs/stdio
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/21/logs/stdio
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/121/builds/1227/steps/23/logs/stdio
> >
> > I'm not completely sure why yet.
> 
> it started to depend on python-rich and the recipe for python-rich is
> now in meta-python but perhaps this went in ahead of the new recipe.

Ok, this would explain why I found python-rich when looking for it but
not check-layer at the time.

> Ideally they should have
> gone in atomically.
> 
> >
> > On 08/03/2023 21:57:05+0800, Yi Zhao wrote:
> > > Add python3-dbus and python3-rich[1] to RDEPENDS.
> > >
> > > [1] https://github.com/canonical/netplan/pull/290
> > >
> > > Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
> > > ---
> > >  .../meta-python/recipes-connectivity/netplan/netplan_0.106.bb   | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> > > index b7fe7ae3e..8c1eaa550 100644
> > > --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> > > +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_0.106.bb
> > > @@ -26,7 +26,7 @@ PACKAGECONFIG ?= ""
> > >
> > >  PACKAGECONFIG[tests] = ",,,python3-nose python3-coverage python3-netifaces python3-pycodestyle python3-pyflakes python3-pyyaml"
> > >
> > > -RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan"
> > > +RDEPENDS:${PN} = "python3 python3-core python3-netifaces python3-pyyaml util-linux-libuuid libnetplan python3-dbus python3-rich"
> > >
> > >  inherit pkgconfig systemd
> > >
> > > --
> > > 2.25.1
> > >
> >
> > >
> > >
> > >
> >
> >
> > --
> > Alexandre Belloni, co-owner and COO, Bootlin
> > Embedded Linux and Kernel engineering
> > https://bootlin.com
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#101494): https://lists.openembedded.org/g/openembedded-devel/message/101494
> > Mute This Topic: https://lists.openembedded.org/mt/97472579/1997914
> > Group Owner: openembedded-devel+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >

-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

end of thread, other threads:[~2023-03-10 19:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-08 13:57 [meta-python][PATCH 1/2] python3-rich: add recipe Yi Zhao
2023-03-08 13:57 ` [meta-oe][PATCH 2/2] netplan: add missing runtime dependencies Yi Zhao
2023-03-10 16:46   ` [oe] " Alexandre Belloni
2023-03-10 18:24     ` Khem Raj
2023-03-10 19:46       ` Alexandre Belloni
2023-03-08 18:59 ` [oe] [meta-python][PATCH 1/2] python3-rich: add recipe Tim Orling
2023-03-09  1:28   ` Yi Zhao

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.