[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: vifm: Update to 0.13.
From: |
guix-commits |
Subject: |
01/03: gnu: vifm: Update to 0.13. |
Date: |
Thu, 4 May 2023 15:46:15 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit df18eac9abe36f07f0acdbc2c4c13a4babe0a362
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu May 4 20:11:43 2023 +0300
gnu: vifm: Update to 0.13.
* gnu/packages/vim.scm (vifm): Update to 0.13.
[arguments]: Adjust substitutions in custom 'patch-test-shebangs phase.
---
gnu/packages/vim.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index d555194d0b..53a8a082eb 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -832,7 +832,7 @@ and support for fonts with ligatures.")
(define-public vifm
(package
(name "vifm")
- (version "0.12.1")
+ (version "0.13")
(source
(origin
(method url-fetch)
@@ -843,7 +843,7 @@ and support for fonts with ligatures.")
"vifm-" version ".tar.bz2")))
(sha256
(base32
- "122ncp319xisxjxcy33bshjib6905bb0aaz0xjdfkkycplz83qlg"))))
+ "0xahsjdimpqv75jlfnbh0d2mxn21s53xrv37x6npch3rk9s974hd"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--disable-build-timestamp")
@@ -851,14 +851,14 @@ and support for fonts with ligatures.")
(modify-phases %standard-phases
(add-after 'patch-source-shebangs 'patch-test-shebangs
(lambda _
- (substitute* (cons* "src/background.c"
+ (substitute* (cons* "data/vim/plugin/vifm.vim"
"src/cfg/config.c"
(find-files "tests" "\\.c$"))
(("/bin/sh") (which "sh"))
(("/bin/bash") (which "bash")))
;; This test segfaults
(substitute* "tests/Makefile"
- (("misc") ""))))
+ ((" menus misc") ""))))
(add-after 'install 'install-vim-plugin-files
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))