1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# ARRRRRRRRRR PM
RPM reader/writer library written in Ruby.
It aims to provide [fpm](https://github.com/jordansissel/fpm) with a way to
read and write rpms.
## Why not use librpm?
The API is quite confusing in many places, poorly documented in most. I have
reached out to some CentOS/rpm folks to see what we can do about improving that
API.
Even still, librpm has dependencies of its own. I want fpm to be able to read
and write RPMs without requiring and endless chain of dependencies and most
especially without requiring root access to get things going.
Mainly, if I try to build librpm myself, I get this: "configure: error: missing
required NSPR / NSS header" and I'm not the burden of dependency resolution on
fpm users.
## API ideas
It should be possible to do a read+modify+write on an RPM.
### Creating an RPM (proposed API)
rpm = RPM.new
# requires and conflicts
rpm.requires("name") <= "version" # Something fun-dsl-likef
rpm.requires("name", :<=, "version") # Or maybe something like this
# provides
rpm.provides("name")
# Add some files
rpm.files << path
rpm.files << path2
rpm.files << path3
# Scripts?
rpm.scripts[:preinstall](path_or_script_string)
rpm.scripts[:postinstall](path_or_script_string)
rpm.scripts[:preuninstall](path_or_script_string)
rpm.scripts[:postuninstall](path_or_script_string)
rpm.write(output_file_name)
### Reading an RPM (proposed API)
rpm = RPM.read(file)
rpm.requires # Array of RPM::Requires ?
rpm.provides # Array of 'Provides' strings?
rpm.conflicts # Array of RPM::Conflicts ?
rpm.files # Array of RPM::File ?
Maybe something like:
rpm.files.each do |file|
# Tags that are defined in rpm header tags
# fileclass filecolors filecontexts filedependsn filedependsx filedevices
# filedigests fileflags filegroupname fileinodes filelangs filelinktos
# filemodes filemtimes filerdevs filesizes fileusername fileverifyflags
#
# frankly, we don't care about most of these. Meaningful ones:
# username, groupname, size, mtime, mode, linkto
# file.io could give a nice IO-like thing that let you read the file out
# of the rpm
end
|