63 lines
2.2 KiB
Ruby
63 lines
2.2 KiB
Ruby
# No head build supported; if you need head builds of Mercurial, do so outside
|
|
# of Homebrew.
|
|
class Mercurial < Formula
|
|
desc "Scalable distributed version control system"
|
|
homepage "https://mercurial-scm.org/"
|
|
url "https://mercurial-scm.org/release/mercurial-4.3.1.tar.gz"
|
|
sha256 "2b12f02e3a452adff4ec9cf007017bab0cadb3f37eaf12f4b25a662df73618a2"
|
|
|
|
bottle do
|
|
sha256 "81a14208823f71e79c4b548f93437a38eaa3a60f77cdf57d04bd6a739383b61c" => :high_sierra
|
|
sha256 "69cbcf1b3a7543408b003271088a49edab6c41f811ac433bcef490a36a86b9b4" => :sierra
|
|
sha256 "521d3afade0e210124b856186c93a702896ced865abc2aa0c7c5ad8558bfeab4" => :el_capitan
|
|
sha256 "307b79206592dff11c1d1944049f8d99643c72f7b56a401bd5556afffaf74d56" => :yosemite
|
|
end
|
|
|
|
option "with-custom-python", "Install against the python in PATH instead of Homebrew's python"
|
|
depends_on :python
|
|
|
|
def install
|
|
system "make", "PREFIX=#{prefix}", "install-bin"
|
|
|
|
# Install chg (see https://www.mercurial-scm.org/wiki/CHg)
|
|
cd "contrib/chg" do
|
|
system "make", "PREFIX=#{prefix}", "HGPATH=#{bin}/hg", \
|
|
"HG=#{bin}/hg"
|
|
bin.install "chg"
|
|
end
|
|
|
|
# Configure a nicer default pager
|
|
(buildpath/"hgrc").write <<-EOS.undent
|
|
[pager]
|
|
pager = less -FRX
|
|
EOS
|
|
|
|
(etc/"mercurial").install "hgrc"
|
|
|
|
# Install man pages, which come pre-built in source releases
|
|
man1.install "doc/hg.1"
|
|
man5.install "doc/hgignore.5", "doc/hgrc.5"
|
|
|
|
# install the completion scripts
|
|
bash_completion.install "contrib/bash_completion" => "hg-completion.bash"
|
|
zsh_completion.install "contrib/zsh_completion" => "_hg"
|
|
end
|
|
|
|
def caveats
|
|
return unless (opt_bin/"hg").exist?
|
|
cacerts_configured = `#{opt_bin}/hg config web.cacerts`.strip
|
|
return if cacerts_configured.empty?
|
|
<<-EOS.undent
|
|
Homebrew has detected that Mercurial is configured to use a certificate
|
|
bundle file as its trust store for TLS connections instead of using the
|
|
default OpenSSL store. If you have trouble connecting to remote
|
|
repositories, consider unsetting the `web.cacerts` property. You can
|
|
determine where the property is being set by running:
|
|
hg config --debug web.cacerts
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/hg", "init"
|
|
end
|
|
end
|