diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-05-09 10:01:08 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-05-09 10:01:08 +0200 |
commit | abf3f8d04ec5cbfa637dc9d47aac8a92a5c53092 (patch) | |
tree | e62a80a6327e12c0fd6980f601de614b78052960 | |
parent | 407e0af6aa465479d08dafb125d06d50109f1822 (diff) | |
download | guix-abf3f8d04ec5cbfa637dc9d47aac8a92a5c53092.tar guix-abf3f8d04ec5cbfa637dc9d47aac8a92a5c53092.tar.gz |
gnu: emacs-clojure-mode: Update to 5.13.0.
* gnu/packages/emacs-xyz.scm (emacs-clojure-mode): Update to 5.13.0.
[arguments]<#:phases>: Remove fix, now applied upstream.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c9b7dff293..6eb0b205c1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8578,7 +8578,7 @@ allowing unprefixed keys to insert their respective characters as expected.") (define-public emacs-clojure-mode (package (name "emacs-clojure-mode") - (version "5.12.0") + (version "5.13.0") (source (origin (method git-fetch) @@ -8587,7 +8587,7 @@ allowing unprefixed keys to insert their respective characters as expected.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "14ipfy9ji39pnb9x7bzjp8lyqyxk168fx017m823j7a2g9i0sgp3")))) + (base32 "1ikl29rygr1habcsglz07m4ihd4ivi732kkzg8q676ihf367wa9i")))) (build-system emacs-build-system) (native-inputs `(("emacs-buttercup" ,emacs-buttercup) @@ -8596,17 +8596,7 @@ allowing unprefixed keys to insert their respective characters as expected.") ("emacs-s" ,emacs-s))) (arguments `(#:tests? #t - #:test-command '("buttercup") - #:phases - (modify-phases %standard-phases - (add-before 'check 'fix-tests - ;; See: https://github.com/clojure-emacs/clojure-mode/issues/568 - (lambda _ - (substitute* "clojure-mode.el" - (("\\(list \\(cdr project\\)\\)" line) - (string-append "\"Return the list of directory roots of the PROJECT.\"\n" - line))) - #t))))) + #:test-command '("buttercup"))) (home-page "https://github.com/clojure-emacs/clojure-mode") (synopsis "Major mode for Clojure code") (description |