美文网首页
brew install subversion 1.7

brew install subversion 1.7

作者: 楠若寺 | 来源:发表于2018-09-17 10:55 被阅读0次

    由于公司开发使用的SVN,而Mac 带的svn是1.8的。
    工作目录管理时,只能通过第三方app进行,brew中搜索没有svn 1.7的,只有1.8。
    故自己进行了一些配置安装的svn1.7,现在可以使用terminal进行操作。

    步骤如下:

    • brew中添加suv1.7。


      image.png

      进入homebrew的git目录(这里存放的是brew下各种软件的配置文件)
      添加subversion@1.7.10.rb 文件,内容如下:

    require 'formula'
    
    class SubversionAT1710 < Formula
        homepage 'http://subversion.apache.org/'
        url 'http://archive.apache.org/dist/subversion/subversion-1.7.10.tar.bz2'
        sha256 'c1df222bec83d014d17785e2ceba6bc80962f64b280967de0285836d8d77a8e7'
        
        option :universal
        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
        
        depends_on "apr-util"
        depends_on "apr"
        
        # Always build against Homebrew versions instead of system versions for consistency.
        depends_on 'sqlite'
        depends_on 'serf'
        depends_on "python@2" => :optional
        
        # Building Ruby bindings requires libtool
        depends_on :libtool if build.include? 'ruby'
        
        # If building bindings, allow non-system interpreters
        env :userpaths if (build.include? 'perl') or (build.include? 'ruby')
        
        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
            end
            
            unless ps.empty?
                { :p0 => ps }
            end
        end
        
        # 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 if (build.include? 'perl') or (build.include? 'ruby')
    
    def apr_bin
        "/usr/bin"
    end
    
    def install
        if build.include? 'java'
            unless build.universal?
                opoo "A non-Universal Java build was requested."
                puts "To use Java bindings with various Java IDEs, you might need a universal build:"
                puts "  brew install subversion --universal --java"
            end
            
            unless (ENV["JAVA_HOME"] or "").empty?
                opoo "JAVA_HOME is set. Try unsetting it if JNI headers cannot be found."
            end
        end
        
        ENV.universal_binary if build.universal?
        
        serf_prefix = libexec/"serf"
        
        # 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-ssl",
        "--with-zlib=/usr",
        "--with-sqlite=#{Formula['sqlite'].opt_prefix}",
        "--with-serf=#{serf_prefix}",
        "--without-neon",
        "--disable-mod-activation",
        "--disable-nls",
        "--without-apache-libexecdir",
        "--without-berkeley-db"]
        
        args << "--enable-javahl" << "--without-jikes" if build.include? 'java'
        
        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
        
        if build.include? '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
        
        system "./configure", *args
        system "make"
        system "make install"
        bash_completion.install 'tools/client-side/bash_completion' => 'subversion'
        
        system "make tools"
        system "make install-tools"
        %w[
        svn-populate-node-origins-index
        svn-rep-sharing-stats
        svnauthz-validate
        svnmucc
        svnraisetreeconflict
        ].each do |prog|
            bin.install_symlink bin/"svn-tools"/prog
        end
        
        if build.with? "python@2"
            system "make", "swig-py"
            system "make", "install-swig-py"
            (lib/"python2.7/site-packages").install_symlink Dir["#{lib}/svn-python/*"]
        end
        
        if build.include? 'perl'
            # Remove hard-coded ppc target, add appropriate ones
            if build.universal?
                arches = "-arch x86_64 -arch i386"
                elsif MacOS.version == :leopard
                arches = "-arch i386"
                else
                arches = "-arch x86_64"
            end
            
            perl_core = Pathname.new(`perl -MConfig -e 'print $Config{archlib}'`)+'CORE'
            unless perl_core.exist?
                onoe "perl CORE directory does not exist in '#{perl_core}'"
            end
            
            inreplace "Makefile" do |s|
                s.change_make_var! "SWIG_PL_INCLUDES",
                "$(SWIG_INCLUDES) #{arches} -g -pipe -fno-common -DPERL_DARWIN -fno-strict-aliasing -I/usr/local/include -I#{perl_core}"
            end
            system "make swig-pl"
            system "make", "install-swig-pl", "DESTDIR=#{prefix}"
        end
        
        if build.include? 'java'
            system "make javahl"
            system "make install-javahl"
        end
        
        if build.include? '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:
            #{prefix}/Library/Perl
            EOS
        end
        
        if build.with? "ruby"
            s += "\n"
            s += <<~EOS
            You may need to add the Ruby bindings to your RUBYLIB from:
            #{HOMEBREW_PREFIX}/lib/ruby
            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__
    --- subversion/bindings/swig/perl/native/Makefile.PL.in~    2011-07-16 04:47:59.000000000 -0700
    +++ subversion/bindings/swig/perl/native/Makefile.PL.in 2012-06-27 17:45:57.000000000 -0700
    @@ -57,10 +57,13 @@
    
    chomp $apr_shlib_path_var;
    
    +my $config_ccflags = $Config{ccflags};
    +$config_ccflags =~ s/-arch\s+\S+//g; # remove any -arch arguments, since the ones we want will already be in $cflags
    +
    my %config = (
                  ABSTRACT => 'Perl bindings for Subversion',
                  DEFINE => $cppflags,
                  -    CCFLAGS => join(' ', $cflags, $Config{ccflags}),
                  +    CCFLAGS => join(' ', $cflags, $config_ccflags),
                  INC  => join(' ',$apr_cflags, $apu_cflags,
                               " -I$swig_srcdir/perl/libsvn_swig_perl",
    
    

    创建subverion@1.7.10.rb后,就可以直接执行 brew install subversion@1.7.10。
    等待成功后,就可以进行命令行操作啦~~

    image.png

    如有其它问题,请留言 !!!

    相关文章

      网友评论

          本文标题:brew install subversion 1.7

          本文链接:https://www.haomeiwen.com/subject/wodknftx.html