You asked Ondrej to include Subversion in your PPA start panel. But I could not install the libapache2-svn package after adding Ondrej PPA.
Somehow the compilation instructions did not work for me, so here is an alternative way to make it work.
Link: ( https://askubuntu.com/questions/312568/where-can-i-find-a-subversion-1-8-binary )
WANDisco has Subversion 1.8 for Ubuntu, and then:
sudo sh -c 'echo "# WANdisco Open Source Repo" >> /etc/apt/sources.list.d/WANdisco.list' sudo sh -c 'echo "deb http://opensource.wandisco.com/ubuntu precise svn18" >> /etc/apt/sources.list.d/WANdisco.list' wget -q http://opensource.wandisco.com/wandisco-debian.gpg -O- | sudo apt-key add - sudo apt-get update
Thereafter:
apt-cache show subversion | grep '^Version:'
And then you should be good to install normally:
sudo apt-get install subversion libapache2-svn
source share