diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-02-14 11:53:32 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-02-14 11:54:23 +0100 |
| commit | 805c3f44fb33a3d0313be2f9ec42a720809a011b (patch) | |
| tree | 155d9bc9cd3168c2ba5ac3ab6f0b1045ed0e4493 | |
| parent | 6682a3b271b8bbf641618b1543349e93d5bfda93 (diff) | |
gnu: emacs-engrave-faces: Update to 0.3.1-0.0cc5d0b.
* gnu/packages/emacs-xyz.scm (emacs-engrave-faces): Update to
0.3.1-0.0cc5d0b.
[source]: Switch to git-fetch.
[arguments]: Disable #:tests?.
[home-page]: Update.
Change-Id: I192f572d8464690ddbb428011677f987be8eb1ea
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3a39875005a..ca1c74fdcd7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25709,20 +25709,27 @@ from the comfort of your editor.") (license license:gpl3+))) (define-public emacs-engrave-faces - (package - (name "emacs-engrave-faces") - (version "0.3.1") - (source (origin - (method url-fetch) - (uri (string-append "https://elpa.gnu.org/packages/engrave-faces-" - version ".tar")) - (sha256 - (base32 - "1q4sjl2rvcfwcirm32nmi53258ln71yhh1dgszlxwknm38a14v3i")))) - (build-system emacs-build-system) - (home-page "https://github.com/tecosaur/engrave-faces") - (synopsis "Convert font-lock faces to other formats") - (description "There are some great packages for exporting buffers to + ;; Last release is from 2022. + (let ((commit "0cc5d0b9801944d5678a7908885f9dea8de05753") + (revision "0")) + (package + (name "emacs-engrave-faces") + (version (git-version "0.3.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://code.tecosaur.net/tec/engrave-faces/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "11ib4bkmzajvaz7jva4yjj1wfv69iaiwflffprzzbfl2f39fv3if")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ;no tests + (home-page "https://code.tecosaur.net/tec/engrave-faces/") + (synopsis "Convert font-lock faces to other formats") + (description "There are some great packages for exporting buffers to particular formats, but each one seems to reinvent the core mechanism of processing the font-lock in a buffer such that it can be exported to a particular format. @@ -25730,7 +25737,7 @@ a particular format. This package aims to produce a versatile generic core which can process a fontified buffer and pass the data to any number of backends which can deal with specific output formats.") - (license license:gpl3+))) + (license license:gpl3+)))) (define-public emacs-enh-ruby-mode ;; The latest tag is from 2019. |
