12 |
|
|
13 |
for package in $(cat modules) |
for package in $(cat modules) |
14 |
do |
do |
|
case $package in |
|
|
SMEServer) continue ;; |
|
15 |
|
|
16 |
# e-smith*) ;; |
case $package in |
17 |
|
SMEServer) continue ;; |
18 |
|
builds_bin) continue ;; |
19 |
|
cdrom.image) continue ;; |
20 |
|
e-smith-qpsmtpd) continue ;; |
21 |
|
e-smith-spamassassin) continue ;; |
22 |
|
|
23 |
smeserver*) ;; |
qpsmtpd) echo "$package doesn't build automagically yet" |
24 |
|
continue ;; |
25 |
|
|
26 |
|
perl-CGI-FormMagick) echo "$package doesn't build automagically yet" |
27 |
|
continue ;; |
28 |
|
|
29 |
*) echo -n "Skipping $package "; date |
*) ;; |
|
continue |
|
|
;; |
|
30 |
esac |
esac |
31 |
|
|
32 |
echo -n "Building $package "; date |
echo -n "Checking $package "; date |
33 |
|
|
34 |
[ -d $package ] || mzget $package |
[ -d $package ] || mzget $package |
35 |
|
|
36 |
( |
cd $package |
|
cd $package |
|
|
|
|
|
LOG=$package.log |
|
|
mzclean >>$LOG 2>&1 |
|
37 |
|
|
38 |
if mzbuild >>$LOG 2>&1 |
LOG=$package.log |
39 |
then |
mzclean >$LOG 2>&1 |
40 |
release_rpms *.rpm |
|
41 |
else |
SPEC=$(echo F/*.spec) # XXX - FIXME - only one SPEC file |
42 |
echo "Build of $package failed - check $LOG" |
|
43 |
fi |
if [ ! -f $SPEC ] |
44 |
) |
then |
45 |
|
echo "Sorry - can't find $SPEC" |
46 |
|
continue |
47 |
|
fi |
48 |
|
|
49 |
|
NVR=$(rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE}" --specfile $SPEC) |
50 |
|
|
51 |
|
SRPM=/builds/rpms/SRPMS/$NVR.src.rpm |
52 |
|
|
53 |
|
if [ -f $SRPM ] |
54 |
|
then |
55 |
|
echo "$SRPM already exists" |
56 |
|
continue |
57 |
|
fi |
58 |
|
|
59 |
|
if mzbuild >>$LOG 2>&1 |
60 |
|
then |
61 |
|
release_rpms *.rpm |
62 |
|
else |
63 |
|
echo "Build of $package failed - check $LOG" |
64 |
|
fi |
65 |
|
|
66 |
|
cd ~/work |
67 |
done |
done |