updated build system

This commit is contained in:
Marc Wäckerlin
2018-04-04 20:43:54 +00:00
parent 08c2beb523
commit efa751ae62
15 changed files with 1688 additions and 681 deletions

14
rpmsign.exp Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/expect -f
set key [lindex $argv 0]
set password [lindex $argv 1]
set files [lrange $argv 2 end]
### rpm-sign.exp -- Sign RPMs by sending the passphrase.
spawn rpmsign --define "_gpg_name $key" --addsign {*}$files
expect {
"Enter pass phrase: " {
send -- "$password\r"
exp_continue
} eof
}