homebrew-core/Formula/global.rb
2016-03-31 14:46:58 +08:00

131 lines
5.5 KiB
Ruby

class Global < Formula
desc "Source code tag system"
homepage "https://www.gnu.org/software/global/"
url "http://ftpmirror.gnu.org/global/global-6.5.4.tar.gz"
mirror "https://ftp.gnu.org/gnu/global/global-6.5.4.tar.gz"
sha256 "af16e0a686a46f759156cb685e25f345680703f43f93af1ce8d834caaf541da6"
bottle do
sha256 "02cbcdec74c631e5c9136748570eaaa10d492c7bfe48a2a914c0245c91a84f33" => :el_capitan
sha256 "1228a3bb9625f8dbc7700b7846cc5f96e3bbe369ed6f0884840c4d8dacd05980" => :yosemite
sha256 "37948700d06490f5b8a8fce8ca4f869e98c5e6be4c2b14bf70a28b908f971c5a" => :mavericks
end
head do
url ":pserver:anonymous:@cvs.savannah.gnu.org:/sources/global", :using => :cvs
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
option "with-ctags", "Enable Exuberant Ctags as a plug-in parser"
option "with-pygments", "Enable Pygments as a plug-in parser (should enable exuberent-ctags too)"
option "with-sqlite3", "Use SQLite3 API instead of BSD/DB API for making tag files"
deprecated_option "with-exuberant-ctags" => "with-ctags"
depends_on "ctags" => :optional
skip_clean "lib/gtags"
resource "pygments" do
url "https://pypi.python.org/packages/source/P/Pygments/Pygments-2.1.tar.gz"
sha256 "13a0ef5fafd7b16cf995bc28fe7aab0780dab1b2fda0fc89e033709af8b8a47b"
end
def install
system "sh", "reconf.sh" if build.head?
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--sysconfdir=#{etc}
]
args << "--with-sqlite3" if build.with? "sqlite3"
if build.with? "ctags"
args << "--with-exuberant-ctags=#{Formula["ctags"].opt_bin}/ctags"
end
if build.with? "pygments"
ENV.prepend_create_path "PYTHONPATH", libexec+"lib/python2.7/site-packages"
pygments_args = %W[build install --prefix=#{libexec}]
resource("pygments").stage { system "python", "setup.py", *pygments_args }
end
system "./configure", *args
system "make", "install"
if build.with? "pygments"
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
etc.install "gtags.conf"
# we copy these in already
cd share/"gtags" do
rm %w[README COPYING LICENSE INSTALL ChangeLog AUTHORS]
end
end
test do
(testpath/"test.c").write <<-EOF.undent
int c2func (void) { return 0; }
void cfunc (void) {int cvar = c2func(); }")
EOF
if build.with?("pygments") || build.with?("ctags")
(testpath/"test.py").write <<-EOF
def py2func ():
return 0
def pyfunc ():
pyvar = py2func()
EOF
end
if build.with? "pygments"
assert shell_output("#{bin}/gtags --gtagsconf=#{share}/gtags/gtags.conf --gtagslabel=pygments .")
if build.with? "ctags"
assert_match /test\.c/, shell_output("#{bin}/global -d cfunc")
assert_match /test\.c/, shell_output("#{bin}/global -d c2func")
assert_match /test\.c/, shell_output("#{bin}/global -r c2func")
assert_match /test\.c/, shell_output("#{bin}/global -s cvar")
assert_match /test\.py/, shell_output("#{bin}/global -d pyfunc")
assert_match /test\.py/, shell_output("#{bin}/global -r py2func")
assert_match /test\.py/, shell_output("#{bin}/global -s pyvar")
else
# Everything is a symbol in this case
assert_match /test\.c/, shell_output("#{bin}/global -s cfunc")
assert_match /test\.c/, shell_output("#{bin}/global -s c2func")
assert_match /test\.c/, shell_output("#{bin}/global -s cvar")
assert_match /test\.py/, shell_output("#{bin}/global -s pyfunc")
assert_match /test\.py/, shell_output("#{bin}/global -s py2func")
assert_match /test\.py/, shell_output("#{bin}/global -s pyvar")
end
end
if build.with? "ctags"
assert shell_output("#{bin}/gtags --gtagsconf=#{share}/gtags/gtags.conf --gtagslabel=exuberant-ctags .")
# ctags only yields definitions
assert_match /test\.c/, shell_output("#{bin}/global -d cfunc # passes")
assert_match /test\.c/, shell_output("#{bin}/global -d c2func # passes")
assert_no_match /test\.c/, shell_output("#{bin}/global -r c2func # correctly fails")
assert_no_match /test\.c/, shell_output("#{bin}/global -s cvar # correctly fails")
assert_match /test\.py/, shell_output("#{bin}/global -d pyfunc # passes")
assert_match /test\.py/, shell_output("#{bin}/global -d py2func # passes")
assert_no_match /test\.py/, shell_output("#{bin}/global -r py2func # correctly fails")
assert_no_match /test\.py/, shell_output("#{bin}/global -s pyvar # correctly fails")
end
if build.with? "sqlite3"
assert shell_output("#{bin}/gtags --sqlite3 --gtagsconf=#{share}/gtags/gtags.conf --gtagslabel=default .")
assert_match /test\.c/, shell_output("#{bin}/global -d cfunc")
assert_match /test\.c/, shell_output("#{bin}/global -d c2func")
assert_match /test\.c/, shell_output("#{bin}/global -r c2func")
assert_match /test\.c/, shell_output("#{bin}/global -s cvar")
end
# C should work with default parser for any build
assert shell_output("#{bin}/gtags --gtagsconf=#{share}/gtags/gtags.conf --gtagslabel=default .")
assert_match /test\.c/, shell_output("#{bin}/global -d cfunc")
assert_match /test\.c/, shell_output("#{bin}/global -d c2func")
assert_match /test\.c/, shell_output("#{bin}/global -r c2func")
assert_match /test\.c/, shell_output("#{bin}/global -s cvar")
end
end