# 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.0.tar.gz" sha256 "24be080745230840f214d93e9f9fb4e25510f9abbbec2e56fab18543fedc43a7" bottle do cellar :any_skip_relocation sha256 "82e2be5ba133acae6f63013f19e79f6fc671357f64416eca713b73e6bd7052be" => :sierra sha256 "12f25651723ede887c3af9dbb62bd1c4a2fb8847a81c873227eae5d00ab58aa0" => :el_capitan sha256 "69efee6a0266e4f9b0d20c387f50ae9b8f3de084d2624958c35d9f6fed633605" => :yosemite end option "with-custom-python", "Install against the python in PATH instead of Homebrew's python" if build.with? "custom-python" depends_on :python else depends_on "python" end def install ENV.minimal_optimization if MacOS.version <= :snow_leopard system "make", "PREFIX=#{prefix}", "install-bin" # 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