guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: vim: Update to 8.2.1145.


From: guix-commits
Subject: branch master updated: gnu: vim: Update to 8.2.1145.
Date: Mon, 06 Jul 2020 13:54:44 -0400

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new a5dbc07  gnu: vim: Update to 8.2.1145.
a5dbc07 is described below

commit a5dbc07d38d3ae1a66a478efb959f74cce93b51f
Author: Jakub Kądziołka <kuba@kadziolka.net>
AuthorDate: Mon Jul 6 19:15:06 2020 +0200

    gnu: vim: Update to 8.2.1145.
    
    * gnu/packages/vim.scm (vim): Update to 8.2.1145.
      [arguments]: Patch the terminal2 test too, as it has been split from
      test_terminal. Make the name of the phase more accurate.
      (vim-full)[arguments]: Remove the skip-test87 phase, as the test no
      longer exists and its successor passes.
---
 gnu/packages/vim.scm | 22 +++++-----------------
 1 file changed, 5 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 44d81bb..df63593 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -70,7 +70,7 @@
 (define-public vim
   (package
     (name "vim")
-    (version "8.2.1101")
+    (version "8.2.1145")
     (source (origin
              (method git-fetch)
              (uri (git-reference
@@ -79,21 +79,22 @@
              (file-name (git-file-name name version))
              (sha256
               (base32
-               "170k855vscixnk6rz01i3k22crjiz8b2h83fnm2b2ccha0jyn9mf"))))
+               "01z5hgi7m8d63gl1fgfn4p9rsdaqbl5xn4vr247nbxjq5x5hrs7a"))))
     (build-system gnu-build-system)
     (arguments
      `(#:test-target "test"
        #:parallel-tests? #f
        #:phases
        (modify-phases %standard-phases
-         (add-after 'configure 'patch-config-files
+         (add-after 'configure 'patch-absolute-paths
            (lambda _
              (substitute* "runtime/tools/mve.awk"
                (("/usr/bin/nawk") (which "gawk")))
              (substitute* '("src/testdir/Makefile"
                             "src/testdir/test_normal.vim"
                             "src/testdir/test_system.vim"
-                            "src/testdir/test_terminal.vim")
+                            "src/testdir/test_terminal.vim"
+                            "src/testdir/test_terminal2.vim")
                (("/bin/sh") (which "sh")))
              (substitute* "src/testdir/test_autocmd.vim"
                (("/bin/kill") (which "kill")))
@@ -214,19 +215,6 @@ with the editor vim.")))
        ,@(substitute-keyword-arguments (package-arguments vim)
            ((#:phases phases)
             `(modify-phases ,phases
-               (add-before 'check 'skip-test87
-                 ;; This test fails for unknown reasons after switching
-                 ;; to a git checkout.
-                 (lambda _
-                   (delete-file "src/testdir/test87.ok")
-                   (delete-file "src/testdir/test87.in")
-                   (substitute* '("src/Makefile"
-                                  "src/testdir/Make_vms.mms")
-                     (("test87") ""))
-                   (substitute* "src/testdir/Make_all.mak"
-                     (("test86.out \\\\") "test86")
-                     (("test87.out") ""))
-                   #t))
                (add-before 'check 'start-xserver
                  (lambda* (#:key inputs #:allow-other-keys)
                    ;; Some tests require an X server, but does not start one.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]