gnu: emacs-go-mode: Update to 1.6.0.

* gnu/packages/emacs-xyz.scm (emacs-go-mode): Update to 1.6.0.
[arguments]: Remove unnecessary phase.
This commit is contained in:
Nicolas Goaziou 2022-03-06 22:14:15 +01:00
parent e7886fd674
commit 48e72ee82b
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -3238,32 +3238,28 @@ (define-public emacs-ggtags
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-go-mode (define-public emacs-go-mode
(package ;; XXX: Upstream did not tag last release. The commit below matches version
(name "emacs-go-mode") ;; bump.
(version "1.5.0") (let ((commit "3273fcece5d9ab7edd4f15b2d6bce61f4e5a0666"))
(source (origin (package
(method git-fetch) (name "emacs-go-mode")
(uri (git-reference (version "1.6.0")
(url "https://github.com/dominikh/go-mode.el") (source (origin
(commit (string-append "v" version)))) (method git-fetch)
(file-name (git-file-name name version)) (uri (git-reference
(sha256 (url "https://github.com/dominikh/go-mode.el")
(base32 (commit commit)))
"1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf")))) (file-name (git-file-name name version))
(build-system emacs-build-system) (sha256
(arguments (base32
(list "00qzn136d8cl3szbi44xf3iiv75r6n1m7wwgldmzn4i5mpz8dbq7"))))
#:phases (build-system emacs-build-system)
#~(modify-phases %standard-phases (home-page "https://github.com/dominikh/go-mode.el")
(add-after 'unpack 'make-writable (synopsis "Go mode for Emacs")
(lambda _ (description
(for-each make-file-writable (find-files "." "\\.el$"))))))) "This package provides go-mode, an Emacs mode for working with software
(home-page "https://github.com/dominikh/go-mode.el")
(synopsis "Go mode for Emacs")
(description
"This package provides go-mode, an Emacs mode for working with software
written in the Go programming language.") written in the Go programming language.")
(license license:bsd-3))) (license license:bsd-3))))
(define-public emacs-google-maps (define-public emacs-google-maps
;; There has been no new release tag since 2013. ;; There has been no new release tag since 2013.