Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-09-27 Thread Bruce Ashfield
On Wed, Sep 27, 2023 at 9:34 AM Lukas Funke wrote: > On 10.09.2023 23:26, Martin Jansa wrote: > > On Sun, Mar 12, 2023 at 10:15 AM Martin Jansa via lists.openembedded.org > > wrote: > > > >> On Tue, Jan 3, 2023 at 5:03 PM Lukas Funke < > >> lukas.funke-...@weidmueller.com> wrote: > >> > >>>

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-09-27 Thread Lukas Funke
On 10.09.2023 23:26, Martin Jansa wrote: On Sun, Mar 12, 2023 at 10:15 AM Martin Jansa via lists.openembedded.org wrote: On Tue, Jan 3, 2023 at 5:03 PM Lukas Funke < lukas.funke-...@weidmueller.com> wrote: Martin, first of all: thank you for testing the patches. As usual the corner cases

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-09-10 Thread Martin Jansa
On Sun, Mar 12, 2023 at 10:15 AM Martin Jansa via lists.openembedded.org wrote: > On Tue, Jan 3, 2023 at 5:03 PM Lukas Funke < > lukas.funke-...@weidmueller.com> wrote: > >> Martin, >> >> first of all: thank you for testing the patches. As usual the corner >> cases are the most tricky ones. >>

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-03-12 Thread Martin Jansa
On Tue, Jan 3, 2023 at 5:03 PM Lukas Funke wrote: > Martin, > > first of all: thank you for testing the patches. As usual the corner > cases are the most tricky ones. > > tl;dr: I'm working on an updated patch series to address the reported > issues. > Hi Lukas, and update on this series? It

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-01-11 Thread wonsang . ryu
I also tested using telegraf v1.21.4. Kirkstone uses go1.17, so I tested this version. Unfortunately, it failed with the following log. Did I have something mistakes? ~$ recipetool create -S 583ee20a093acaa0781508b7840deb97a0fda622 -B release-1.21 https://github.com/influxdata/telegraf.git

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-01-03 Thread Lukas Funke
Martin, first of all: thank you for testing the patches. As usual the corner cases are the most tricky ones. tl;dr: I'm working on an updated patch series to address the reported issues. I've looked into the issues and would like to give some explanation. 1) the first module you mention

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2023-01-02 Thread Stefan Herbrechtsmeier
Hi Martin, Am 26.12.2022 um 10:59 schrieb Martin Jansa via lists.openembedded.org: On Mon, Dec 26, 2022 at 10:38 AM Vyacheslav Yurkov wrote: Martin, I did see that patch series, but I was not sure about its state, therefore I didn't try it. If I understood correctly, that

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-29 Thread Vyacheslav Yurkov
On 26.12.2022 10:59, Martin Jansa wrote: Please try recipetool changes on your go-mod recipes and provide feedback. Coincidentally, I also needed grpc-web recipe, which original patchset was tested on. I applied the series on my kirkstone branch of poky and tried to run the command: %

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-26 Thread Martin Jansa
On Mon, Dec 26, 2022 at 10:38 AM Vyacheslav Yurkov wrote: > Martin, I did see that patch series, but I was not sure about its state, > therefore I didn't try it. If I understood correctly, that partially solves > the issue, but the proper solution should involve the fetcher, that's why > it's

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-26 Thread Vyacheslav Yurkov
Martin, I did see that patch series, but I was not sure about its state, therefore I didn't try it. If I understood correctly, that partially solves the issue, but the proper solution should involve the fetcher, that's why it's not yet merged to master. Am I missing something? Regards, Slava

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-22 Thread Martin Jansa
On Thu, Dec 22, 2022 at 7:39 PM Vyacheslav Yurkov wrote: > On 22.12.2022 17:48, Bruce Ashfield wrote: > > On Thu, Dec 22, 2022 at 11:20 AM Richard Purdie > > wrote: > >> This patch is not in master and is not a backport therefore not > >> eligible for kirkstone/langdale. > > My bad, the

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-22 Thread Vyacheslav Yurkov
On 22.12.2022 17:48, Bruce Ashfield wrote: On Thu, Dec 22, 2022 at 11:20 AM Richard Purdie wrote: This patch is not in master and is not a backport therefore not eligible for kirkstone/langdale. My bad, the intention was to have it in all three branches: master, kirkstone, and langdale.

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-22 Thread Bruce Ashfield
On Thu, Dec 22, 2022 at 11:20 AM Richard Purdie wrote: > > On Thu, 2022-12-22 at 16:02 +0100, Vyacheslav Yurkov wrote: > > This is a workaround to allow using go-mod until a proper solution is in > > place. Possible solutions were discussued ealier this year in these > > threads: > > > >

Re: [OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-22 Thread Richard Purdie
On Thu, 2022-12-22 at 16:02 +0100, Vyacheslav Yurkov wrote: > This is a workaround to allow using go-mod until a proper solution is in > place. Possible solutions were discussued ealier this year in these > threads: > > https://lists.openembedded.org/g/openembedded-core/topic/89464905 >

[OE-core] [langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile

2022-12-22 Thread Vyacheslav Yurkov
This is a workaround to allow using go-mod until a proper solution is in place. Possible solutions were discussued ealier this year in these threads: https://lists.openembedded.org/g/openembedded-core/topic/89464905 https://lists.openembedded.org/g/openembedded-architecture/topic/90782883