From 4efe9833bdbbb2917078d2300992dbc20e223b1e Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 22 Jan 2025 10:36:04 +0200 Subject: [PATCH] gnu: vim: Update to 9.1.1046. * gnu/packages/vim.scm (vim): Update to 9.1.1046. [arguments]: Skip another test. Change-Id: I93a8ab67274cea2fee1fc1cdeb85ed9a06cd4599 --- gnu/packages/vim.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index e77578cf18dd52e4e7ff5311321c45d1acc6f93a..f1b6cf940f3656d939af47cfff94c263bf13229f 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 -;;; Copyright © 2016-2024 Efraim Flashner +;;; Copyright © 2016-2025 Efraim Flashner ;;; Copyright © 2016, 2017 Nikita ;;; Copyright © 2017 Ricardo Wurmus ;;; Copyright © 2017 Marius Bakke @@ -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"