From 57a86034a3aabefc7fc0aa9cc999c0fe38145c83 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 11 Aug 2009 14:19:23 -0700 Subject: [PATCH] Support building from Subversion repositories Adds a new DownloadStrategy that checks files out from Subversion to the cache, then exports over to the temp folder for the build. To use checkout with the svn:// protocol or reimplement download_strategy and return SubversionDownloadStrategy. --- Library/Homebrew/formula.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 2b3d3d9961..80b2d6a282 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -72,6 +72,23 @@ private end end +class SubversionDownloadStrategy