guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-dts-mode: Update to 1.0.


From: guix-commits
Subject: branch master updated: gnu: emacs-dts-mode: Update to 1.0.
Date: Wed, 13 Jul 2022 09:33:00 -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 0e87328f0b gnu: emacs-dts-mode: Update to 1.0.
0e87328f0b is described below

commit 0e87328f0b8396acab77093fca467c773e7eaa95
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Jul 13 15:31:33 2022 +0200

    gnu: emacs-dts-mode: Update to 1.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-dts-mode): Update to 1.0.
    [source]<origin>: Switch to ELPA repository since GitHub repository does not
    seem to be up to date anymore.
    [home-page]: Update URL.
---
 gnu/packages/emacs-xyz.scm | 37 ++++++++++++++++---------------------
 1 file changed, 16 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5dfefcbcf7..a098922c8c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -21608,28 +21608,23 @@ Dumb Jump performs best with The Silver Searcher 
@command{ag} or ripgrep
     (license license:gpl3+)))
 
 (define-public emacs-dts-mode
-  (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
-        (revision "1"))
-    (package
-      (name "emacs-dts-mode")
-      (version (string-append "0.1.0-" revision "." (string-take commit 7)))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/bgamari/dts-mode";)
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32
-           "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
-      (build-system emacs-build-system)
-      (home-page "https://github.com/bgamari/dts-mode";)
-      (synopsis "Emacs minor mode for editing device tree files")
-      (description
-       "This package provides an Emacs minor mode for highlighting
+  (package
+    (name "emacs-dts-mode")
+    (version "1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://elpa.gnu.org/packages/dts-mode-";
+                                  version ".tar"))
+              (sha256
+               (base32
+                "0ihwqkv1ddysjgxh01vpayv3ia0vx55ny8ym0mi5b4iz95idj60s"))))
+    (build-system emacs-build-system)
+    (home-page "https://elpa.gnu.org/packages/dts-mode.html";)
+    (synopsis "Major mode for Device Tree source files")
+    (description
+     "This package provides an Emacs minor mode for highlighting
 device tree files.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-daemons
   (package



reply via email to

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