Following on from my previous posts about installing Subversion from source, here are some notes on how to do it using backported Debian packages.
Add the following lines to your sources.list file in /etc/apt:
Update your Apt sources list:
Uninstall any old Subversion packages:
Install Subversion with 1.3.2 as a specific version (this causes the backported version to override the stable version):
Check that the installed Subversion is the right one by using
Install the Apache2 Subversion modules:
Follow my instructions on Configuring Subversion (svn) on Linux (Debian Stable).
There you go!
Technorati Tags: Andrew Beacock, Subversion, Backport, Debian, Linux
Add the following lines to your sources.list file in /etc/apt:
# backports
deb http://www.backports.org/debian sarge-backports main contrib non-free
Update your Apt sources list:
apt-get update
Uninstall any old Subversion packages:
apt-get remove subversion
apt-get remove libsvn0
Install Subversion with 1.3.2 as a specific version (this causes the backported version to override the stable version):
apt-get install libsvn0=1.3.2-5~bpo1
apt-get install subversion=1.3.2-5~bpo1
Check that the installed Subversion is the right one by using
svn --version
you should get something like:svn, version 1.3.2 (r19776)
compiled Aug 12 2006, 12:05:49
...
Install the Apache2 Subversion modules:
apt-get install libapache2-svn=1.3.2-5~bpo1
Follow my instructions on Configuring Subversion (svn) on Linux (Debian Stable).
There you go!
Technorati Tags: Andrew Beacock, Subversion, Backport, Debian, Linux
Comments
thanks for this post, it really helps!
/etc/apt/preferences:
Package: trac libapache2-svn libsvn-core-perl libsvn-dev libsvn-perl libsvn-ruby1.8 libsvn0-dev libsvn-ruby libsvn0 python-subversion python2.3-subversion subversion-tools subversion
Pin: release a=sarge-backports
Pin-Priority: 999