homebrew-core/Formula/bash.rb

94 lines
4.2 KiB
Ruby

class Bash < Formula
desc "Bourne-Again SHell, a UNIX command interpreter"
homepage "https://www.gnu.org/software/bash/"
license "GPL-3.0-or-later"
head "https://git.savannah.gnu.org/git/bash.git", branch: "master"
stable do
url "https://ftp.gnu.org/gnu/bash/bash-5.1.tar.gz"
mirror "https://ftpmirror.gnu.org/bash/bash-5.1.tar.gz"
mirror "https://mirrors.kernel.org/gnu/bash/bash-5.1.tar.gz"
mirror "https://mirrors.ocf.berkeley.edu/gnu/bash/bash-5.1.tar.gz"
sha256 "cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa"
version "5.1.8"
%w[
001 ebb07b3dbadd98598f078125d0ae0d699295978a5cdaef6282fe19adef45b5fa
002 15ea6121a801e48e658ceee712ea9b88d4ded022046a6147550790caf04f5dbe
003 22f2cc262f056b22966281babf4b0a2f84cb7dd2223422e5dcd013c3dcbab6b1
004 9aaeb65664ef0d28c0067e47ba5652b518298b3b92d33327d84b98b28d873c86
005 cccbb5e9e6763915d232d29c713007a62b06e65126e3dd2d1128a0dc5ef46da5
006 75e17d937de862615c6375def40a7574462210dce88cf741f660e2cc29473d14
007 acfcb8c7e9f73457c0fb12324afb613785e0c9cef3315c9bbab4be702f40393a
008 f22cf3c51a28f084a25aef28950e8777489072628f972b12643b4534a17ed2d1
].each_slice(2) do |p, checksum|
patch :p0 do
url "https://ftp.gnu.org/gnu/bash/bash-5.1-patches/bash51-#{p}"
mirror "https://ftpmirror.gnu.org/bash/bash-5.1-patches/bash51-#{p}"
mirror "https://mirrors.ocf.berkeley.edu/gnu/bash/bash-5.1-patches/bash51-#{p}"
mirror "https://mirrors.kernel.org/gnu/bash/bash-5.1-patches/bash51-#{p}"
sha256 checksum
end
end
end
# We're not using `url :stable` here because we need `url` to be a string
# when we use it in the `strategy` block.
livecheck do
url "https://ftp.gnu.org/gnu/bash/?C=M&O=D"
regex(/href=.*?bash[._-]v?(\d+(?:\.\d+)+)\.t/i)
strategy :gnu do |page, regex|
# Match versions from files
versions = page.scan(regex).flatten.uniq.sort
next versions if versions.blank?
# Assume the last-sorted version is newest
newest_version = Version.new(versions.last)
# Simply return the found versions if there isn't a patches directory
# for the "newest" version
patches_directory = page.match(%r{href=.*?(bash[._-]v?#{newest_version.major_minor}[._-]patches/?)["' >]}i)
next versions if patches_directory.blank?
# Fetch the page for the patches directory
patches_page = Homebrew::Livecheck::Strategy.page_content(URI.join(@url, patches_directory[1]).to_s)
next versions if patches_page[:content].blank?
# Generate additional major.minor.patch versions from the patch files in
# the directory and add those to the versions array
patches_page[:content].scan(/href=.*?bash[._-]?v?\d+(?:\.\d+)*[._-]0*(\d+)["' >]/i).each do |match|
versions << "#{newest_version.major_minor}.#{match[0]}"
end
versions
end
end
bottle do
sha256 arm64_monterey: "ca2a074414b936f14ae6736cbc15dfc773183ba45c4d1029d669473dae303e25"
sha256 arm64_big_sur: "fdf2411fa554caf64814dbe8b166d30a94b7ee80a836d9dff32c86edf4938213"
sha256 monterey: "60c0ce804f99bba2910fe535d48102f43054d30127c1863bf24561ff29f057cf"
sha256 big_sur: "62569d2e8452dd3cb61168ffc2581193989503f0e419c3cf1c32984d165ce139"
sha256 catalina: "751ffc4d6980a91d4a73dd8758465f519770519d0a4b39ab798062d228b6f8e4"
sha256 mojave: "ecb50a94d925314cc09f4e5f016538143edeba3b3fb7235397286b97cc016e14"
sha256 x86_64_linux: "b81e0a2f8cd9aa8f742926742a462fa57ee8aceafc5492fa5fefc96394d44041"
end
def install
# When built with SSH_SOURCE_BASHRC, bash will source ~/.bashrc when
# it's non-interactively from sshd. This allows the user to set
# environment variables prior to running the command (e.g. PATH). The
# /bin/bash that ships with macOS defines this, and without it, some
# things (e.g. git+ssh) will break if the user sets their default shell to
# Homebrew's bash instead of /bin/bash.
ENV.append_to_cflags "-DSSH_SOURCE_BASHRC"
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
assert_equal "hello", shell_output("#{bin}/bash -c \"echo -n hello\"")
end
end