SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

【linux】debianでSubversion1.7以降を使いたい

問題

debianで apt-get install subversion したら、1.6系がインストールされました。

1.7以降が欲しいのですが。

ciel-debian-menu-logo

答え

自前でコンパイルできる場合、したい場合はそれでよいとして、

以下は、リポジトリを追加してパッケージ管理にお任せしてインストールする方法。

1、/etc/apt/sources.list 編集

環境とインストールしたいバージョンに応じて、以下の設定を追加する。

deb http://opensource.wandisco.com/debian/ squeeze svn17
deb http://opensource.wandisco.com/debian/ wheezy svn17
deb http://opensource.wandisco.com/debian/ wheezy svn18

2、GPG key の追加

GPG key をダウンロードして、追加。

wget http://opensource.wandisco.com/wandisco-debian.gpg
sudo apt-key add wandisco-debian.gpg

3、パッケージリスト更新

apt-get update

4、subversionインストール

apt-get install subversion

リポジトリを追加したことで、subversionをインストールすれば設定に応じたバージョンになっているようだ。

5、確認

$ svn --version
svn, version 1.7.14 (r1542130)
   compiled Nov 19 2013, 11:00:12

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/

The following repository access (RA) modules are available:

* ra_neon : Module for accessing a repository via WebDAV protocol using Neon.
  - handles 'http' scheme
  - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
  - with Cyrus SASL authentication
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - handles 'http' scheme
  - handles 'https' scheme

関連するメモ

コメント