me
/
guix
Archived
1
0
Fork 0

gnu: vim: Update to 8.2.4701.

* gnu/packages/vim.scm (vim): Update to 8.2.4701.
[arguments]: Adjust custom 'skip-or-fix-failing-tests phase to skip
another test.
master
Efraim Flashner 2022-04-06 22:56:07 +03:00
parent c2125e59d0
commit 3ac90f92a0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 2 deletions

View File

@ -77,7 +77,7 @@
(define-public vim (define-public vim
(package (package
(name "vim") (name "vim")
(version "8.2.4564") (version "8.2.4701")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -86,7 +86,7 @@
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1ggvmvd6xsj9xvknjcvpj52na2km2wxvxfj8l29mqp03g4wwyzrr")))) "0yqqzai3ihfjjjjmn50pxlcqllpkmlrf5z59ma5rn0gv8wwwdw7h"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:test-target "test" `(#:test-target "test"
@ -118,6 +118,11 @@
(setenv "TERM" "xterm"))) (setenv "TERM" "xterm")))
(add-before 'check 'skip-or-fix-failing-tests (add-before 'check 'skip-or-fix-failing-tests
(lambda _ (lambda _
;; This test failure is shared between BSD and Guix.
(with-fluids ((%default-port-encoding #f))
(substitute* "src/testdir/test_writefile.vim"
(("!has\\('bsd'\\)") "0")))
;; This test assumes that PID 1 is run as root and that the user ;; This test assumes that PID 1 is run as root and that the user
;; running the test suite does not have permission to kill(1, 0) ;; running the test suite does not have permission to kill(1, 0)
;; it. This is not true in the build container, where both PID 1 ;; it. This is not true in the build container, where both PID 1