gnu: emacs-puppet-mode: Update to 0.4.

* gnu/packages/emacs-xyz.scm (emacs-puppet-mode): Update to 0.4.
[source]: Switch to `git-fetch' method.
This commit is contained in:
Nicolas Goaziou 2021-05-29 16:01:32 +02:00
parent b4f579b07f
commit 9e29523a44
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -6739,22 +6739,19 @@ (define-public emacs-company-jedi
(license license:gpl3+)))
(define-public emacs-puppet-mode
(let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
(revision "1"))
(package
(name "emacs-puppet-mode")
;; The last release, 0.3 was several years ago, and there have been many
;; commits since
(version (git-version "0.3" revision commit))
(version "0.4")
(source
(origin
(method url-fetch)
(uri (string-append
"https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
commit "/puppet-mode.el"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/voxpupuli/puppet-mode")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
"0c5q8qmbligzjsn05di4wh6ggpd3944j4yqb78vzd441b8ssq70i"))))
(build-system emacs-build-system)
(home-page "https://github.com/voxpupuli/puppet-mode")
(synopsis "Emacs major mode for the Puppet configuration language")
@ -6763,7 +6760,7 @@ (define-public emacs-puppet-mode
including syntax highlighting, indentation of expressions and statements,
linting of manifests and integration with Puppet Debugger.")
;; Also incorporates work covered by the Apache License, Version 2.0
(license license:gpl3+))))
(license license:gpl3+)))
(define-public emacs-purescript-mode
;; Retrieved on 2021-05-18.