57 lines
2.4 KiB
Ruby
57 lines
2.4 KiB
Ruby
class Vint < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Vim script Language Lint"
|
|
homepage "https://github.com/Vimjas/vint"
|
|
url "https://files.pythonhosted.org/packages/9c/c7/d5fbe5f778edee83cba3aea8cc3308db327e4c161e0656e861b9cc2cb859/vim-vint-0.3.21.tar.gz"
|
|
sha256 "5dc59b2e5c2a746c88f5f51f3fafea3d639c6b0fdbb116bb74af27bf1c820d97"
|
|
license "MIT"
|
|
revision 2
|
|
head "https://github.com/Vimjas/vint.git", branch: "master"
|
|
|
|
bottle do
|
|
rebuild 2
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "903c19aef5bbbd7e125cdb721c1b605d3db84143ba8c48b2acda71fa3a8c5b3a"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "903c19aef5bbbd7e125cdb721c1b605d3db84143ba8c48b2acda71fa3a8c5b3a"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "903c19aef5bbbd7e125cdb721c1b605d3db84143ba8c48b2acda71fa3a8c5b3a"
|
|
sha256 cellar: :any_skip_relocation, ventura: "260e13702ec21eca7707a1fc7ce138e2056bfe1756fb5551650f947971c3b865"
|
|
sha256 cellar: :any_skip_relocation, monterey: "260e13702ec21eca7707a1fc7ce138e2056bfe1756fb5551650f947971c3b865"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "260e13702ec21eca7707a1fc7ce138e2056bfe1756fb5551650f947971c3b865"
|
|
sha256 cellar: :any_skip_relocation, catalina: "260e13702ec21eca7707a1fc7ce138e2056bfe1756fb5551650f947971c3b865"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "e33a39133442c624e46b3ae03af2629a7f6e35f4aabb8e0d6095472f87f98de7"
|
|
end
|
|
|
|
depends_on "python@3.11"
|
|
depends_on "pyyaml"
|
|
|
|
resource "ansicolor" do
|
|
url "https://files.pythonhosted.org/packages/79/74/630817c7eb1289a1412fcc4faeca74a69760d9c9b0db94fc09c91978a6ac/ansicolor-0.3.2.tar.gz"
|
|
sha256 "3b840a6b1184b5f1568635b1adab28147947522707d41ceba02d5ed0a0877279"
|
|
end
|
|
|
|
resource "chardet" do
|
|
url "https://files.pythonhosted.org/packages/31/a2/12c090713b3d0e141f367236d3a8bdc3e5fca0d83ff3647af4892c16c205/chardet-5.0.0.tar.gz"
|
|
sha256 "0368df2bfd78b5fc20572bb4e9bb7fb53e2c094f60ae9993339e8671d0afb8aa"
|
|
end
|
|
|
|
def install
|
|
virtualenv_install_with_resources
|
|
end
|
|
|
|
test do
|
|
system bin/"vint", "--help"
|
|
(testpath/"bad.vim").write <<~EOS
|
|
not vimscript
|
|
EOS
|
|
assert_match "E492", shell_output("#{bin}/vint bad.vim", 1)
|
|
|
|
(testpath/"good.vim").write <<~EOS
|
|
" minimal vimrc
|
|
syntax on
|
|
set backspace=indent,eol,start
|
|
filetype plugin indent on
|
|
EOS
|
|
assert_equal "", shell_output("#{bin}/vint good.vim")
|
|
end
|
|
end
|