guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: asciinema: Update to 2.1.0.


From: guix-commits
Subject: 01/02: gnu: asciinema: Update to 2.1.0.
Date: Sat, 23 Oct 2021 17:41:16 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 82924c19530b386f1eb972fc84aa535365c3c012
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Oct 23 23:32:56 2021 +0200

    gnu: asciinema: Update to 2.1.0.
    
    * gnu/packages/terminals.scm (asciinema): Update to 2.1.0.
    [arguments]: Don't explicitly return #t from phases.
---
 gnu/packages/terminals.scm | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 637ddb7..d606bf4 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -199,7 +199,7 @@ insert mode and command mode where keybindings have 
different functions.")
 (define-public asciinema
   (package
     (name "asciinema")
-    (version "2.0.2")
+    (version "2.1.0")
     (source
      (origin
        (method git-fetch)
@@ -208,8 +208,7 @@ insert mode and command mode where keybindings have 
different functions.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1a2pysxnp6icyd08mgf66xr6f6j0irnfxdpf3fmzcz31ix7l9kc4"))))
+        (base32 "1alcz018jrrpasrmgs8nw775a6pf62xq2xgs54c4mb396prdqy4x"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -219,8 +218,7 @@ insert mode and command mode where keybindings have 
different functions.")
              (let ((ncurses (assoc-ref inputs "ncurses")))
                (substitute* "asciinema/term.py"
                  (("'tput'")
-                  (string-append "'" ncurses "/bin/tput'"))))
-             #t))
+                  (string-append "'" ncurses "/bin/tput'"))))))
          (replace 'check
            (lambda _ (invoke "nosetests" "-v"))))))
     (inputs `(("ncurses" ,ncurses)))



reply via email to

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