256 lines
8.3 KiB
Ruby
256 lines
8.3 KiB
Ruby
class Subversion < Formula
|
|
desc "Version control system designed to be a better CVS"
|
|
homepage "https://subversion.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=subversion/subversion-1.9.7.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/subversion/subversion-1.9.7.tar.bz2"
|
|
sha256 "c3b118333ce12e501d509e66bb0a47bcc34d053990acab45559431ac3e491623"
|
|
revision 3
|
|
|
|
bottle do
|
|
sha256 "7482d281e4e0ff5b10377a576f3e97ed867795645291308d35adf51747ff2162" => :high_sierra
|
|
sha256 "a181531a3a3ad04d429b7aead29fec814c6e042482ea35abc581cc9e4571a25a" => :sierra
|
|
sha256 "6cb9acb883f5d7045324846bab0d51315da6fbb462b9ef664e0c9d0c9b58ef8d" => :el_capitan
|
|
end
|
|
|
|
deprecated_option "java" => "with-java"
|
|
deprecated_option "perl" => "with-perl"
|
|
deprecated_option "ruby" => "with-ruby"
|
|
|
|
option "with-java", "Build Java bindings"
|
|
option "without-ruby", "Build without Ruby bindings"
|
|
option "without-perl", "Build without Perl bindings"
|
|
option "with-gpg-agent", "Build with support for GPG Agent"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "swig" => :build
|
|
depends_on "apr-util"
|
|
depends_on "apr"
|
|
|
|
# Always build against Homebrew versions instead of system versions for consistency.
|
|
depends_on "sqlite"
|
|
depends_on "perl" => :recommended
|
|
|
|
# For Serf
|
|
depends_on "scons" => :build
|
|
depends_on "openssl"
|
|
|
|
# Other optional dependencies
|
|
depends_on "gpg-agent" => :optional
|
|
depends_on "gettext" => :optional
|
|
depends_on :java => :optional
|
|
|
|
resource "serf" do
|
|
url "https://www.apache.org/dyn/closer.cgi?path=serf/serf-1.3.9.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/serf/serf-1.3.9.tar.bz2"
|
|
sha256 "549c2d21c577a8a9c0450facb5cca809f26591f048e466552240947bdf7a87cc"
|
|
end
|
|
|
|
# Fix #23993 by stripping flags swig can't handle from SWIG_CPPFLAGS
|
|
# Prevent "-arch ppc" from being pulled in from Perl's $Config{ccflags}
|
|
# Prevent linking into a Python Framework
|
|
patch :DATA
|
|
|
|
if build.with?("perl") || build.with?("ruby")
|
|
# When building Perl or Ruby bindings, need to use a compiler that
|
|
# recognizes GCC-style switches, since that's what the system languages
|
|
# were compiled against.
|
|
fails_with :clang do
|
|
build 318
|
|
cause "core.c:1: error: bad value (native) for -march= switch"
|
|
end
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_path "PATH", "/System/Library/Frameworks/Python.framework/Versions/2.7/bin"
|
|
|
|
serf_prefix = libexec/"serf"
|
|
|
|
resource("serf").stage do
|
|
# scons ignores our compiler and flags unless explicitly passed
|
|
args = %W[
|
|
PREFIX=#{serf_prefix} GSSAPI=/usr CC=#{ENV.cc}
|
|
CFLAGS=#{ENV.cflags} LINKFLAGS=#{ENV.ldflags}
|
|
OPENSSL=#{Formula["openssl"].opt_prefix}
|
|
APR=#{Formula["apr"].opt_prefix}
|
|
APU=#{Formula["apr-util"].opt_prefix}
|
|
]
|
|
scons(*args)
|
|
scons "install"
|
|
end
|
|
|
|
if build.with? "java"
|
|
# Java support doesn't build correctly in parallel:
|
|
# https://github.com/Homebrew/homebrew/issues/20415
|
|
ENV.deparallelize
|
|
end
|
|
|
|
# Use existing system zlib
|
|
# Use dep-provided other libraries
|
|
# Don't mess with Apache modules (since we're not sudo)
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--disable-debug
|
|
--enable-optimize
|
|
--with-zlib=/usr
|
|
--with-sqlite=#{Formula["sqlite"].opt_prefix}
|
|
--with-apr=#{Formula["apr"].opt_prefix}
|
|
--with-apr-util=#{Formula["apr-util"].opt_prefix}
|
|
--with-apxs=no
|
|
--with-serf=#{serf_prefix}
|
|
--disable-mod-activation
|
|
--without-apache-libexecdir
|
|
--without-berkeley-db
|
|
]
|
|
|
|
args << "--enable-javahl" << "--without-jikes" if build.with? "java"
|
|
args << "--without-gpg-agent" if build.without? "gpg-agent"
|
|
args << "--disable-nls" if build.without? "gettext"
|
|
|
|
if build.with? "ruby"
|
|
args << "--with-ruby-sitedir=#{lib}/ruby"
|
|
# Peg to system Ruby
|
|
args << "RUBY=/usr/bin/ruby"
|
|
end
|
|
|
|
# The system Python is built with llvm-gcc, so we override this
|
|
# variable to prevent failures due to incompatible CFLAGS
|
|
ENV["ac_cv_python_compile"] = ENV.cc
|
|
|
|
inreplace "Makefile.in",
|
|
"toolsdir = @bindir@/svn-tools",
|
|
"toolsdir = @libexecdir@/svn-tools"
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
bash_completion.install "tools/client-side/bash_completion" => "subversion"
|
|
|
|
system "make", "tools"
|
|
system "make", "install-tools"
|
|
|
|
system "make", "swig-py"
|
|
system "make", "install-swig-py"
|
|
(lib/"python2.7/site-packages").install_symlink Dir["#{lib}/svn-python/*"]
|
|
|
|
if build.with? "perl"
|
|
# In theory SWIG can be built in parallel, in practice...
|
|
ENV.deparallelize
|
|
|
|
archlib = Utils.popen_read("perl -MConfig -e 'print $Config{archlib}'")
|
|
perl_core = Pathname.new(archlib)/"CORE"
|
|
onoe "'#{perl_core}' does not exist" unless perl_core.exist?
|
|
|
|
inreplace "Makefile" do |s|
|
|
s.change_make_var! "SWIG_PL_INCLUDES",
|
|
"$(SWIG_INCLUDES) -arch #{MacOS.preferred_arch} -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I#{HOMEBREW_PREFIX}/include -I#{perl_core}"
|
|
end
|
|
system "make", "swig-pl"
|
|
system "make", "install-swig-pl"
|
|
|
|
# This is only created when building against system Perl, but it isn't
|
|
# purged by Homebrew's post-install cleaner because that doesn't check
|
|
# "Library" directories. It is however pointless to keep around as it
|
|
# only contains the perllocal.pod installation file.
|
|
rm_rf prefix/"Library/Perl"
|
|
end
|
|
|
|
if build.with? "java"
|
|
system "make", "javahl"
|
|
system "make", "install-javahl"
|
|
end
|
|
|
|
if build.with? "ruby"
|
|
# Peg to system Ruby
|
|
system "make", "swig-rb", "EXTRA_SWIG_LDFLAGS=-L/usr/lib"
|
|
system "make", "install-swig-rb"
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
s = <<~EOS
|
|
svntools have been installed to:
|
|
#{opt_libexec}
|
|
EOS
|
|
|
|
if build.with? "perl"
|
|
s += "\n"
|
|
s += <<~EOS
|
|
The perl bindings are located in various subdirectories of:
|
|
#{opt_lib}/perl5
|
|
EOS
|
|
end
|
|
|
|
if build.with? "ruby"
|
|
s += "\n"
|
|
s += <<~EOS
|
|
If you wish to use the Ruby bindings you may need to add:
|
|
#{HOMEBREW_PREFIX}/lib/ruby
|
|
to your RUBYLIB.
|
|
EOS
|
|
end
|
|
|
|
if build.with? "java"
|
|
s += "\n"
|
|
s += <<~EOS
|
|
You may need to link the Java bindings into the Java Extensions folder:
|
|
sudo mkdir -p /Library/Java/Extensions
|
|
sudo ln -s #{HOMEBREW_PREFIX}/lib/libsvnjavahl-1.dylib /Library/Java/Extensions/libsvnjavahl-1.dylib
|
|
EOS
|
|
end
|
|
|
|
s
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/svnadmin", "create", "test"
|
|
system "#{bin}/svnadmin", "verify", "test"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/configure b/configure
|
|
index 445251b..6ff4332 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -26153,6 +26153,8 @@ fi
|
|
SWIG_CPPFLAGS="$CPPFLAGS"
|
|
|
|
SWIG_CPPFLAGS=`echo "$SWIG_CPPFLAGS" | $SED -e 's/-no-cpp-precomp //'`
|
|
+ SWIG_CPPFLAGS=`echo "$SWIG_CPPFLAGS" | $SED -e 's/-F\/[^ ]* //'`
|
|
+ SWIG_CPPFLAGS=`echo "$SWIG_CPPFLAGS" | $SED -e 's/-isystem\/[^ ]* //'`
|
|
|
|
|
|
SWIG_CPPFLAGS=`echo "$SWIG_CPPFLAGS" | $SED -e 's/-Wdate-time //'`
|
|
diff --git a/subversion/bindings/swig/perl/native/Makefile.PL.in b/subversion/bindings/swig/perl/native/Makefile.PL.in
|
|
index a60430b..bd9b017 100644
|
|
--- a/subversion/bindings/swig/perl/native/Makefile.PL.in
|
|
+++ b/subversion/bindings/swig/perl/native/Makefile.PL.in
|
|
@@ -76,10 +76,13 @@ my $apr_ldflags = '@SVN_APR_LIBS@'
|
|
|
|
chomp $apr_shlib_path_var;
|
|
|
|
+my $config_ccflags = $Config{ccflags};
|
|
+$config_ccflags =~ s/-arch\s+\S+//g;
|
|
+
|
|
my %config = (
|
|
ABSTRACT => 'Perl bindings for Subversion',
|
|
DEFINE => $cppflags,
|
|
- CCFLAGS => join(' ', $cflags, $Config{ccflags}),
|
|
+ CCFLAGS => join(' ', $cflags, $config_ccflags),
|
|
INC => join(' ', $includes, $cppflags,
|
|
" -I$swig_srcdir/perl/libsvn_swig_perl",
|
|
" -I$svnlib_srcdir/include",
|
|
|
|
diff --git a/build/get-py-info.py b/build/get-py-info.py
|
|
index 29a6c0a..dd1a5a8 100644
|
|
--- a/build/get-py-info.py
|
|
+++ b/build/get-py-info.py
|
|
@@ -83,7 +83,7 @@ def link_options():
|
|
options = sysconfig.get_config_var('LDSHARED').split()
|
|
fwdir = sysconfig.get_config_var('PYTHONFRAMEWORKDIR')
|
|
|
|
- if fwdir and fwdir != "no-framework":
|
|
+ if fwdir and fwdir != "no-framework" and sys.platform != 'darwin':
|
|
|
|
# Setup the framework prefix
|
|
fwprefix = sysconfig.get_config_var('PYTHONFRAMEWORKPREFIX')
|