Installing the svn and test versions of Freevo 1

The idea is that you can install the subversion of Freevo release 1 branch without breaking your current installation. Installing the subversion helps development by reporting bugs against the latest version no point in reporting fixed bugs and it helps test the next release.

cd kaa; python setup.py install

svn co svn://svn.freevo.org/kaa/trunk kaa
cd kaa
python setup.py install --prefix=~/freevo-test

svn co svn://svn.freevo.org/freevo/branches/rel-1 freevo-1.x
cd freevo-1.x

svn co svn://svn.freevo.org/freevo/branches/rel-1-9 freevo-1.9
cd freevo-1.9

./autogen.sh nodocs

python setup.py install --prefix=~/freevo-test

cd ~/freevo-test

cp -pv /etc/freevo/* ~/freevo-test

version=$(python -V 2>&1 | sed -n 's/Python \(.\..\).*/\1/p')

export PYTHONPATH=~/freevo-test/lib/python${version}/site-packages

./bin/freevo convert_config ~/freevo-test/local_conf.py

./bin/freevo

Updating

Easy as 123...

cd /to/svn/source/directory
svn update
rm -rf build/*
./autogen.sh nodocs
python setup.py install --prefix=~/freevo-test

SourceSVNInstallation (last edited 2010-01-12 21:48:00 by JohnMolohan)