Homebrew で Subversion をインストールする

以前の記事 で git-svn を Homebrew でインストールしたが、生の Subversion を触る機会が出てきたためこちらも Homebrew でインストールしてみる。

環境

  • macOS Monterey 12.6.3
  • Homebrew 4.2.2

インストール

brew install subversion

これだけ。brew install svn でも同じ実行結果が得られる。

実行確認

subversion ではなく svn コマンドで実行する。

% which svn
/usr/local/bin/svn

% svn --version
svn, version 1.14.3 (r1914484)
   compiled Dec 28 2023, 15:55:09 on x86_64-apple-darwin21.6.0

Copyright (C) 2023 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/

以下のリポジトリアクセス (RA) モジュールが利用できます:

* ra_svn : svn ネットワークプロトコルを使ってリポジトリにアクセスするモジュール。
  - Cyrus SASL 認証を併用
  - 'svn' スキームを操作します
* ra_local : ローカルディスク上のリポジトリにアクセスするモジュール。
  - 'file' スキームを操作します
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
  - using serf 1.3.10 (compiled with 1.3.10)
  - 'http' スキームを操作します
  - 'https' スキームを操作します

The following authentication credential caches are available:

* Mac OS X Keychain

コマンドが使えれば良いのであればここまででOK。