homebrew-core/Formula/git-svn.rb

81 lines
3.0 KiB
Ruby

class GitSvn < Formula
desc "Bidirectional operation between a Subversion repository and Git"
homepage "https://git-scm.com"
url "https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.38.1.tar.xz"
sha256 "97ddf8ea58a2b9e0fbc2508e245028ca75911bd38d1551616b148c1aa5740ad9"
license "GPL-2.0-only"
head "https://github.com/git/git.git", branch: "master"
livecheck do
formula "git"
end
bottle do
sha256 cellar: :any_skip_relocation, arm64_ventura: "a1c011644d56faa31766c2767ce7420ac3ada470b8c577601fb8848dd7945a75"
sha256 cellar: :any_skip_relocation, arm64_monterey: "a1c011644d56faa31766c2767ce7420ac3ada470b8c577601fb8848dd7945a75"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "e05061290ca9a83e572cd7fd36cd4a0654dfd3ada8b5b9613eb440e9615cb1f1"
sha256 cellar: :any_skip_relocation, ventura: "a1c011644d56faa31766c2767ce7420ac3ada470b8c577601fb8848dd7945a75"
sha256 cellar: :any_skip_relocation, monterey: "a1c011644d56faa31766c2767ce7420ac3ada470b8c577601fb8848dd7945a75"
sha256 cellar: :any_skip_relocation, big_sur: "e05061290ca9a83e572cd7fd36cd4a0654dfd3ada8b5b9613eb440e9615cb1f1"
sha256 cellar: :any_skip_relocation, catalina: "8f4b20b71ec69f778a5438bd522254bd7851693d2d351b0ae0be2a3167def325"
sha256 cellar: :any_skip_relocation, x86_64_linux: "bef8c5561acc75fc52710ca3929289d56b2651c28ace86def4c2c5a12745b1da"
end
depends_on "git"
depends_on "subversion"
uses_from_macos "perl"
def install
perl = DevelopmentTools.locate("perl")
perl_version, perl_short_version = Utils.safe_popen_read(perl, "-e", "print $^V")
.match(/v((\d+\.\d+)(?:\.\d+)?)/).captures
ENV["PERL_PATH"] = perl
subversion = Formula["subversion"]
os_tag = OS.mac? ? "darwin-thread-multi-2level" : "x86_64-linux-thread-multi"
ENV["PERLLIB_EXTRA"] = subversion.opt_lib/"perl5/site_perl"/perl_version/os_tag
if OS.mac?
ENV["PERLLIB_EXTRA"] += ":" + %W[
#{MacOS.active_developer_dir}
/Library/Developer/CommandLineTools
/Applications/Xcode.app/Contents/Developer
].uniq.map do |p|
"#{p}/Library/Perl/#{perl_short_version}/darwin-thread-multi-2level"
end.join(":")
end
args = %W[
prefix=#{prefix}
perllibdir=#{Formula["git"].opt_share}/perl5
SCRIPT_PERL=git-svn.perl
]
mkdir libexec/"git-core"
system "make", "install-perl-script", *args
bin.install_symlink libexec/"git-core/git-svn"
end
test do
system "svnadmin", "create", "repo"
url = "file://#{testpath}/repo"
text = "I am the text."
log = "Initial commit"
system "svn", "checkout", url, "svn-work"
(testpath/"svn-work").cd do |current|
(current/"text").write text
system "svn", "add", "text"
system "svn", "commit", "-m", log
end
system "git", "svn", "clone", url, "git-work"
(testpath/"git-work").cd do |current|
assert_equal text, (current/"text").read
assert_match log, pipe_output("git log --oneline")
end
end
end