A Go library for parsing apk package versions
go-apk-version is a library for parsing and comparing versions
The implementation is based on this implementation
OS: Alpine
Installation can be done with a normal go get:
$ go get github.com/knqyf263/go-apk-version
import "github.com/knqyf263/go-apk-version"
v1, err := version.NewVersion("1.2.3")
v2, err := version.NewVersion("1.2.3-r1")
// Comparison example. You can use GreaterThan and Equal as well.
if v1.LessThan(v2) {
fmt.Printf("%s is less than %s", v1, v2)
}
raw := []string{"1.2.3", "1.2.3_alpha1", "1.2.3-r1", "1.2.4", "1.0_p9-r0"}
vs := make([]version.Version, len(raw))
for i, r := range raw {
v, _ := version.NewVersion(r)
vs[i] = v
}
sort.Slice(vs, func(i, j int) bool {
return vs[i].LessThan(vs[j])
})
- fork a repository: github.com/knqyf263/go-apk-version to github.com/you/repo
- get original code:
go get github.com/knqyf263/go-apk-version
- work on original code
- add remote to your repo: git remote add myfork https://github.com/you/repo.git
- push your changes: git push myfork
- create a new Pull Request
Apache License 2.0
Teppei Fukuda