All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target
@ 2025-12-13  4:16 Deepesh.Varatharajan
  2025-12-13  4:23 ` Varatharajan, Deepesh
  2025-12-13  6:26 ` [oe] " Khem Raj
  0 siblings, 2 replies; 4+ messages in thread
From: Deepesh.Varatharajan @ 2025-12-13  4:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Deepesh.Varatharajan

From: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>

Avoid pulling in a non-existent libstd-rs-native dependency by
restricting libstd-rs to class-target builds.

Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
---
 meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb b/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
index 7bb6be1cb6..0ef671cf04 100644
--- a/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
+++ b/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
@@ -15,7 +15,7 @@ S = "${CARGO_VENDORING_DIRECTORY}/ripgrep-${PV}"
 
 inherit cargo cargo-update-recipe-crates
 
-DEPENDS += "libstd-rs"
+DEPENDS:class-target += "libstd-rs"
 
 require ${BPN}-crates.inc
 
-- 
2.49.0



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

* Re: [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target
  2025-12-13  4:16 [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target Deepesh.Varatharajan
@ 2025-12-13  4:23 ` Varatharajan, Deepesh
  2025-12-13  6:26 ` [oe] " Khem Raj
  1 sibling, 0 replies; 4+ messages in thread
From: Varatharajan, Deepesh @ 2025-12-13  4:23 UTC (permalink / raw)
  To: openembedded-devel

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

This fixes below warnings
https://autobuilder.yoctoproject.org/valkyrie/#/builders/82/builds/546
https://autobuilder.yoctoproject.org/valkyrie/#/builders/82/builds/547

Regards,
Deepesh

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

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

* Re: [oe] [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target
  2025-12-13  4:16 [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target Deepesh.Varatharajan
  2025-12-13  4:23 ` Varatharajan, Deepesh
@ 2025-12-13  6:26 ` Khem Raj
  2025-12-13  6:29   ` Deepesh Varatharajan
  1 sibling, 1 reply; 4+ messages in thread
From: Khem Raj @ 2025-12-13  6:26 UTC (permalink / raw)
  To: deepesh.varatharajan; +Cc: openembedded-devel

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

On Fri, Dec 12, 2025 at 8:16 PM Varatharajan, Deepesh via
lists.openembedded.org <deepesh.varatharajan=
windriver.com@lists.openembedded.org> wrote:

> From: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
>
> Avoid pulling in a non-existent libstd-rs-native dependency by
> restricting libstd-rs to class-target builds.
>
> Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
> ---
>  meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
> b/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
> index 7bb6be1cb6..0ef671cf04 100644
> --- a/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
> +++ b/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
> @@ -15,7 +15,7 @@ S = "${CARGO_VENDORING_DIRECTORY}/ripgrep-${PV}"
>
>  inherit cargo cargo-update-recipe-crates
>
> -DEPENDS += "libstd-rs"
> +DEPENDS:class-target += "libstd-rs"
>

This should be DEPENDS:append:class-target = " libstd-rs"


>
>  require ${BPN}-crates.inc
>
> --
> 2.49.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#122628):
> https://lists.openembedded.org/g/openembedded-devel/message/122628
> Mute This Topic: https://lists.openembedded.org/mt/116758522/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

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

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

* Re: [oe] [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target
  2025-12-13  6:26 ` [oe] " Khem Raj
@ 2025-12-13  6:29   ` Deepesh Varatharajan
  0 siblings, 0 replies; 4+ messages in thread
From: Deepesh Varatharajan @ 2025-12-13  6:29 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-devel

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


On 13-12-2025 11:56, Khem Raj wrote:
> **
> *CAUTION: This email comes from a non Wind River email account!*
> Do not click links or open attachments unless you recognize the sender 
> and know the content is safe.
>
>
> On Fri, Dec 12, 2025 at 8:16 PM Varatharajan, Deepesh via 
> lists.openembedded.org 
> <https://urldefense.com/v3/__http://lists.openembedded.org__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflKP8xaQ8$> 
> <deepesh.varatharajan=windriver.com@lists.openembedded.org> wrote:
>
>     From: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com>
>
>     Avoid pulling in a non-existent libstd-rs-native dependency by
>     restricting libstd-rs to class-target builds.
>
>     Signed-off-by: Deepesh Varatharajan
>     <Deepesh.Varatharajan@windriver.com>
>     ---
>      meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
>     <https://urldefense.com/v3/__http://ripgrep_15.1.0.bb__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflxnWLEIA$>
>     | 2 +-
>      1 file changed, 1 insertion(+), 1 deletion(-)
>
>     diff --git a/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
>     <https://urldefense.com/v3/__http://ripgrep_15.1.0.bb__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflxnWLEIA$>
>     b/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
>     <https://urldefense.com/v3/__http://ripgrep_15.1.0.bb__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflxnWLEIA$>
>     index 7bb6be1cb6..0ef671cf04 100644
>     --- a/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
>     <https://urldefense.com/v3/__http://ripgrep_15.1.0.bb__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflxnWLEIA$>
>     +++ b/meta-oe/recipes-extended/ripgrep/ripgrep_15.1.0.bb
>     <https://urldefense.com/v3/__http://ripgrep_15.1.0.bb__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflxnWLEIA$>
>     @@ -15,7 +15,7 @@ S = "${CARGO_VENDORING_DIRECTORY}/ripgrep-${PV}"
>
>      inherit cargo cargo-update-recipe-crates
>
>     -DEPENDS += "libstd-rs"
>     +DEPENDS:class-target += "libstd-rs"
>
>
> This should be DEPENDS:append:class-target = " libstd-rs"
Sure Khem, v2 incoming.

Regards,
Deepesh
>
>
>      require ${BPN}-crates.inc
>     <https://urldefense.com/v3/__http://-crates.inc__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflv2nwesw$>
>
>     -- 
>     2.49.0
>
>
>     -=-=-=-=-=-=-=-=-=-=-=-
>     Links: You receive all messages sent to this group.
>     View/Reply Online (#122628):
>     https://lists.openembedded.org/g/openembedded-devel/message/122628
>     <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/message/122628__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZfl-I0LkNQ$>
>     Mute This Topic:
>     https://lists.openembedded.org/mt/116758522/1997914
>     <https://urldefense.com/v3/__https://lists.openembedded.org/mt/116758522/1997914__;!!AjveYdw8EvQ!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflhMf5ol0$>
>     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!d8PJoSdVRi1qP3Ht5K8VhfFqCYGuOLwDzBcRghko5GzfrdEboxekBPj1x2N2mRx1iJbJ0SED8ulFvh1rGZflWolZFfs$>
>     [raj.khem@gmail.com]
>     -=-=-=-=-=-=-=-=-=-=-=-
>

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

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

end of thread, other threads:[~2025-12-13  6:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-13  4:16 [meta-oe][PATCH] ripgrep: limit libstd-rs DEPENDS to class-target Deepesh.Varatharajan
2025-12-13  4:23 ` Varatharajan, Deepesh
2025-12-13  6:26 ` [oe] " Khem Raj
2025-12-13  6:29   ` Deepesh Varatharajan

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.