Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-12 Thread Alexander Kanavin
On Mon, 12 Dec 2022 at 15:18, Stefan Herbrechtsmeier wrote: > >> Sorry for the harsh tone but you ignore existing tools and add just > >> another tool to oe-core without mention any reason or document it. > > The reason to add the class was to be able to update existing > > rust-based recipes

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-12 Thread Stefan Herbrechtsmeier
Hi Alex, Am 09.12.2022 um 13:09 schrieb Alexander Kanavin: On Fri, 9 Dec 2022 at 11:39, Stefan Herbrechtsmeier wrote: Sorry for the harsh tone but you ignore existing tools and add just another tool to oe-core without mention any reason or document it. The reason to add the class was to be

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-09 Thread Stefan Herbrechtsmeier
Hi Richard, Am 09.12.2022 um 13:01 schrieb Richard Purdie: On Fri, 2022-12-09 at 11:39 +0100, Stefan Herbrechtsmeier wrote: Sorry for the harsh tone but you ignore existing tools and add just another tool to oe-core without mention any reason or document it. Do you really expect that somebody

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-09 Thread Richard Purdie
On Fri, 2022-12-09 at 15:43 +0100, Alexander Kanavin wrote: > On Fri, 9 Dec 2022 at 13:01, Richard Purdie > wrote: > > I'd note Alex has another patch which has been sitting for months > > unmerged as it is in my "high risk" to the project category. I suspect > > that one will not actually merge

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-09 Thread Alexander Kanavin
On Fri, 9 Dec 2022 at 13:01, Richard Purdie wrote: > I'd note Alex has another patch which has been sitting for months > unmerged as it is in my "high risk" to the project category. I suspect > that one will not actually merge but I need to find the time to explain > why, right now it is more

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-09 Thread Alexander Kanavin
On Fri, 9 Dec 2022 at 11:39, Stefan Herbrechtsmeier wrote: > Sorry for the harsh tone but you ignore existing tools and add just another > tool to oe-core without mention any reason or document it. The reason to add the class was to be able to update existing rust-based recipes without having

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-09 Thread Richard Purdie
On Fri, 2022-12-09 at 11:39 +0100, Stefan Herbrechtsmeier wrote: > Sorry for the harsh tone but you ignore existing tools and add just > another tool to oe-core without mention any reason or document it. Do > you really expect that somebody will patch existing tools if main > developers ignore

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-09 Thread Stefan Herbrechtsmeier
Hi Alex, Am 07.12.2022 um 17:21 schrieb Alexander Kanavin: On Wed 7. Dec 2022 at 16.28, Stefan Herbrechtsmeier wrote: Hi Alex, Am 07.12.2022 um 09:53 schrieb Alexander Kanavin via lists.openembedded.org : > On Wed, 7 Dec 2022 at 01:21, Sergey

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-07 Thread Alexander Kanavin
On Wed 7. Dec 2022 at 16.28, Stefan Herbrechtsmeier < stefan.herbrechtsmeier-...@weidmueller.com> wrote: > Hi Alex, > > Am 07.12.2022 um 09:53 schrieb Alexander Kanavin via > lists.openembedded.org: > > On Wed, 7 Dec 2022 at 01:21, Sergey Bostandzhyan > wrote: > >> I think this should be

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-07 Thread Stefan Herbrechtsmeier
Hi Alex, Am 07.12.2022 um 09:53 schrieb Alexander Kanavin via lists.openembedded.org: On Wed, 7 Dec 2022 at 01:21, Sergey Bostandzhyan wrote: I think this should be documented more prominently, as missing information on how to get going was the biggest obstacle, at least for me. The benefit

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-07 Thread Alexander Kanavin
On Wed, 7 Dec 2022 at 01:21, Sergey Bostandzhyan wrote: > I think this should be documented more prominently, as missing information > on how to get going was the biggest obstacle, at least for me. The benefit of > this workflow is, that no additional layer is needed and that everything seems >

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-06 Thread Sergey Bostandzhyan
Hi everyone, I promised Randy to post my experience with Yocto and Rust, which was a first time attempt for me. Note, that when starting I had no knowledge about Rust whatsoever, so this is "clean start" observation. On Tue, Dec 06, 2022 at 06:04:18PM -0500, Randy MacLeod wrote: > On 2022-10-31

Re: [OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-12-06 Thread Randy MacLeod
On 2022-10-31 07:47, Alexander Kanavin wrote: For better or worse, more and more rust components are appearing that do not include their dependencies in tarballs (or git trees), and rely on cargo to fetch them. On the other hand, bitbake does not use cargo (and quite possible won't ever be able

[OE-core] [PATCH 01/13] cargo-update-recipe-crates.bbclass: add a class to generate SRC_URI crate lists from Cargo.lock

2022-10-31 Thread Alexander Kanavin
For better or worse, more and more rust components are appearing that do not include their dependencies in tarballs (or git trees), and rely on cargo to fetch them. On the other hand, bitbake does not use cargo (and quite possible won't ever be able to), and relies on having each item explicitly