168 lines
5.8 KiB
Ruby
168 lines
5.8 KiB
Ruby
class SubversionAT18 < Formula
|
|
desc "Version control system"
|
|
homepage "https://subversion.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=subversion/subversion-1.8.19.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/subversion/subversion-1.8.19.tar.bz2"
|
|
sha256 "56e869b0db59519867f7077849c9c0962c599974f1412ea235eab7f98c20e6be"
|
|
|
|
bottle do
|
|
sha256 "8f940fc03a334713836d6ed93f748fe573fc51dc5468dd575e14d7a614a4fb0a" => :mojave
|
|
sha256 "3a4e79dead2f4d209e06fe631903ed870610ddfc9ac091ec7d734f5025d0642e" => :high_sierra
|
|
sha256 "a3d73ecc8eddacfe764f5a83d5215220b7d3100d694c17ac3bed68089984e863" => :sierra
|
|
sha256 "0a39c347943ac7f025af06571378987e5d69805ab45cafd38215b5929a5a3722" => :el_capitan
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "scons" => :build # For Serf
|
|
depends_on "apr"
|
|
depends_on "apr-util"
|
|
depends_on "openssl" # For Serf
|
|
depends_on "sqlite" # build against Homebrew version for consistency
|
|
|
|
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
|
|
|
|
def install
|
|
inreplace "Makefile.in",
|
|
"@APXS@ -i -S LIBEXECDIR=\"$(APACHE_LIBEXECDIR)\"",
|
|
"@APXS@ -i -S LIBEXECDIR=\"#{libexec.to_s.sub("@", "\\@")}\""
|
|
|
|
serf_prefix = libexec/"serf"
|
|
|
|
resource("serf").stage do
|
|
# SConstruct merges in gssapi linkflags using scons's MergeFlags,
|
|
# but that discards duplicate values - including the duplicate
|
|
# values we want, like multiple -arch values for a universal build.
|
|
# Passing 0 as the `unique` kwarg turns this behaviour off.
|
|
inreplace "SConstruct", "unique=1", "unique=0"
|
|
|
|
# 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}]
|
|
|
|
if MacOS.version >= :sierra || !MacOS::CLT.installed?
|
|
args << "APR=#{Formula["apr"].opt_prefix}"
|
|
args << "APU=#{Formula["apr-util"].opt_prefix}"
|
|
end
|
|
|
|
system "scons", *args
|
|
system "scons", "install"
|
|
end
|
|
|
|
if build.include? "unicode-path"
|
|
raise <<~EOS
|
|
The --unicode-path patch is not supported on Subversion 1.8.
|
|
|
|
Upgrading from a 1.7 version built with this patch is not supported.
|
|
|
|
You should stay on 1.7, install 1.7 from homebrew-versions, or
|
|
brew rm subversion && brew install subversion
|
|
to build a new version of 1.8 without this patch.
|
|
EOS
|
|
end
|
|
|
|
# Use existing system zlib
|
|
# Use dep-provided other libraries
|
|
# Don't mess with Apache modules (since we're not sudo)
|
|
args = ["--disable-debug",
|
|
"--prefix=#{prefix}",
|
|
"--with-zlib=/usr",
|
|
"--with-sqlite=#{Formula["sqlite"].opt_prefix}",
|
|
"--with-serf=#{serf_prefix}",
|
|
"--disable-mod-activation",
|
|
"--disable-nls",
|
|
"--without-apache-libexecdir",
|
|
"--without-berkeley-db"]
|
|
|
|
if MacOS::CLT.installed? && MacOS.version < :sierra
|
|
args << "--with-apr=/usr"
|
|
args << "--with-apr-util=/usr"
|
|
else
|
|
args << "--with-apr=#{Formula["apr"].opt_prefix}"
|
|
args << "--with-apr-util=#{Formula["apr-util"].opt_prefix}"
|
|
args << "--with-apxs=no"
|
|
end
|
|
|
|
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"
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
svntools have been installed to:
|
|
#{opt_libexec}
|
|
EOS
|
|
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
|
|
@@ -25366,6 +25366,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\/[^ ]* //'`
|
|
|
|
|
|
|
|
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')
|