all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#61008] [PATCH] gnu: emacs-smartparens: Fix package cl deprecation.
@ 2023-01-22 16:29 Nicolas Graves via Guix-patches via
  2023-01-22 16:34 ` Nicolas Goaziou
  2023-01-24 13:08 ` [bug#61008] [PATCH v2] gnu: emacs-smartparens: Update to 1.11.0-0.7afd647 Nicolas Graves via Guix-patches via
  0 siblings, 2 replies; 6+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-01-22 16:29 UTC (permalink / raw)
  To: 61008; +Cc: ngraves

* gnu/packages/emacs-xyz.scm (emacs-smartparens):
[arguments] Fix package cl deprecation.
---
 gnu/packages/emacs-xyz.scm | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ed5c3bd71d..8bde2825f1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10575,6 +10575,17 @@ (define-public emacs-smartparens
        (sha256
         (base32 "0zij2f2rjjym98w68jkp10n1ckpfprlkk217c3fg16hz5nq4vnm6"))))
     (build-system emacs-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'fix-deprecated-cl-warning
+            (lambda _
+              (substitute* "smartparens.el"
+                ((string-append
+                  "\\(eval-when-compile \\(require 'cl\\)\\) "
+                  " ; for `lexical-let'")
+                 "")))))))
     (propagated-inputs
      (list emacs-dash emacs-markdown-mode))
     (home-page "https://github.com/Fuco1/smartparens")
-- 
2.39.1





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

end of thread, other threads:[~2023-02-07  8:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-22 16:29 [bug#61008] [PATCH] gnu: emacs-smartparens: Fix package cl deprecation Nicolas Graves via Guix-patches via
2023-01-22 16:34 ` Nicolas Goaziou
2023-01-22 19:19   ` Nicolas Graves via Guix-patches via
2023-01-22 22:09     ` Nicolas Goaziou
2023-01-24 13:08 ` [bug#61008] [PATCH v2] gnu: emacs-smartparens: Update to 1.11.0-0.7afd647 Nicolas Graves via Guix-patches via
2023-02-07  8:08   ` bug#61008: " Christopher Baines

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.