gnu: emacs-mu4e-patch: Rename to emacs-message-view-patch
The name was changed upstream to reflect that this extension works for both mu4e and gnus. * gnu/packages/emacs-xyz.scm (emacs-mu4e-patch): Deprecate it. (emacs-message-view-patch): Renamed from emacs-mu4e-patch. Description, synopsis, and inputs adjusted to reflect that mu4e is not required. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
6995d68435
commit
c6c0c985d3
1 changed files with 9 additions and 8 deletions
|
@ -13300,32 +13300,33 @@ automatically using existing List-ID headers in your mu database. Just press
|
||||||
automatically discovered and presented in recency order.")
|
automatically discovered and presented in recency order.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-mu4e-patch
|
(define-public emacs-message-view-patch
|
||||||
(let ((commit "522da46c1653b1cacc79cde91d6534da7ae9517d")
|
(let ((commit "522da46c1653b1cacc79cde91d6534da7ae9517d")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-mu4e-patch")
|
(name "emacs-message-view-patch")
|
||||||
(version (git-version "0.1.0" revision commit))
|
(version (git-version "0.1.0" revision commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/seanfarley/mu4e-patch")
|
(url "https://github.com/seanfarley/message-view-patch")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"10lzf3b70pk6rzdrgx0ww0gc94v0ydh9zj1gbsa20xw27ds7hmfn"))))
|
"10lzf3b70pk6rzdrgx0ww0gc94v0ydh9zj1gbsa20xw27ds7hmfn"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
|
||||||
(list mu))
|
|
||||||
(home-page "https://github.com/seanfarley/mu4e-patch")
|
(home-page "https://github.com/seanfarley/mu4e-patch")
|
||||||
(synopsis "Colorize patch-like emails in mu4e")
|
(synopsis "Colorize patch-like emails in mu4e or gnus")
|
||||||
(description
|
(description
|
||||||
"Extension for mu4e to colorize patch-like emails with diff-mode.
|
"Extension for mu4e or gnus to colorize patch-like emails with diff-mode.
|
||||||
This is based on Frank Terbeck's @code{gnus-article-treat-patch.el} but has
|
This is based on Frank Terbeck's @code{gnus-article-treat-patch.el} but has
|
||||||
been adapted to work with mu4e.")
|
been adapted to also work with mu4e.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-mu4e-patch
|
||||||
|
(deprecated-package "emacs-mu4e-patch" emacs-message-view-patch))
|
||||||
|
|
||||||
(define-public emacs-pretty-mode
|
(define-public emacs-pretty-mode
|
||||||
(package
|
(package
|
||||||
(name "emacs-pretty-mode")
|
(name "emacs-pretty-mode")
|
||||||
|
|
Reference in a new issue