gnu: vim: Update to 9.1.1525.

* gnu/packages/vim.scm (vim): Update to 9.1.1525.
[arguments]<#:phases>{set-environment-variables}: Allow some flaky tests
to fail.

Change-Id: I501da5df8d585d6d5ba7c3c183cbf01b0b2670bf
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Greg Hogan 2025-07-08 17:09:15 +00:00 committed by Andreas Enge
parent 987f55a4ba
commit b38093345e
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -87,7 +87,7 @@
(define-public vim
(package
(name "vim")
(version "9.1.1492")
(version "9.1.1525")
(source (origin
(method git-fetch)
(uri (git-reference
@ -96,7 +96,7 @@
(file-name (git-file-name name version))
(sha256
(base32
"0f85psiqf62gbgqfzk09v1rqjs4mjf006j1735vydhcc3x9i9div"))))
"19qkf9hq4rd4y3592wxd2x7bw2wxq0p607wddv4p8cv8wsk5y7dv"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
@ -126,8 +126,15 @@
(setenv "TZDIR"
(search-input-directory inputs "share/zoneinfo"))
;; Make sure the TERM environment variable is set for the tests
(setenv "TERM" "xterm")))
;; Make sure the TERM environment variable is set for the tests.
(setenv "TERM" "xterm")
;; Ignore failure of some flaky tests.
(setenv "TEST_MAY_FAIL"
(string-join
(list "Test_diff_overlapped_diff_blocks_will_be_merged"
"Test_linematch_diff_grouping")
","))))
(add-before 'check 'skip-or-fix-failing-tests
(lambda _
;; This test failure is shared between BSD and Guix.