subversion: remove unicode patch

Patch no longer applies.

Closes Homebrew/homebrew#20609.
This commit is contained in:
Adam Vandenberg 2013-06-19 12:15:11 -07:00
parent 782afd6150
commit 187646d948

View file

@ -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 support for OS X UTF-8-MAC filename'
depends_on 'pkg-config' => :build
@ -27,11 +26,6 @@ class Subversion < Formula
def patches
ps = []
# Patch for Subversion handling of OS X UTF-8-MAC filename.
if build.include? 'unicode-path'
ps << "https://raw.github.com/gist/3044094/1648c28f6133bcbb68b76b42669b0dc237c02dba/patch-path.c.diff"
end
# Patch to prevent '-arch ppc' from being pulled in from Perl's $Config{ccflags}
if build.include? 'perl'
ps << DATA
@ -186,18 +180,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
http://svn.collab.net/repos/svn/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