guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-rust-mode: Update to 1.0.0.


From: guix-commits
Subject: branch master updated: gnu: emacs-rust-mode: Update to 1.0.0.
Date: Sun, 17 Oct 2021 15:12:48 -0400

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 e5cf825  gnu: emacs-rust-mode: Update to 1.0.0.
e5cf825 is described below

commit e5cf825f3b969bf3d1f84f88710223a1a91036da
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Oct 17 21:09:35 2021 +0200

    gnu: emacs-rust-mode: Update to 1.0.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-rust-mode): Update to 1.0.0.
    [arguments]<#:phases>: Remove phase to run tests.
    <#:test-command>: Use new command.
    <#:tests?>: Disable tests for now. The `check' phases fails with status 127,
    even though all tests pass in the build environment, when "make test" is
    called manually.
---
 gnu/packages/emacs-xyz.scm | 27 ++++++++++++---------------
 1 file changed, 12 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index efeac83..ac19a0e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21698,23 +21698,20 @@ docstring of the thing at point.")
 (define-public emacs-rust-mode
   (package
     (name "emacs-rust-mode")
-    (version "0.5.0")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/rust-lang/rust-mode";)
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1f3nnl0d7p9b5cv1bpm0hj898qmr2psxfvmqr61bh684z7fgc045"))))
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/rust-lang/rust-mode";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "08gz7wq1las3bqqs8qhmhmncax4j6kjnyxpfzslby3b1dkclc7ig"))))
     (build-system emacs-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda _
-             (invoke "sh" "run_rust_emacs_tests.sh"))))))
+     `(#:tests? #false                  ;FIXME: phase fail with status 127
+       #:test-command '("make test")))
     (home-page "https://github.com/rust-lang/rust-mode";)
     (synopsis "Major Emacs mode for editing Rust source code")
     (description "This package provides a major Emacs mode for editing Rust



reply via email to

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