summaryrefslogtreecommitdiff
path: root/gnu/packages/vim.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2025-01-22 10:36:04 +0200
committerEfraim Flashner <efraim@flashner.co.il>2025-01-22 12:18:22 +0200
commit4efe9833bdbbb2917078d2300992dbc20e223b1e (patch)
treec910f5eade19cc03b9ca98dd5b762d830871aeca /gnu/packages/vim.scm
parent343073b4cbdfc5898508edb78578b6684cb7e058 (diff)
gnu: vim: Update to 9.1.1046.
* gnu/packages/vim.scm (vim): Update to 9.1.1046. [arguments]: Skip another test. Change-Id: I93a8ab67274cea2fee1fc1cdeb85ed9a06cd4599
Diffstat (limited to 'gnu/packages/vim.scm')
-rw-r--r--gnu/packages/vim.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index e77578cf18d..f1b6cf940f3 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1,6 +1,6 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> 2;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
3;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il> 3;;; Copyright © 2016-2025 Efraim Flashner <efraim@flashner.co.il>
4;;; Copyright © 2016, 2017 Nikita <nikita@n0.is> 4;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
5;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> 5;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
6;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> 6;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
@@ -87,7 +87,7 @@
87(define-public vim 87(define-public vim
88 (package 88 (package
89 (name "vim") 89 (name "vim")
90 (version "9.1.0889") 90 (version "9.1.1046")
91 (source (origin 91 (source (origin
92 (method git-fetch) 92 (method git-fetch)
93 (uri (git-reference 93 (uri (git-reference
@@ -96,7 +96,7 @@
96 (file-name (git-file-name name version)) 96 (file-name (git-file-name name version))
97 (sha256 97 (sha256
98 (base32 98 (base32
99 "1ma8g9zqqbr7pkwkb9zl62n80av18cb7yswq51fciwq3gb2hww5m")))) 99 "0zfpqx0caczy0gq3xvbkv328z7xq76jbx52vhq8x8l6nqzpyjzbc"))))
100 (build-system gnu-build-system) 100 (build-system gnu-build-system)
101 (arguments 101 (arguments
102 `(#:test-target "test" 102 `(#:test-target "test"
@@ -161,9 +161,12 @@
161 (string-append line "return\n"))) 161 (string-append line "return\n")))
162 (with-fluids ((%default-port-encoding #f)) 162 (with-fluids ((%default-port-encoding #f))
163 (substitute* "src/testdir/test_writefile.vim" 163 (substitute* "src/testdir/test_writefile.vim"
164 ;; No setfattr in the build environment.
164 ((".*Test_write_with_xattr_support.*" line) 165 ((".*Test_write_with_xattr_support.*" line)
165 (string-append line "return\n")))) 166 (string-append line "return\n"))))
166 (delete-file "runtime/syntax/testdir/input/sh_11.sh"))) 167 ;; These two depend on full bash.
168 (delete-file "runtime/syntax/testdir/input/sh_11.sh")
169 (delete-file "runtime/syntax/testdir/input/sh_12.sh")))
167 (add-before 'install 'fix-installman.sh 170 (add-before 'install 'fix-installman.sh
168 (lambda _ 171 (lambda _
169 (substitute* "src/installman.sh" 172 (substitute* "src/installman.sh"