forked from oetiker/rrdtool-1.x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rrdtool-1.2-release
executable file
·37 lines (36 loc) · 1.55 KB
/
rrdtool-1.2-release
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
set -e
VERSION=`perl -n -e 'm/\QAC_INIT([rrdtool],[\E(.+?)\Q])\E/ && print $1' configure.ac`
PERLVERS=`perl -n -e 'm/NUMVERS=(\d+\.\d+)/ && print $1' configure.ac`
set -x
perl -i -p -e 's/^\$VERSION.+/\$VERSION='$PERLVERS';/' bindings/perl-*/*.pm
perl -i -p -e 's/RRDtool 1\S+/RRDtool '$VERSION'/ && s/Copyright.+?Oetiker.+\d{4}/Copyright by Tobi Oetiker, 1997-2007/' src/*.h src/*.c
perl -i -p -e 's/^Version:.+/Version: '$VERSION'/' rrdtool.spec
perl -i -p -e 's/rrdtool-[\.\d]+\d(pre\d+)?(rc\d+)?/rrdtool-'$VERSION'/g' doc/rrdbuild.pod
svn diff
echo "Tagging and releasing rrdtool $VERSION ($PERLVERS). Press any Key to continue."
read somekey
svn commit -m "prepare for the release of rrdtool-$VERSION"
mkdir /tmp/rrdtool-$$
OPWD=`pwd`
cd /tmp/rrdtool-$$
svn checkout svn://svn.oetiker.ch/rrdtool/branches/1.2/program .
svn log --stop-on-copy --xml --verbose svn://svn.oetiker.ch/rrdtool/branches/1.2/program | \
xsltproc --stringparam strip-prefix branches/1.2/program $OPWD/svn2cl.xsl - >CHANGES
sh MakeMakefile
PKG_CONFIG_PATH=/usr/pack/rrdtool-1.2svn-to/i686-debian-linux3.1/lib/pkgconfig/
export PKG_CONFIG_PATH
./configure
make dist
# do a test build
tar zxvf rrdtool*.tar.gz
cd rrdtool-$VERSION
./configure
make
src/rrdtool
cd ..
scp CHANGES rrdtool*.tar.gz oposs@james:public_html/rrdtool/pub/
ssh oposs@james "cd public_html/rrdtool/pub/;rm rrdtool.tar.gz;ln -s rrdtool-$VERSION.tar.gz rrdtool.tar.gz"
cd ..
rm -rf rrdtool-$$
svn copy -m "tagging version $VERSION" svn://svn.oetiker.ch/rrdtool/branches/1.2/program svn://svn.oetiker.ch/rrdtool/tags/$VERSION