mirror of
https://github.com/peridotbuild/peridot.git
synced 2025-01-04 16:10:56 +00:00
.. | ||
cpio | ||
fileutil | ||
.gitignore | ||
BUILD | ||
ContributorAgreement.txt | ||
errors.go | ||
fileinfo.go | ||
filesigs.go | ||
header.go | ||
LICENSE | ||
nevra.go | ||
payload.go | ||
README.md | ||
rpmutils.go | ||
signatures.go | ||
SUPPORT.md | ||
tags.go | ||
uncompress.go | ||
uncompress_cgo.go | ||
uncompress_nocgo.go | ||
vercmp.go | ||
verify.go | ||
writeheader.go |
Go RPM Utils
go-rpmutils is a library written in go for parsing and extracting content from RPMs.
Overview
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.
Example
// Opening a RPM file
f, err := os.Open("foo.rpm")
if err != nil {
panic(err)
}
rpm, err := rpmutils.ReadRpm(f)
if err != nil {
panic(err)
}
// Getting metadata
nevra, err := rpm.Header.GetNEVRA()
if err != nil {
panic(err)
}
fmt.Println(nevra)
provides, err := rpm.Header.GetStrings(rpmutils.PROVIDENAME)
if err != nil {
panic(err)
}
fmt.Println("Provides:")
for _, p := range provides {
fmt.Println(p)
}
// Extracting payload
if err := rpm.ExpandPayload("destdir"); err != nil {
panic(err)
}
Contributing
- 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
License
go-rpmutils is released under the Apache 2.0 license. See LICENSE.