all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#45073] [PATCH] gnu: emacs-list-utils: Suppress warning "Package cl is deprecated".
@ 2020-12-06 15:15 Michael Rohleder
  2020-12-12 20:46 ` bug#45073: " Nicolas Goaziou
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Rohleder @ 2020-12-06 15:15 UTC (permalink / raw)
  To: 45073; +Cc: Michael Rohleder

* gnu/packages/emacs-xyz.scm (emacs-list-utils)[arguments]: Add phase
patch-require-cl to substitute "(require 'cl)" in a autoload section.
---
 gnu/packages/emacs-xyz.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 74ea690602..565f4b8b98 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15237,6 +15237,14 @@ and @code{erc-send-modify-hook} to download and show images.")
        (sha256
         (base32 "07hbz2md52ccy95gv4d5n6szrfmpfqf3w4kwqdg2cf54c7kgf7hw"))))
     (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")
     (synopsis "List-manipulation utility functions")
     (description "This package provides a list manipulation library for Emacs.")
-- 
2.29.2





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#45073: [PATCH] gnu: emacs-list-utils: Suppress warning "Package cl is deprecated".
  2020-12-06 15:15 [bug#45073] [PATCH] gnu: emacs-list-utils: Suppress warning "Package cl is deprecated" Michael Rohleder
@ 2020-12-12 20:46 ` Nicolas Goaziou
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2020-12-12 20:46 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 45073-done

Hello,

Michael Rohleder <mike@rohleder.de> writes:

> * gnu/packages/emacs-xyz.scm (emacs-list-utils)[arguments]: Add phase
> patch-require-cl to substitute "(require 'cl)" in a autoload section.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-12-12 21:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-06 15:15 [bug#45073] [PATCH] gnu: emacs-list-utils: Suppress warning "Package cl is deprecated" Michael Rohleder
2020-12-12 20:46 ` bug#45073: " Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.