217 lines
7.8 KiB
Ruby
217 lines
7.8 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.lua?path=subversion/subversion-1.14.1.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/subversion/subversion-1.14.1.tar.bz2"
|
|
sha256 "2c5da93c255d2e5569fa91d92457fdb65396b0666fad4fd59b22e154d986e1a9"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "ca05380632bac6c53ae282050a0ce9a3034ffbb5719684f2d96cc43fbfe1e130"
|
|
sha256 big_sur: "b98befd5c5b05ab4381e055a967cb6df55a59174cca11ce6ff9cbe4a3bd35e59"
|
|
sha256 catalina: "3cfd3fc3886817d9accd3f118083b95e1c6832eee4f20fa1b73b28a2e2262600"
|
|
sha256 mojave: "5de933ae5c71c09e2aae3607dfc84a47c85a67532e2e35b1b09c06e27046e0ba"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/apache/subversion.git", branch: "trunk"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "gettext" => :build
|
|
end
|
|
|
|
# Do not build java bindings on ARM as openjdk is not available
|
|
depends_on "openjdk" => :build if Hardware::CPU.intel?
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@3.9" => :build
|
|
depends_on "scons" => :build # For Serf
|
|
depends_on "swig" => :build
|
|
depends_on "apr"
|
|
depends_on "apr-util"
|
|
|
|
# build against Homebrew versions of
|
|
# gettext, lz4, sqlite and utf8proc for consistency
|
|
depends_on "gettext"
|
|
depends_on "lz4"
|
|
depends_on "openssl@1.1" # For Serf
|
|
depends_on "sqlite"
|
|
depends_on "utf8proc"
|
|
|
|
uses_from_macos "expat"
|
|
uses_from_macos "krb5"
|
|
uses_from_macos "perl"
|
|
uses_from_macos "ruby"
|
|
uses_from_macos "zlib"
|
|
|
|
resource "py3c" do
|
|
url "https://github.com/encukou/py3c/archive/v1.1.tar.gz"
|
|
sha256 "c7ffc22bc92dded0ca859db53ef3a0b466f89a9f8aad29359c9fe4ff18ebdd20"
|
|
end
|
|
|
|
resource "serf" do
|
|
url "https://www.apache.org/dyn/closer.lua?path=serf/serf-1.3.9.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/serf/serf-1.3.9.tar.bz2"
|
|
sha256 "549c2d21c577a8a9c0450facb5cca809f26591f048e466552240947bdf7a87cc"
|
|
end
|
|
|
|
# Prevent "-arch ppc" from being pulled in from Perl's $Config{ccflags}
|
|
patch :DATA
|
|
|
|
def install
|
|
py3c_prefix = buildpath/"py3c"
|
|
serf_prefix = libexec/"serf"
|
|
|
|
resource("py3c").unpack py3c_prefix
|
|
resource("serf").stage do
|
|
inreplace "SConstruct" do |s|
|
|
s.gsub! "print 'Warning: Used unknown variables:', ', '.join(unknown.keys())",
|
|
"print('Warning: Used unknown variables:', ', '.join(unknown.keys()))"
|
|
s.gsub! "match = re.search('SERF_MAJOR_VERSION ([0-9]+).*'",
|
|
"match = re.search(b'SERF_MAJOR_VERSION ([0-9]+).*'"
|
|
s.gsub! "'SERF_MINOR_VERSION ([0-9]+).*'",
|
|
"b'SERF_MINOR_VERSION ([0-9]+).*'"
|
|
s.gsub! "'SERF_PATCH_VERSION ([0-9]+)'",
|
|
"b'SERF_PATCH_VERSION ([0-9]+)'"
|
|
end
|
|
# 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@1.1"].opt_prefix}
|
|
APR=#{Formula["apr"].opt_prefix}
|
|
APU=#{Formula["apr-util"].opt_prefix}
|
|
]
|
|
system "scons", *args
|
|
system "scons", "install"
|
|
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
|
|
--disable-mod-activation
|
|
--disable-plaintext-password-storage
|
|
--with-apr-util=#{Formula["apr-util"].opt_prefix}
|
|
--with-apr=#{Formula["apr"].opt_prefix}
|
|
--with-apxs=no
|
|
--with-ruby-sitedir=#{lib}/ruby
|
|
--with-py3c=#{py3c_prefix}
|
|
--with-serf=#{serf_prefix}
|
|
--with-sqlite=#{Formula["sqlite"].opt_prefix}
|
|
--with-swig=#{Formula["swig"].opt_prefix}
|
|
--with-zlib=#{MacOS.sdk_path_if_needed}/usr
|
|
--without-apache-libexecdir
|
|
--without-berkeley-db
|
|
--without-gpg-agent
|
|
--without-jikes
|
|
PYTHON=#{Formula["python@3.9"].opt_bin}/python3
|
|
RUBY=/usr/bin/ruby
|
|
]
|
|
|
|
# Do not build java bindings on ARM as openjdk is not available
|
|
args << "--with-jdk=#{Formula["openjdk"].opt_prefix}" << "--enable-javahl" if Hardware::CPU.intel?
|
|
|
|
inreplace "Makefile.in",
|
|
"toolsdir = @bindir@/svn-tools",
|
|
"toolsdir = @libexecdir@/svn-tools"
|
|
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make"
|
|
ENV.deparallelize { 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/"python3.9/site-packages").install_symlink Dir["#{lib}/svn-python/*"]
|
|
|
|
if Hardware::CPU.intel?
|
|
# Java and Perl support don't build correctly in parallel:
|
|
# https://github.com/Homebrew/homebrew/issues/20415
|
|
ENV.deparallelize
|
|
system "make", "javahl"
|
|
system "make", "install-javahl"
|
|
|
|
perl_archlib = Utils.safe_popen_read("perl", "-MConfig", "-e", "print $Config{archlib}")
|
|
perl_core = Pathname.new(perl_archlib)/"CORE"
|
|
perl_extern_h = perl_core/"EXTERN.h"
|
|
|
|
unless perl_extern_h.exist?
|
|
# No EXTERN.h, maybe it's system perl
|
|
perl_version = Utils.safe_popen_read("perl", "--version")[/v(\d+\.\d+)(?:\.\d+)?/, 1]
|
|
perl_core = MacOS.sdk_path/"System/Library/Perl"/perl_version/"darwin-thread-multi-2level/CORE"
|
|
perl_extern_h = perl_core/"EXTERN.h"
|
|
end
|
|
|
|
onoe "'#{perl_extern_h}' does not exist" unless perl_extern_h.exist?
|
|
|
|
inreplace "Makefile" do |s|
|
|
s.change_make_var! "SWIG_PL_INCLUDES",
|
|
"$(SWIG_INCLUDES) -arch x86_64 -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
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
svntools have been installed to:
|
|
#{opt_libexec}
|
|
|
|
The perl bindings are located in various subdirectories of:
|
|
#{opt_lib}/perl5
|
|
|
|
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
|
|
|
|
test do
|
|
system "#{bin}/svnadmin", "create", "test"
|
|
system "#{bin}/svnadmin", "verify", "test"
|
|
|
|
if Hardware::CPU.intel?
|
|
perl_version = Utils.safe_popen_read("/usr/bin/perl", "--version")[/v(\d+\.\d+(?:\.\d+)?)/, 1]
|
|
ENV["PERL5LIB"] = "#{lib}/perl5/site_perl/#{perl_version}/darwin-thread-multi-2level"
|
|
system "/usr/bin/perl", "-e", "use SVN::Client; new SVN::Client()"
|
|
end
|
|
end
|
|
end
|
|
|
|
__END__
|
|
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",
|