Monday, April 29, 2024
33
rated 0 times [  33] [ 0]  / answers: 1 / hits: 24137  / 3 Years ago, sat, july 31, 2021, 11:21:14

The Subversion 1.8 was released two weeks ago and is already available on the Windows platform via the Tortoise SVN client.



I would like to get it running on my Ubuntu 12.04 box.



I've already checked the Subversion team ppa, however, the latest to be found is 1.7.9.



Does anybody know of a ppa or source that I can use in order to get it running?


More From » software-installation

 Answers
1

As described in this previous answer (thanks Fernando!), the "installer" shell script which WANDisco provide is actually just installing a standard APT repository. Although they ask for your details before you can download the script, there seem to be no terms and conditions attached to using their repository without doing so.



The below should add the repository on 12.04 Precise (the repository doesn't contain a Source directory, which the add-apt-repository command assumes it will, so I have used a slightly different method).



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


To confirm that the new subversion package has been detected, run:



apt-cache show subversion | grep '^Version:'


If the 1.8 package is listed, you should then be able to install as normal:



sudo apt-get install subversion

[#30591] Sunday, August 1, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ntlesslving

Total Points: 123
Total Questions: 109
Total Answers: 113

Location: South Korea
Member since Fri, Sep 11, 2020
4 Years ago
;