annotate package @ 156:a220bfb9211f

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