subversion: remove unicode patch
Patch no longer applies. Closes Homebrew/homebrew#20609.
This commit is contained in:
parent
782afd6150
commit
187646d948
1 changed files with 0 additions and 18 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue