annotate package @ 202:ae0585d64dd2

Added tag stable-6-0-16 for changeset 752d4315675c
author Carl Byington <carl@five-ten-sg.com>
date Sat, 02 Feb 2008 12:32:59 -0800
parents d1ef12ab18b6
children
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
199
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
5 # check for uncommitted changes
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
6 a=$(hg status)
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
7 if [ -n "$a" ]; then
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
8 hg status
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
9 echo "fix those first with 'hg commit'"
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
10 exit 0
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
11 fi
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
12
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
13 # check for changesets pending push to global repository
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
14 hg outgoing /usr/hg*/dnsbl | grep 'no changes found' >/dev/null
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
15 if [ $? -ne 0 ]; then
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
16 hg outgoing /usr/hg*/dnsbl
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
17 echo "fix those first with 'hg push /usr/hg*/dnsbl'"
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
18 exit 0
d1ef12ab18b6 check for uncommitted changes, and for pending push changesets
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
19 fi
198
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
20
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
21 # get a new clean copy from source control
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
22 orig=$(pwd)
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
23 pack=$orig/../dnsbl-package
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
24 [ -d "$pack" ] && rm -rf "$pack"
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
25 mkdir "$pack"
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
26 cd "$pack"
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
27 hg clone /usr/hg-repository/dnsbl
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
28 cd dnsbl
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
29
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
30 # build the dnsbl package
148
9330b8d6a56b add documentation fixes, allow env_from target of inherit
carl
parents: 117
diff changeset
31 T=`grep AC_INIT configure.in | cut -d'(' -f2`
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
32 NAME=`echo $T | cut -d, -f1`
148
9330b8d6a56b add documentation fixes, allow env_from target of inherit
carl
parents: 117
diff changeset
33 VER=`echo $T | cut -d, -f2`
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
34 BALL=$NAME-$VER.tar.gz
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
35 web=/home/httpd/html/510sg/$NAME
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
36 distlog=/tmp/distcheck
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
37
117
aa07452e641b uribl patch from Jeff Evans <jeffe@tricab.com>
carl
parents: 113
diff changeset
38 mkdir -p $web
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
39 chown --recursive root:root *
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
40 make -f *cvs
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
41 ./configure >/dev/null
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
42 (cd xml; make; make distclean)
113
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
43 cp -a html/*html $web
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
44 make distcheck >$distlog 2>&1
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
45 if [ $? -eq 0 ]; then
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
46 if [ -f $BALL ]; then
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
47 # expand locally to see the tarball
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
48 rm -rf junk
113
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
49 mkdir junk
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
50 cd junk
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
51 tar xfz ../$BALL
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
52 cd $NAME-$VER
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
53 ./configure >/dev/null
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
54 make >/dev/null
112
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
55 ## make install >/dev/null
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
56 ## if [ -f /etc/rc.d/init.d/$NAME ]; then
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
57 ## /etc/rc.d/init.d/$NAME stop
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
58 ## fi
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
59 ## make chkconfig
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
60 ## if [ -f /etc/rc.d/init.d/$NAME ]; then
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
61 ## chkconfig $NAME on
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
62 ## /etc/rc.d/init.d/$NAME start
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
63 ## fi
113
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
64 cd ..
a893afee4b80 move to autoconf/automake/docbook
carl
parents: 112
diff changeset
65 cd ..
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
66
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
67 # build rpm on target
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
68 target5=pmg2
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
69 scp $BALL $target5:/tmp
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
70 ssh $target5 "cd /tmp; rpmbuild -ta $BALL"
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
71
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
72 # build rpm on target
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
73 target4=host62
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
74 scp $BALL $target4:/tmp
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
75 ssh $target4 "cd /tmp; rpmbuild -ta $BALL"
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
76
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
77 # add packages to the web site
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
78 wp=$web/packages
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
79 wp4=$wp/centos4
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
80 wp5=$wp/centos5
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
81 mkdir -p $wp4 $wp5
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
82 rp=/usr/src/redhat
112
96b2eb7f25f5 move to autoconf/automake/docbook
carl
parents: 111
diff changeset
83 mv -f $BALL $wp
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
84 scp $target4:$rp/SRPMS/$NAME-$VER*rpm $wp
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
85 scp $target4:$rp/RPMS/i386/$NAME-$VER*rpm $wp4
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
86 scp $target5:$rp/RPMS/i386/$NAME-$VER*rpm $wp5
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
87 (cd $web; chown --recursive web:web *; ls -alR)
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
88 rpm -ql -p $wp4/$NAME-$VER*6.rpm
152
c7fc218686f5 gpl3, block mail to recipients that cannot reply
carl
parents: 148
diff changeset
89 rpm -ql -p $wp5/$NAME-$VER*6.rpm
107
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
90 fi
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
91 else
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
92 tail -10 $distlog
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
93 fi
eeaaecda4acc move to autoconf/automake/docbook
carl
parents:
diff changeset
94 chown --recursive carl:carl *
198
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
95
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
96 # throw away the packaging directory
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
97 cd "$pack/.."
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
98 rm -rf dnsbl-package
fbcf2733fe79 always rebuild from clean source control tip, rather than from working directory
Carl Byington <carl@five-ten-sg.com>
parents: 192
diff changeset
99 cd "$orig"