208 lines
7.2 KiB
Ruby
208 lines
7.2 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.0.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/subversion/subversion-1.14.0.tar.bz2"
|
|
sha256 "6ba8e218f9f97a83a799e58a3c6da1221d034b18d9d8cbbcb6ec52ab11722102"
|
|
license "Apache-2.0"
|
|
revision 6
|
|
|
|
livecheck do
|
|
url :stable
|
|
end
|
|
|
|
bottle do
|
|
sha256 "1b9eb020913cf0e9ba84fdd6961733b60bb39c55e8e6b96d0190a51152ecde99" => :big_sur
|
|
sha256 "a077210ae884ac59170e51a4ff0566f9576f0a42f772effd4860b92e7ff5150e" => :catalina
|
|
sha256 "fbb5d261fae9924f357aecde6f7624712709bda2fd7403dc80f9e88fc4b017c0" => :mojave
|
|
sha256 "352b4a47df3cafc0171ba56f1a157ff375cab54ce10278abbcf98c1ca2408999" => :high_sierra
|
|
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, perl, sqlite and utf8proc for consistency
|
|
depends_on "gettext"
|
|
depends_on "lz4"
|
|
depends_on "openssl@1.1" # For Serf
|
|
depends_on "perl"
|
|
depends_on "sqlite"
|
|
depends_on "utf8proc"
|
|
|
|
uses_from_macos "expat"
|
|
uses_from_macos "krb5"
|
|
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"
|
|
end
|
|
|
|
archlib = Utils.safe_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 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
|
|
|
|
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"
|
|
system "perl", "-e", "use SVN::Client; new SVN::Client()"
|
|
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",
|