guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-cort: Update to 7.1.0.


From: guix-commits
Subject: branch master updated: gnu: emacs-cort: Update to 7.1.0.
Date: Wed, 17 Feb 2021 09:06:41 -0500

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

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new fe0ab60  gnu: emacs-cort: Update to 7.1.0.
fe0ab60 is described below

commit fe0ab6027427bcba927378027aef9d1e1cc3d8df
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Feb 17 15:06:15 2021 +0100

    gnu: emacs-cort: Update to 7.1.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-cort): Update to 7.1.0.
---
 gnu/packages/emacs-xyz.scm | 52 +++++++++++++++++++++-------------------------
 1 file changed, 24 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3b462e7..6474223 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20590,34 +20590,30 @@ functions to ensure they are called with the right 
arguments during testing.")
     (license license:gpl3+)))
 
 (define-public emacs-cort
-  ;; Choosing a recent commit to fix some bugs.
-  ;; https://github.com/conao3/cort.el/issues/106
-  (let ((commit "495c3972b92b57a0cb5dd65ce5de9d3c6b8b6509")
-        (revision "1"))
-    (package
-      (name "emacs-cort")
-      (version (git-version "3.0.5" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/conao3/cort.el";)
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "0f4irq1arh9c7lf9a5bla25am0jy5r6lj8ayb8k9k7lrirzhyk99"))))
-      (build-system emacs-build-system)
-      (propagated-inputs
-       `(("emacs-ansi" ,emacs-ansi)))
-      (arguments
-       `(#:tests? #t
-         #:test-command '("emacs" "--batch" "--quick"
-                          "--directory=." "--load=cort-tests.el"
-                          "--funcall=cort-test-run")))
-      (home-page "https://github.com/conao3/cort.el";)
-      (synopsis "Unit test framework for the Emacs Lisp")
-      (description "@code{cort} is a lightweight Emacs Lisp unit test 
library.")
-      (license license:gpl3+))))
+  (package
+    (name "emacs-cort")
+    (version "7.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/conao3/cort.el";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "03c223nczpbdkjmq69panhbsq2a0zj20w329jgj4c0zsj8m1a32a"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-ansi" ,emacs-ansi)))
+    (arguments
+     `(#:tests? #t
+       #:test-command '("emacs" "--batch" "--quick"
+                        "--directory=." "--load=cort-tests.el"
+                        "--funcall=cort-test-run")))
+    (home-page "https://github.com/conao3/cort.el";)
+    (synopsis "Unit test framework for the Emacs Lisp")
+    (description "@code{cort} is a lightweight Emacs Lisp unit test library.")
+    (license license:gpl3+)))
 
 (define-public emacs-wordnut
   (let ((commit "feac531404041855312c1a046bde7ea18c674915")



reply via email to

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