Skip to content

Commit af9bd5d

Browse files
committed
fortls 2.13.0 (new formula)
Closes #13. Signed-off-by: Sebastian Ehlert <[email protected]>
1 parent 1e01855 commit af9bd5d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

Formula/fortls.rb

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
class Fortls < Formula
2+
include Language::Python::Virtualenv
3+
4+
desc "Fortran language server"
5+
homepage "https://github.com/gnikit/fortls"
6+
url "https://pypi.io/packages/source/f/fortls/fortls-2.13.0.tar.gz"
7+
sha256 "23c5013e8dd8e1d65bf07be610d0827bc48aa7331a7a7ce13612d4c646d0db31"
8+
license "MIT"
9+
head "https://github.com/gnikit/fortls.git", branch: "master"
10+
11+
depends_on "[email protected]"
12+
13+
resource "json5" do
14+
url "https://pypi.io/packages/source/j/json5/json5-0.9.5.tar.gz"
15+
sha256 "703cfee540790576b56a92e1c6aaa6c4b0d98971dc358ead83812aa4d06bdb96"
16+
end
17+
18+
resource "packaging" do
19+
url "https://pypi.io/packages/source/p/packaging/packaging-21.3.tar.gz"
20+
sha256 "dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"
21+
end
22+
23+
resource "pyparsing" do
24+
url "https://pypi.io/packages/source/p/pyparsing/pyparsing-3.0.9.tar.gz"
25+
sha256 "2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"
26+
end
27+
28+
def install
29+
virtualenv_install_with_resources
30+
end
31+
32+
test do
33+
system "#{bin}/fortls", "--help"
34+
end
35+
end

0 commit comments

Comments
 (0)