I am the maintainer of port sysutils/superfile in the FreeBSD Ports collection, which is the package repository of the FreeBSD project.
I have tried to upgrade the port to 1.6.0 and face two problems: first, there is some porting effort required (PR #1472), but we can address that with a site patch.
The more pressing issue is that go.mod currently does not have an entry for indirect dependency github.com/kr/text, which prevents our usual build process (involving go mod vendor) from working. This is quite annoying to work around unfortunately.
Please add the missing entry, e.g. by running go get github.com/kr/text or go mod tidy and then check it into the repository.
I am the maintainer of port sysutils/superfile in the FreeBSD Ports collection, which is the package repository of the FreeBSD project.
I have tried to upgrade the port to 1.6.0 and face two problems: first, there is some porting effort required (PR #1472), but we can address that with a site patch.
The more pressing issue is that
go.modcurrently does not have an entry for indirect dependencygithub.com/kr/text, which prevents our usual build process (involvinggo mod vendor) from working. This is quite annoying to work around unfortunately.Please add the missing entry, e.g. by running
go get github.com/kr/textorgo mod tidyand then check it into the repository.