annotate package @ 192:8f4a9a37d4d9

delay autowhitelisting to avoid out of office reply bots
author carl
date Sun, 11 Nov 2007 12:49:25 -0800
parents c7fc218686f5
children fbcf2733fe79
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
1 #!/bin/bash
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
2
192
8f4a9a37d4d9 delay autowhitelisting to avoid out of office reply bots
carl
parents: 152
diff changeset
3 find . -name '*~' | while read a; do rm -f "$a"; done
8f4a9a37d4d9 delay autowhitelisting to avoid out of office reply bots
carl
parents: 152
diff changeset
4
148
9330b8d6a56b add documentation fixes, allow env_from target of inherit
carl
parents: 117
diff changeset
5 T=`grep AC_INIT configure.in | cut -d'(' -f2`
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
6 NAME=`echo $T | cut -d, -f1`
148
9330b8d6a56b add documentation fixes, allow env_from target of inherit
carl
parents: 117
diff changeset
7 VER=`echo $T | cut -d, -f2`
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
8 BALL=$NAME-$VER.tar.gz
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
9 web=/home/httpd/html/510sg/$NAME
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
10 distlog=/tmp/distcheck
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
11
117
aa07452e641b uribl patch from Jeff Evans <jeffe@tricab.com>
carl
parents: 113
diff changeset
12 mkdir -p $web
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
13 chown --recursive root:root *
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
14 make -f *cvs
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
15 ./configure >/dev/null
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
16 (cd xml; make; make distclean)
113
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
17 cp -a html/*html $web
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
18 make distcheck >$distlog 2>&1
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
19 if [ $? -eq 0 ]; then
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
20 if [ -f $BALL ]; then
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
21 # expand locally to see the tarball
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
22 rm -rf junk
113
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
23 mkdir junk
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
24 cd junk
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
25 tar xfz ../$BALL
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
26 cd $NAME-$VER
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
27 ./configure >/dev/null
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
28 make >/dev/null
112
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
29 ## make install >/dev/null
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
30 ## if [ -f /etc/rc.d/init.d/$NAME ]; then
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
31 ## /etc/rc.d/init.d/$NAME stop
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
32 ## fi
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
33 ## make chkconfig
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
34 ## if [ -f /etc/rc.d/init.d/$NAME ]; then
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
35 ## chkconfig $NAME on
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
36 ## /etc/rc.d/init.d/$NAME start
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
37 ## fi
113
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
38 cd ..
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
39 cd ..
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
40
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
41 # build rpm on target
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
42 target5=pmg2
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
43 scp $BALL $target5:/tmp
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
44 ssh $target5 "cd /tmp; rpmbuild -ta $BALL"
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
45
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
46 # build rpm on target
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
47 target4=host62
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
48 scp $BALL $target4:/tmp
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
49 ssh $target4 "cd /tmp; rpmbuild -ta $BALL"
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
50
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
51 # add packages to the web site
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
52 wp=$web/packages
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
53 wp4=$wp/centos4
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
54 wp5=$wp/centos5
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
55 mkdir -p $wp4 $wp5
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
56 rp=/usr/src/redhat
112
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
57 mv -f $BALL $wp
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
58 scp $target4:$rp/SRPMS/$NAME-$VER*rpm $wp
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
59 scp $target4:$rp/RPMS/i386/$NAME-$VER*rpm $wp4
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
60 scp $target5:$rp/RPMS/i386/$NAME-$VER*rpm $wp5
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
61 (cd $web; chown --recursive web:web *; ls -alR)
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
62 rpm -ql -p $wp4/$NAME-$VER*6.rpm
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
63 rpm -ql -p $wp5/$NAME-$VER*6.rpm
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
64 fi
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
65 else
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
66 tail -10 $distlog
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
67 fi
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
68 chown --recursive carl:carl *