mock build
This commit is contained in:
23
locallibs/ruby-rpm-ffi/lib/rpm/c/rpmlog.rb
Normal file
23
locallibs/ruby-rpm-ffi/lib/rpm/c/rpmlog.rb
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
module RPM
|
||||
module C
|
||||
# rpmlog
|
||||
RPMLOG_PRIMASK = 0x07
|
||||
|
||||
Log = enum(
|
||||
:emerg, 0,
|
||||
:alert, 1,
|
||||
:crit, 2,
|
||||
:err, 3,
|
||||
:warning, 4,
|
||||
:notice, 5,
|
||||
:info, 6,
|
||||
:debug, 7
|
||||
)
|
||||
|
||||
attach_function 'rpmlogSetMask', [:int], :int
|
||||
# TODO: defines to set verbosity
|
||||
# ...
|
||||
attach_function 'rpmlogMessage', [], :string
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user