guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: emacs-yasnippet: Upgrade to 0.12.0.


From: Ludovic Courtès
Subject: 04/05: gnu: emacs-yasnippet: Upgrade to 0.12.0.
Date: Tue, 1 Aug 2017 09:35:48 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 1f0d47059d31bbbaf588a4ca2de38d2ded8678cc
Author: Kyle Meyer <address@hidden>
Date:   Sat Jul 22 18:57:02 2017 -0400

    gnu: emacs-yasnippet: Upgrade to 0.12.0.
    
    * gnu/packages/emacs.scm (emacs-yasnippet): Upgrade to 0.12.0.
    [source]: Remove an uninstalled directory from yas-snippet-dirs.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 02e7a9e..f6411c7 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4112,7 +4112,7 @@ mode-line.")
 (define-public emacs-yasnippet
   (package
     (name "emacs-yasnippet")
-    (version "0.11.0")
+    (version "0.12.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/joaotavora/yasnippet/";
@@ -4120,7 +4120,18 @@ mode-line.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "15di6mkkf09b7qddpsrm0qln02hji3sx8blya5jxssi9wxxx9iq5"))))
+                "1yqiprighgqz1hsslph50cy09xxqabc06jffrnjcsdf6nj70xlkc"))
+              (modules '((guix build utils)))
+              (snippet
+               '(begin
+                  ;; YASnippet expects a "snippets" subdirectory in the same
+                  ;; directory as yasnippet.el, but we don't install it
+                  ;; because it's a git submodule pointing to an external
+                  ;; repository.  Adjust `yas-snippet-dirs' to prevent
+                  ;; warnings about a missing directory.
+                  (substitute* "yasnippet.el"
+                    (("^ +'yas-installed-snippets-dir\\)\\)\n")
+                     "))\n"))))))
     (build-system emacs-build-system)
     (home-page "https://github.com/joaotavora/yasnippet";)
     (synopsis "Yet another snippet extension for Emacs")



reply via email to

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