#! /usr/bin/env tclsh
set queue "/home/rkeene/devel/kitcreator/build/web/queue"
set outdir "/web/customers/kitcreator.rkeene.org/kits"
if {![file exists "${queue}.old"]} {
if {![file exists $queue]} {
exit 0
}
file rename "$queue" "${queue}.old"
}
set queue "${queue}.old"
set fd [open $queue r]
set data [read $fd]
close $fd
foreach line [split $data "\n"] {
if {$line == ""} {
continue
}
unset -nocomplain buildinfo
array set buildinfo $line
set outfile [file join $outdir $buildinfo(key) $buildinfo(filename)]
# Skip if build completed
if {[file exists $outfile]} {
continue
}
# Skip if build failed
if {[file exists $outfile.buildfail]} {
continue
}
set workdir [file join $outdir $buildinfo(key) build]
file delete -force $workdir
file mkdir $workdir
cd $workdir
set fd [open ../buildinfo w]
puts $fd [array get buildinfo]
close $fd
set tarball kitcreator-${buildinfo(kitcreator_version)}.tar.gz
exec wget -q -O $tarball http://kitcreator.rkeene.org/fossil/tarball/${tarball}?uuid=${buildinfo(kitcreator_version)}
exec gzip -dc $tarball | tar -xf -
cd kitcreator-${buildinfo(kitcreator_version)}
set script "./build/make-kit-${buildinfo(platform)}"
set args [list]
set ::env(KITCREATOR_PKGS) " [join $buildinfo(packages) " "] "
foreach {option value} $buildinfo(options) {
switch -- $option {
"kitdll" {
if {$value} {
set ::env(KITCREATOR_PKGS) "$::env(KITCREATOR_PKGS) kitdll"
}
}
"threaded" {
if {$value} {
lappend args "--enable-threads"
} else {
lappend args "--disable-threads"
}
}
}
}
catch {
exec ./build/pre.sh
}
catch {
exec $script $buildinfo(tcl_version) {*}$args > "${outfile}.log" 2>@1
}
catch {
exec grep ^ {*}[glob */build.log] >> "${outfile}.log"
}
foreach file [list tclkit-$buildinfo(tcl_version) {*}[glob -nocomplain libtclkit*]] {
switch -glob -- $file {
"*.dylib" - "*.so" - "*.sl" - "*.dll" { }
"tclkit-*" {}
default {
continue
}
}
if {[file exists $file]} {
file rename $file $outfile
break
}
}
if {![file exists $outfile]} {
set fd [open $outfile.buildfail "w+"]
puts $fd "$line"
close $fd
}
cd $outdir
file delete -force $workdir
}
file delete $queue
exit 0