Skip to content

Commit 9786a88

Browse files
committed
vim 9.1.0850
Closes #133. Signed-off-by: Patrick Heyer <9436503+PatTheMav@users.noreply.github.com>
1 parent 2fc751c commit 9786a88

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Formula/vim-custom.rb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ class VimCustom < Formula
22
desc "Vi 'workalike' with many additional features"
33
homepage "https://www.vim.org/"
44
# vim should only be updated every 25 releases on multiples of 25
5-
url "https://github.com/vim/vim/archive/refs/tags/v9.1.0750.tar.gz"
6-
sha256 "6d668be3da4ab41081b2b9d935f41d066e6002c8c72e23e37e0c5363c9da977b"
5+
url "https://github.com/vim/vim/archive/refs/tags/v9.1.0850.tar.gz"
6+
sha256 "4bbd7480c2d5c577a77a070fa4a133e057c37f611adf47d9a317e50244d7caa4"
77
license "Vim"
88
head "https://github.com/vim/vim.git", branch: "master"
99

@@ -40,7 +40,7 @@ class VimCustom < Formula
4040
depends_on "libsodium" => :optional
4141
depends_on "lua" => :optional
4242
depends_on "luajit" => :optional
43-
depends_on "python@3.12" => :optional
43+
depends_on "python@3.13" => :optional
4444
depends_on "ruby" => :optional
4545

4646
uses_from_macos "perl"
@@ -65,12 +65,14 @@ def install
6565
# vim doesn't require any Python package, unset PYTHONPATH.
6666
ENV.delete("PYTHONPATH")
6767

68+
ENV.append_to_cflags "-mllvm -enable-constraint-elimination=0" if DevelopmentTools.clang_build_version == 1600
69+
6870
opts = []
6971

7072
opts << "--disable-selinux" if OS.linux?
7173

7274
if build.with? "python"
73-
ENV.prepend_path "PATH", Formula["python@3.12"].opt_libexec/"bin"
75+
ENV.prepend_path "PATH", Formula["python@3.13"].opt_libexec/"bin"
7476
opts << "--enable-python3interp" if build.with? "python"
7577
end
7678

0 commit comments

Comments
 (0)