# 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://www.mercurial-scm.org/release/mercurial-5.1.2.tar.gz" sha256 "15af0b090b23649e0e53621a88dde97b55a734d7cb08b77d3df284db70d44e2e" bottle do sha256 "5d02b93a360c6423c6d357d57486b048e41d32b5314d34b52d0fb53d081cbba9" => :catalina sha256 "145b59c737eb5a332b38029f36e3837cbf88f15f063fb8642ea066a28971f80d" => :mojave sha256 "c28323134e53c09ca43ad1543b034fb54c2558f05ddfead977390899ec2afa70" => :high_sierra end # See discussion at https://github.com/Homebrew/homebrew-core/pull/44095 # plans for Python 3 migration depends_on "python@2" def install ENV.prepend_path "PATH", Formula["python@2"].opt_libexec/"bin" 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 [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 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