prosody-filer icon indicating copy to clipboard operation
prosody-filer copied to clipboard

create a new release

Open anjandev opened this issue 2 years ago • 2 comments

I was trying to package 1.0.2 for Alpine. I got:

prosody-filer.go:25:2: no required module provides package github.com/BurntSushi/toml: go.mod file not found in current directory or any parent directory; see 'go help modules'

Which seems to be fixed in the latest develop head:

https://github.com/ThomasLeister/prosody-filer/issues/27

Please cut a new release so that this is fixed.

anjandev avatar May 25 '22 05:05 anjandev

If you weren't aware and if there is a preparation stage with the Alpine build scripts you could use the following for the time being:

if [ ! -e go.mod ]; then
  go mod init "${url#https://}"
  go mod tidy
fi

$url references this repos url (and in the way written just specific to Arch) and the tidy option generates the information for the deps.

Narrat avatar May 28 '22 19:05 Narrat

Would be indeed nice. There seem to be some issues with compiling this on newer versions of Go that need to be fixed though. Edit: ok via the go install command the develop version does build fine.

poVoq avatar Sep 28 '23 18:09 poVoq

New release v1.0.3 has been created :)

ThomasLeister avatar Feb 17 '24 13:02 ThomasLeister