1 |
gordonr |
1.2 |
#!/bin/bash |
2 |
|
|
# Build all locally maintained packages from CVS |
3 |
|
|
# Check whether anything is new and let us know if there is |
4 |
gordonr |
1.1 |
|
5 |
gordonr |
1.2 |
# Normally run as "buildrobot" |
6 |
|
|
# Requires CVS/SSH access to cvs.sourceforge.net:/cvsroot/smeserver |
7 |
gordonr |
1.1 |
|
8 |
slords |
1.14 |
umask 002 |
9 |
|
|
|
10 |
|
|
PATH=~/bin:$PATH |
11 |
gordonr |
1.4 |
export PATH |
12 |
|
|
|
13 |
slords |
1.14 |
check_package() |
14 |
|
|
{ |
15 |
|
|
for NVR in $(rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE}\n" --specfile $SPEC) |
16 |
|
|
do |
17 |
slords |
1.19 |
SRPM=/builds/rpms/SRPMS/$NVR*.src.rpm |
18 |
slords |
1.14 |
if [ -f $SRPM ] |
19 |
|
|
then |
20 |
|
|
echo "$SRPM already exists" |
21 |
|
|
return |
22 |
|
|
fi |
23 |
|
|
done |
24 |
|
|
|
25 |
|
|
case $package in |
26 |
|
|
openssl) |
27 |
|
|
build_package "--arch i386,i586,i686" |
28 |
|
|
;; |
29 |
slords |
1.15 |
kmod-*) |
30 |
slords |
1.14 |
build_package "--arch i586,i686" |
31 |
|
|
;; |
32 |
slords |
1.19 |
*-kmod) |
33 |
|
|
build_package "--arch i686" |
34 |
|
|
;; |
35 |
slords |
1.14 |
*) |
36 |
|
|
build_package |
37 |
|
|
;; |
38 |
|
|
esac |
39 |
|
|
} |
40 |
|
|
|
41 |
|
|
build_package() |
42 |
|
|
{ |
43 |
slords |
1.17 |
if LANG=en_US mzbuild $1 --specfile $SPEC >> $LOG 2>&1 |
44 |
slords |
1.14 |
then |
45 |
|
|
release_rpms *.rpm |
46 |
|
|
else |
47 |
|
|
echo "Build of $package failed - check $LOG" |
48 |
|
|
fi |
49 |
|
|
} |
50 |
gordonr |
1.1 |
|
51 |
slords |
1.21 |
for package in $(ls /mirrors/cvsroot/${2:-smeserver} | grep "^$1.*$") |
52 |
gordonr |
1.1 |
do |
53 |
gordonr |
1.2 |
case $package in |
54 |
slords |
1.16 |
CVSROOT|anaconda|booty|builds_bin|cdrom.image|devguide|isolinux) |
55 |
gordonr |
1.11 |
continue |
56 |
|
|
;; |
57 |
slords |
1.14 |
esac |
58 |
gordonr |
1.11 |
|
59 |
slords |
1.20 |
LOG=$HOME/work/$(hostname -s)/logs/$package.log |
60 |
slords |
1.14 |
> $LOG |
61 |
gordonr |
1.2 |
|
62 |
gordonr |
1.6 |
echo -n "Checking $package "; date |
63 |
slords |
1.14 |
(echo -n "Checking $package "; date) >> $LOG |
64 |
|
|
echo ========================================================== >> $LOG |
65 |
gordonr |
1.3 |
|
66 |
slords |
1.20 |
cd ~/work/$(hostname -s) |
67 |
|
|
rm -rf ~/work/$(hostname -s)/$package |
68 |
slords |
1.21 |
mzget --dir /mirrors/cvsroot/${2:-smeserver} $package >> $LOG |
69 |
gordonr |
1.2 |
|
70 |
slords |
1.20 |
cd ~/work/$(hostname -s)/$package |
71 |
gordonr |
1.4 |
|
72 |
slords |
1.14 |
SPEC=$(ls F/*.spec 2> /dev/null | tail -1) |
73 |
|
|
if [ -z "$SPEC" ] |
74 |
gordonr |
1.6 |
then |
75 |
slords |
1.14 |
echo "Not building $package (No SPEC file)" |
76 |
slords |
1.16 |
rm -f $LOG |
77 |
gordonr |
1.6 |
continue |
78 |
|
|
else |
79 |
slords |
1.16 |
TAGS=$(cvs status -v $SPEC | awk '/\(branch:/ && !/\(branch: 1\.1\.1\)/ { print $1 }' | sort -u) |
80 |
gordonr |
1.6 |
fi |
81 |
slords |
1.14 |
check_package |
82 |
gordonr |
1.4 |
|
83 |
slords |
1.14 |
for tag in $TAGS |
84 |
|
|
do |
85 |
|
|
echo >> $LOG |
86 |
|
|
|
87 |
|
|
echo -n "Checking $package ($tag) "; date |
88 |
|
|
(echo -n "Checking $package ($tag) "; date) >> $LOG |
89 |
|
|
echo ========================================================== >> $LOG |
90 |
slords |
1.20 |
cd ~/work/$(hostname -s) |
91 |
|
|
rm -rf ~/work/$(hostname -s)/$package |
92 |
slords |
1.21 |
mzget --dir /mirrors/cvsroot/${2:-smeserver} --tag $tag $package >> $LOG |
93 |
slords |
1.14 |
|
94 |
slords |
1.20 |
cd ~/work/$(hostname -s)/$package |
95 |
slords |
1.14 |
|
96 |
|
|
SPEC=$(ls F/*.spec 2> /dev/null | tail -1) |
97 |
|
|
if [ -z "$SPEC" ] |
98 |
|
|
then |
99 |
|
|
echo "Not building $package (No SPEC file)" |
100 |
|
|
continue |
101 |
|
|
fi |
102 |
|
|
check_package |
103 |
|
|
done |
104 |
gordonr |
1.4 |
done |