go-rpmutils is a library written in go for parsing and extracting content from RPMs.
go-rpmutils provides a few interfaces for handling RPM packages. There is a highlevel Rpm
struct that provides access to the RPM header and CPIO payload. The CPIO payload can be extracted to a filesystem location via the ExpandPayload
function or through a Reader interface, similar to the tar implementation in the go standard library.
func main() {
f, err := os.Open("foo.rpm")
if err != nil {
panic(err)
}
// Parse the rpm
rpm := rpmutils.ReadRpm(f)
// Get the name, epoch, version, release, and arch
nevra, err := rpm.Header.GetNEVRA()
if err != nil {
panic(err)
}
fmt.Printf("%s\n", nevra)
// Reading the provides header
provides, err := rpm.Header.GetStrings(rpmutils.PROVIDENAME)
if err != nil {
panic(err)
}
fmt.Printf("Provides:\n")
for _, p := range provides {
fmt.Printf("%s", p)
}
}
- Read contributor agreement
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -a
). Make sure to include a Signed-off-by line per the contributor agreement. - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
go-rpmutils is released under the Apache 2.0 license. See LICENSE.