homebrew-core/Formula/bash-completion.rb

62 lines
2.2 KiB
Ruby

# NOTE: version 2 is out, but it requires Bash 4, and macOS ships
# with 3.2.57. If you've upgraded bash, use bash-completion@2 instead.
class BashCompletion < Formula
desc "Programmable completion for Bash 3.2"
homepage "https://salsa.debian.org/debian/bash-completion"
url "https://src.fedoraproject.org/repo/pkgs/bash-completion/bash-completion-1.3.tar.bz2/a1262659b4bbf44dc9e59d034de505ec/bash-completion-1.3.tar.bz2"
sha256 "8ebe30579f0f3e1a521013bcdd183193605dab353d7a244ff2582fb3a36f7bec"
revision 3
bottle do
cellar :any_skip_relocation
sha256 "b069be5574bdf6d12fd1fda17c3162467b68165541166d95d1a9474653a63abc" => :high_sierra
sha256 "58be92ef01d5068f37b1c00af8e9b202bdb409c93121bb0e07dcbb5e55dc3be2" => :sierra
sha256 "58be92ef01d5068f37b1c00af8e9b202bdb409c93121bb0e07dcbb5e55dc3be2" => :el_capitan
sha256 "58be92ef01d5068f37b1c00af8e9b202bdb409c93121bb0e07dcbb5e55dc3be2" => :yosemite
end
conflicts_with "bash-completion@2", :because => "Differing version of same formula"
# Backports the following upstream patch from 2.x:
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740971
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/c1d87451da3b5b147bed95b2dc783a1b02520ac5/bash-completion/bug-740971.patch"
sha256 "bd242a35b8664c340add068bcfac74eada41ed26d52dc0f1b39eebe591c2ea97"
end
# Backports (a variant of) an upstream patch to fix man completion.
patch :DATA
def install
inreplace "bash_completion" do |s|
s.gsub! "/etc/bash_completion", etc/"bash_completion"
s.gsub! "readlink -f", "readlink"
end
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
def caveats; <<~EOS
Add the following line to your ~/.bash_profile:
[ -f #{etc}/bash_completion ] && . #{etc}/bash_completion
EOS
end
test do
system "bash", "-c", ". #{etc}/profile.d/bash_completion.sh"
end
end
__END__
--- a/completions/man
+++ b/completions/man
@@ -27,7 +27,7 @@
fi
uname=$( uname -s )
- if [[ $uname == @(Linux|GNU|GNU/*|FreeBSD|Cygwin|CYGWIN_*) ]]; then
+ if [[ $uname == @(Darwin|Linux|GNU|GNU/*|FreeBSD|Cygwin|CYGWIN_*) ]]; then
manpath=$( manpath 2>/dev/null || command man --path )
else
manpath=$MANPATH