aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorClemens Gruber2013-07-03 01:35:26 +0200
committerAdam Vandenberg2013-07-03 10:16:18 -0700
commitb2b1cc45c1f4e4a7d529933b26e89e9b0507d16c (patch)
tree8562ce783288c9e2b289aba38a95d70ceea2697b /Library
parentbf5f1cafe859186c2f96339c66f63d81f660c579 (diff)
downloadhomebrew-b2b1cc45c1f4e4a7d529933b26e89e9b0507d16c.tar.bz2
subversion: remove patch
Closes #20976. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/subversion.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb
index e5440f608..4f0b3b378 100644
--- a/Library/Formula/subversion.rb
+++ b/Library/Formula/subversion.rb
@@ -9,7 +9,6 @@ class Subversion < Formula
option 'java', 'Build Java bindings'
option 'perl', 'Build Perl bindings'
option 'ruby', 'Build Ruby bindings'
- option 'unicode-path', 'Include experimental support for UTF-8-MAC filenames'
depends_on 'pkg-config' => :build
@@ -32,12 +31,6 @@ class Subversion < Formula
ps << DATA
end
- # Experimental patch to support UTF-8-MAC filenames
- # http://subversion.tigris.org/issues/show_bug.cgi?id=2464
- if build.include? 'unicode-path'
- ps << "https://gist.github.com/clemensg/5835253/raw/cd719fa206e92519911ad0ab97fdc3822b252429/svn_status_utf8_fix.diff"
- end
-
unless ps.empty?
{ :p0 => ps }
end
@@ -199,18 +192,6 @@ class Subversion < Formula
EOS
end
- if build.include? 'unicode-path'
- s += <<-EOS.undent
- This unicode-path version implements a hack to deal with composed/decomposed
- unicode handling on Mac OS X which is different from Linux and Windows.
- It is an implementation of solution 1 from
- https://svn.apache.org/repos/asf/subversion/trunk/notes/unicode-composition-for-filenames
- which _WILL_ break some setups. Please be sure you understand what you
- are asking for when you install this version.
-
- EOS
- end
-
return s.empty? ? nil : s
end
end