guix-commits
[Top][All Lists]
Advanced

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

04/04: gnu: emacs-sesman: Update to 0.3.4.


From: guix-commits
Subject: 04/04: gnu: emacs-sesman: Update to 0.3.4.
Date: Sun, 18 Aug 2019 08:32:37 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 196472e7f37162ecdadb2f2f7a2c02b5cba749a1
Author: Brian Leung <address@hidden>
Date:   Sat Aug 10 08:46:38 2019 +0200

    gnu: emacs-sesman: Update to 0.3.4.
    
    * gnu/packages/emacs-xyz.scm (emacs-sesman): Update to 0.3.4.
    
    Signed-off-by: Oleg Pykhalov <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e7c1bc4..3acfc65 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14905,20 +14905,28 @@ RPC channels with users and other software.")
 (define-public emacs-sesman
   (package
     (name "emacs-sesman")
-    (version "0.3.3")
+    (version "0.3.4")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/vspinu/sesman.git";)
-             (commit (string-append "v" version))))
+             (commit version)))
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0r32f8ma9ddczxrrdz0nadp14j3zmk10q1ch02gb82synkx3xdra"))))
+         "0z5jb4vpbjsi63w3wjy6d2lgz33qdfvrgfb3bszv4hcf6a96y7fc"))))
     (build-system emacs-build-system)
     (arguments
-     `(#:tests? #t
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'set-shell
+           ;; Setting the SHELL environment variable is required for the tests
+           ;; to find sh.
+           (lambda _
+             (setenv "SHELL" (which "sh"))
+             #t)))
+       #:tests? #t
        #:test-command '("make" "test")))
     (home-page "https://github.com/vspinu/sesman";)
     (synopsis "Session manager for Emacs based IDEs")



reply via email to

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