guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: kakoune: Update to 2021.11.08.


From: guix-commits
Subject: branch master updated: gnu: kakoune: Update to 2021.11.08.
Date: Thu, 14 Jul 2022 04:45:45 -0400

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

lbraun pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 56136cfc30 gnu: kakoune: Update to 2021.11.08.
56136cfc30 is described below

commit 56136cfc30ebdf0bc32c908bb91d8140eb76ca1a
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Thu Jul 14 10:28:00 2022 +0200

    gnu: kakoune: Update to 2021.11.08.
    
    * gnu/packages/text-editors.scm (kakoune)[version]: Update to 2021.11.08.
    [arguments]<#:phases>: Remove unnecessary phase 'chdir and drop deprecated 
#t
    return value.
    [native-inputs]: Drop ruby and asciidoc, which are not used during build.
---
 gnu/packages/text-editors.scm | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 30fc375176..0c8531cc4d 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -167,7 +167,7 @@ based command language.")
 (define-public kakoune
   (package
     (name "kakoune")
-    (version "2021.08.28")
+    (version "2021.11.08")
     (source
      (origin
        (method url-fetch)
@@ -175,7 +175,7 @@ based command language.")
                            "releases/download/v" version "/"
                            "kakoune-" version ".tar.bz2"))
        (sha256
-        (base32 "1jvn4b9rma5jjvg3xz8nf224pbq3ry570j6qvc834wn5v3gxfvkg"))))
+        (base32 "1x5mvmpf0rgmr2xdw5wjn4hr6qd8yvj0zx588fi324x1knfqhc5a"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
@@ -191,14 +191,9 @@ based command language.")
              (substitute* "src/shell_manager.cc"
                (("if \\(m_shell.empty\\(\\)\\)" line)
                 (string-append "m_shell = \"" (which "sh")
-                               "\";\n        " line)))
-             #t))
-         (delete 'configure)            ; no configure script
-         ;; kakoune requires us to be in the src/ directory to build.
-         (add-before 'build 'chdir
-           (lambda _ (chdir "src") #t)))))
-    (native-inputs
-     (list asciidoc pkg-config ruby))
+                               "\";\n        " line)))))
+         (delete 'configure))))            ; no configure script
+    (native-inputs (list pkg-config))
     (synopsis "Vim-inspired code editor")
     (description
      "Kakoune is a code editor heavily inspired by Vim, as such most of its



reply via email to

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