|
KUbuntu / Ubuntu 14.04 (downgrade) installed SVN 1.7
Step 1: source to increase source.list
sudo add-apt-repository "deb http://extras.ubuntu.com/ubuntu saucy main"
sudo add-apt-repository "deb http://de.archive.ubuntu.com/ubuntu/ saucy main universe restricted multiverse"
Step 2: Remove svn 1.8 package
sudo apt-get remove subversion libsvn1
Step 3: Update Source
sudo apt-get update
Step 4: Install svn 1.7
sudo apt-get install subversion = 1.7.9-1 + nmu6ubuntu3 libsvn1 = 1.7.9-1 + nmu6ubuntu3 subversion-tools = 1.7.9-1 + nmu6ubuntu3
Step 5: Lock SVN to 1.7 to prevent automatic upgrades
echo subversion hold | sudo dpkg --set-selections
echo libsvn1 hold | sudo dpkg --set-selections
echo libserf1 hold | sudo dpkg --set-selections
Step 6: Remove Step 1 increase in a row from the source sources.list
sudo gedit /etc/apt/sources.list
Remove: deb http://extras.ubuntu.com/ubuntu saucy main
Remove: deb http://de.archive.ubuntu.com/ubuntu/ saucy main universe restricted multiverse
Step 7: Update Source
sudo apt-get update
Step 8: Check svn version
svn --version
~ $ Svn --version
svn, version 1.7.9 (r1462340)
Compiled on Oct 15 2013,12: 40: 34
Copyright (C) 2013 The Apache Software Foundation.
This software consists of contributions made by many people; see the NOTICE
file for more information.
Subversion is open source software, see http://subversion.apache.org/
Use the following repository access modules:
* Ra_neon: using neon accessing a repository via WebDAV protocol modules.
- Processing "http" scheme
- Processing "https" scheme
* Ra_svn: using the svn network protocol for accessing a repository module. - Using Cyrus SASL authentication
- Processing "svn" program
* Ra_local: local disk access repository module.
- Processing "file" scheme
* Ra_serf: Use serf accessing a repository via WebDAV protocol modules.
- Processing "http" scheme
- Processing "https" scheme |
|
|
|