Skip to content

knqyf263/go-rpm-version

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-rpm-version

Build Status Coverage Status Go Report Card MIT License

A Go library for parsing rpm package versions

go-rpm-version is a library for parsing and comparing rpm versions

For the original C implementation, see: https://github.com/rpm-software-management/rpm/blob/master/lib/rpmvercmp.c#L16

OS: RedHat/CentOS

Installation and Usage

Installation can be done with a normal go get:

$ go get github.com/knqyf263/go-rpm-version

Version Parsing and Comparison

import version "github.com/knqyf263/go-rpm-version"

v1 := version.NewVersion("2:6.0-1")
v2 := version.NewVersion("2:6.0-2.el6")

// Comparison example. There is also GreaterThan, Equal.
if v1.LessThan(v2) {
    fmt.Printf("%s is less than %s", v1, v2)
}

Version Sorting

raw := []string{"5.3p1-112", "3.6.1p2-21.sel", "3.6.1p2-22", "5.3p1-105", "3.6.1p2-21"}
vs := make([]version.Version, len(raw))
for i, r := range raw {
	vs[i] = version.NewVersion(r)
}

sort.Slice(vs, func(i, j int) bool {
	return vs[i].LessThan(vs[j])
})

Contribute

  1. fork a repository: github.com/knqyf263/go-rpm-version to github.com/you/repo
  2. get original code: go get github.com/knqyf263/go-rpm-version
  3. work on original code
  4. add remote to your repo: git remote add myfork https://github.com/you/repo.git
  5. push your changes: git push myfork
  6. create a new Pull Request

License

MIT

Author

Teppei Fukuda

About

A golang library for parsing rpm package versions

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages