Re: Packaging a go application

2020-12-20 Thread Robin Opletal
Hi Robert, Thanks for the awesome write-up! This will help a lot. I am unsure how I managed to miss your reply. Cheers! On 12/9/20 8:20 PM, Robert-André Mauchin wrote: This gonna be tricky because of the Makefile we can't use because we do not support Go modules yet. And git.sr.ht is not a

Re: Packaging a go application

2020-12-09 Thread Robert-André Mauchin
On 12/8/20 8:20 AM, Robin Opletal wrote: Hi, As I have said earlier, I am trying to package aerc, the mail client, for Fedora. What didn't cross my mind is that internet access will be limited during the build, thus the automatic dependency resolution from the Makefile during the build stage of

Re: Packaging a go application

2020-12-09 Thread Dan Čermák
Hi Robin, "Robin Opletal" writes: > On Tue Dec 8, 2020 at 8:17 PM CET, Dan Čermák wrote: >> Hi Robin, > > Hi Dan, > >> BuildRequires: golang($url/$owner/$pkg) >> indicates a dependent package that must be available in Fedora. It is >> actually not a macro, it's just a naming convention for golan

Re: Packaging a go application

2020-12-09 Thread Robin Opletal
On Tue Dec 8, 2020 at 8:17 PM CET, Dan Čermák wrote: > Hi Robin, Hi Dan, > BuildRequires: golang($url/$owner/$pkg) > indicates a dependent package that must be available in Fedora. It is > actually not a macro, it's just a naming convention for golang packages > (more specifically, this is a capa

Re: Packaging a go application

2020-12-08 Thread Dan Čermák
Hi Robin, "Robin Opletal" writes: > Hi, > > As I have said earlier, I am trying to package aerc, the mail client, > for Fedora. What didn't cross my mind is that internet access will be > limited during the build, thus the automatic dependency resolution > from the Makefile during the build stag

Packaging a go application

2020-12-07 Thread Robin Opletal
Hi, As I have said earlier, I am trying to package aerc, the mail client, for Fedora. What didn't cross my mind is that internet access will be limited during the build, thus the automatic dependency resolution from the Makefile during the build stage of aerc doesn't work. I was wondering what th