mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 00:08:29 +01:00
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:
parent
92f64f833a
commit
b07180a13b
1 changed files with 6 additions and 17 deletions
|
@ -24441,37 +24441,26 @@ (define-public emacs-frame-purpose
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-arduino-mode
|
(define-public emacs-arduino-mode
|
||||||
(let ((commit "23ae47c9f28f559e70b790b471f20310e163a39b")
|
(let ((commit "652c6a328fa8f2db06534d5f231c6b6933be3edc")
|
||||||
(revision "1")) ;no release yet
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-arduino-mode")
|
(name "emacs-arduino-mode")
|
||||||
(version (git-version "0" revision commit))
|
(version (git-version "1.3.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/stardiviner/arduino-mode")
|
(url "https://repo.or.cz/arduino-mode")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "08vnbz9gpah1l93fzfd87aawrhcnh2v1kyfxgsn88pdwg8awz8rx"))
|
(base32 "16izwrk1dfsa14kylfhsxdwkx76g0jdk0znl1z7cypxh5q9ijy1x"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system emacs-build-system)
|
(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
|
(inputs
|
||||||
(list emacs-flycheck emacs-spinner))
|
(list emacs-flycheck emacs-spinner))
|
||||||
(synopsis "Emacs major mode for editing Arduino sketches")
|
(synopsis "Emacs major mode for editing Arduino sketches")
|
||||||
(description "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+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-annalist
|
(define-public emacs-annalist
|
||||||
|
|
Loading…
Reference in a new issue