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