diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-01-22 10:36:04 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-01-22 12:18:22 +0200 |
| commit | 4efe9833bdbbb2917078d2300992dbc20e223b1e (patch) | |
| tree | c910f5eade19cc03b9ca98dd5b762d830871aeca /gnu/packages | |
| parent | 343073b4cbdfc5898508edb78578b6684cb7e058 (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')
| -rw-r--r-- | gnu/packages/vim.scm | 11 |
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 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> -;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016-2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017 Nikita <nikita@n0.is> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> @@ -87,7 +87,7 @@ (define-public vim (package (name "vim") - (version "9.1.0889") + (version "9.1.1046") (source (origin (method git-fetch) (uri (git-reference @@ -96,7 +96,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "1ma8g9zqqbr7pkwkb9zl62n80av18cb7yswq51fciwq3gb2hww5m")))) + "0zfpqx0caczy0gq3xvbkv328z7xq76jbx52vhq8x8l6nqzpyjzbc")))) (build-system gnu-build-system) (arguments `(#:test-target "test" @@ -161,9 +161,12 @@ (string-append line "return\n"))) (with-fluids ((%default-port-encoding #f)) (substitute* "src/testdir/test_writefile.vim" + ;; No setfattr in the build environment. ((".*Test_write_with_xattr_support.*" line) (string-append line "return\n")))) - (delete-file "runtime/syntax/testdir/input/sh_11.sh"))) + ;; These two depend on full bash. + (delete-file "runtime/syntax/testdir/input/sh_11.sh") + (delete-file "runtime/syntax/testdir/input/sh_12.sh"))) (add-before 'install 'fix-installman.sh (lambda _ (substitute* "src/installman.sh" |
