gnu: emacs-list-utils: Suppress warning "Package cl is deprecated".
* gnu/packages/emacs-xyz.scm (emacs-list-utils)[arguments]: Add phase patch-require-cl to substitute "(require 'cl)" in a autoload section. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
4060df28d6
commit
036df7468c
1 changed files with 8 additions and 0 deletions
|
@ -15261,6 +15261,14 @@ and @code{erc-send-modify-hook} to download and show images.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "07hbz2md52ccy95gv4d5n6szrfmpfqf3w4kwqdg2cf54c7kgf7hw"))))
|
(base32 "07hbz2md52ccy95gv4d5n6szrfmpfqf3w4kwqdg2cf54c7kgf7hw"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-require-cl
|
||||||
|
(lambda _
|
||||||
|
(substitute* "list-utils.el"
|
||||||
|
(("\\(require 'cl\\)") "(require 'cl-lib)"))
|
||||||
|
#t)))))
|
||||||
(home-page "https://github.com/rolandwalker/list-utils")
|
(home-page "https://github.com/rolandwalker/list-utils")
|
||||||
(synopsis "List-manipulation utility functions")
|
(synopsis "List-manipulation utility functions")
|
||||||
(description "This package provides a list manipulation library for Emacs.")
|
(description "This package provides a list manipulation library for Emacs.")
|
||||||
|
|
Reference in a new issue