gnu: emacs-doom-themes: Only disable breaking compilations.
* gnu/packages/emacs-xyz.scm (emacs-doom-themes)[phases]: <build>: Readd this phase. <disable-breaking-compilation>: Add this phase to work around single file errors in bytecompilation. Signed-off-by: Brett Gilio <brettg@gnu.org>master
parent
9ce3f7f6dc
commit
1cc0445e40
|
@ -19827,6 +19827,10 @@ contrast and few colors.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #t
|
`(#:tests? #t
|
||||||
#:test-command '("ert-runner")
|
#:test-command '("ert-runner")
|
||||||
|
#:modules ((guix build emacs-build-system)
|
||||||
|
(guix build utils)
|
||||||
|
(guix build emacs-utils)
|
||||||
|
(srfi srfi-1))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'move-themes
|
(add-after 'unpack 'move-themes
|
||||||
|
@ -19837,12 +19841,21 @@ contrast and few colors.")
|
||||||
(rename-file f (basename f)))
|
(rename-file f (basename f)))
|
||||||
(find-files "./themes" ".*\\.el$"))
|
(find-files "./themes" ".*\\.el$"))
|
||||||
#t))
|
#t))
|
||||||
;; XXX: There is a byte-code overflow issue in the latest
|
;; There is a byte-code overflow issue in the latest checkout
|
||||||
;; checkout which affects byte-compilation for several theme
|
;; which affects byte-compilation for several (read `most') theme
|
||||||
;; files. The easiest way to work around this is to disable
|
;; files. In order to cope with this issue, we disable
|
||||||
;; byte-compilation until the issue is resolved.
|
;; byte-compilation until this issue is resolved.
|
||||||
;; <https://github.com/hlissner/emacs-doom-themes/issues/314>
|
;; <https://github.com/hlissner/emacs-doom-themes/issues/314>
|
||||||
(delete 'build))))
|
(add-after 'move-themes 'disable-breaking-compilation
|
||||||
|
(lambda _
|
||||||
|
(for-each (lambda (file)
|
||||||
|
(chmod file #o600) ; needed to write changes.
|
||||||
|
(emacs-batch-disable-compilation file))
|
||||||
|
(cons "doom-themes-ext-neotree.el"
|
||||||
|
(lset-difference string-contains
|
||||||
|
(find-files "." ".*-theme.el")
|
||||||
|
'("snazzy" "tomorrow-day"))))
|
||||||
|
#t)))))
|
||||||
(synopsis "Wide collection of color themes for Emacs")
|
(synopsis "Wide collection of color themes for Emacs")
|
||||||
(description "Emacs-doom-themes contains numerous popular color themes for
|
(description "Emacs-doom-themes contains numerous popular color themes for
|
||||||
Emacs that integrate with major modes like Org-mode.")
|
Emacs that integrate with major modes like Org-mode.")
|
||||||
|
|
Reference in New Issue