GNU bug report logs -
#30110
[PATCH] gnu: vim: Update to 8.0.1428.
Previous Next
Reported by: Tobias Geerinckx-Rice <me <at> tobias.gr>
Date: Sun, 14 Jan 2018 12:13:02 UTC
Severity: normal
Tags: patch
Done: Tobias Geerinckx-Rice <me <at> tobias.gr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#30110: [PATCH] gnu: vim: Update to 8.0.1428.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 30110 <at> debbugs.gnu.org.
--
30110: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=30110
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Pushed as af60a20034d5fb2c81afbb58fbb759a89798b4d4.
Thanks!
T G-R
[Message part 3 (message/rfc822, inline)]
* gnu/packages/vim.scm (vim): Update to 8.0.1428.
[arguments]: Add ‘patch-failing-test’ phase.
---
Guix,
I guess (you may take that quite literally) there's something about our
build environment that makes mch_fopen("/dev/stdout") fail. Manually
running
:call writefile(foo, "/dev/stdout")
properly gunks up my terminal, so I've just disabled the test. Fixed!
Submitted in case anyone has a better solution.
Kind regards,
T G-R
gnu/packages/vim.scm | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 85ccf9c9d..32f1e1ca5 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2016, 2017 ng0 <ng0 <at> infotropique.org>
;;; Copyright © 2017 Ricardo Wurmus <rekado <at> elephly.net>
;;; Copyright © 2017 Marius Bakke <mbakke <at> fastmail.com>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <me <at> tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -60,7 +61,7 @@
(define-public vim
(package
(name "vim")
- (version "8.0.1300")
+ (version "8.0.1428")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/vim/vim/archive/v"
@@ -68,7 +69,7 @@
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "19w1rxmswsr19wng74f1iwwgd5wpx1hhvprjy1i0k41nply5h3h8"))))
+ "08hzx843cxr5b2llc3332wxpgh3gjrs7jgd6s3sdrxnvg0s0y7s8"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
@@ -82,6 +83,13 @@
(substitute* '("src/testdir/Makefile"
"src/testdir/test_normal.vim")
(("/bin/sh") (which "sh")))
+ #t))
+ (add-before 'check 'patch-failing-test
+ (lambda _
+ ;; XXX A single test fails with “Can't create file /dev/stdout” (at
+ ;; Test_writefile_sync_dev_stdout line 5) while /dev/stdout exists.
+ (substitute* "src/testdir/test_writefile.vim"
+ (("/dev/stdout") "a-regular-file"))
#t)))))
(inputs
`(("gawk" ,gawk)
--
2.15.0
This bug report was last modified 7 years and 121 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.