gnu: emacs-arduino-mode: Update to 1.3.0-0-652c6a3.

* gnu/packages/emacs-xyz.scm (emacs-arduino-mode): Update to 1.3.0-0-652c6a3.
[source]: Move upstream to repo.or.cz.
[arguments]: Remove unnecessary phases.
[home-page]: Update to repo.or.cz.
This commit is contained in:
Nicolas Goaziou 2022-08-27 11:23:58 +02:00
parent 92f64f833a
commit b07180a13b
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -24441,37 +24441,26 @@ (define-public emacs-frame-purpose
(license license:gpl3+)))
(define-public emacs-arduino-mode
(let ((commit "23ae47c9f28f559e70b790b471f20310e163a39b")
(revision "1")) ;no release yet
(let ((commit "652c6a328fa8f2db06534d5f231c6b6933be3edc")
(revision "0"))
(package
(name "emacs-arduino-mode")
(version (git-version "0" revision commit))
(version (git-version "1.3.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/stardiviner/arduino-mode")
(url "https://repo.or.cz/arduino-mode")
(commit commit)))
(sha256
(base32 "08vnbz9gpah1l93fzfd87aawrhcnh2v1kyfxgsn88pdwg8awz8rx"))
(base32 "16izwrk1dfsa14kylfhsxdwkx76g0jdk0znl1z7cypxh5q9ijy1x"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
;; Emacs complains that "defmethod" and "defgeneric" are obsolete
;; macros when compiling. Substitute them with the recommended
;; macros "cl-defmethod" and "cl-defgeneric", respectively.
(add-after 'unpack 'fix-obsolete
(lambda _
(substitute* "ede-arduino.el"
(("defmethod") "cl-defmethod")
(("defgeneric") "cl-defgeneric")))))))
(inputs
(list emacs-flycheck emacs-spinner))
(synopsis "Emacs major mode for editing Arduino sketches")
(description "Emacs major mode for editing Arduino sketches.")
(home-page "https://github.com/stardiviner/arduino-mode")
(home-page "https://repo.or.cz/arduino-mode")
(license license:gpl3+))))
(define-public emacs-annalist