unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#55695] [PATCH] gnu: emacs-elm-mode: Fix wrong number of arguments.
@ 2022-05-29  3:36 Matthew James Kraai
  2022-05-31  2:27 ` bug#55695: Closing Matthew James Kraai
  0 siblings, 1 reply; 2+ messages in thread
From: Matthew James Kraai @ 2022-05-29  3:36 UTC (permalink / raw)
  To: 55695; +Cc: Matthew James Kraai

* gnu/packages/patches/emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch:
  New file.
* gnu/packages/patches/emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode:
  New file.
* gnu/packages/emacs-xyz.scm (emacs-elm-mode)[patches]: Use them here.
* gnu/local.mk (dist_patch_DATA): Add them here.
---
 gnu/local.mk                                  |  2 ++
 gnu/packages/emacs-xyz.scm                    |  6 +++-
 ...when-arg-for-obsolete-function-alias.patch | 25 +++++++++++++++
 ...rn-off-functions-for-elm-indent-mode.patch | 31 +++++++++++++++++++
 4 files changed, 63 insertions(+), 1 deletion(-)
 create mode 100644 gnu/packages/patches/emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch
 create mode 100644 gnu/packages/patches/emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode.patch

This is an alternative to #55675, backporting just the patches that are
necessary to fix the build.

diff --git a/gnu/local.mk b/gnu/local.mk
index bc82c5ba9f..eb087c5c46 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1024,6 +1024,8 @@ dist_patch_DATA =						\
   %D%/packages/patches/elm-reactor-static-files.patch		\
   %D%/packages/patches/elogind-revert-polkit-detection.patch	\
   %D%/packages/patches/emacs-deferred-fix-number-of-arguments.patch	\
+  %D%/packages/patches/emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch	\
+  %D%/packages/patches/emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode.patch	\
   %D%/packages/patches/emacs-exec-path.patch			\
   %D%/packages/patches/emacs-ess-fix-obsolete-function-alias.patch	\
   %D%/packages/patches/emacs-git-email-missing-parens.patch	\
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 31822dc641..9b71b4cd61 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -19710,7 +19710,11 @@ (define-public emacs-elm-mode
          (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0iwk4fmw8hq3ry4ky1zc7lgl4cpbnrjyk74c2xzddfspi3ks41fd"))))
+        (base32 "0iwk4fmw8hq3ry4ky1zc7lgl4cpbnrjyk74c2xzddfspi3ks41fd"))
+       (patches
+        (search-patches
+         "emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch"
+         "emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode.patch"))))
     (propagated-inputs
      (list emacs-dash emacs-f emacs-reformatter emacs-s))
     (build-system emacs-build-system)
diff --git a/gnu/packages/patches/emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch b/gnu/packages/patches/emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch
new file mode 100644
index 0000000000..0734dc7b48
--- /dev/null
+++ b/gnu/packages/patches/emacs-elm-mode-add-now-mandatory-when-arg-for-obsolete-function-alias.patch
@@ -0,0 +1,25 @@
+From 714a3cebb3fe7e82a294d046d7fa7978e9ca8945 Mon Sep 17 00:00:00 2001
+From: Steve Purcell <steve@sanityinc.com>
+Date: Wed, 6 Jan 2021 15:28:10 +1300
+Subject: [PATCH] Add now-mandatory "when" arg for obsolete function alias
+
+---
+ elm-indent.el | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/elm-indent.el b/elm-indent.el
+index 1527434..17fab78 100644
+--- a/elm-indent.el
++++ b/elm-indent.el
+@@ -1200,7 +1200,7 @@ TYPE is either 'guard or 'rhs."
+     (define-key map [?\C-c ?\C-=] 'elm-indent-insert-equal)
+     map))
+ 
+-(define-obsolete-variable-alias 'elm-indent-map 'elm-indent-mode-map)
++(define-obsolete-variable-alias 'elm-indent-map 'elm-indent-mode-map "2017-10-29")
+ 
+ ;;;###autoload
+ (define-minor-mode elm-indent-mode
+-- 
+2.36.1
+
diff --git a/gnu/packages/patches/emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode.patch b/gnu/packages/patches/emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode.patch
new file mode 100644
index 0000000000..f1a4f49152
--- /dev/null
+++ b/gnu/packages/patches/emacs-elm-mode-remove-obsolete-turn-on-and-turn-off-functions-for-elm-indent-mode.patch
@@ -0,0 +1,31 @@
+From 688d20b7cd0220af334d618608d8dfb0df250c69 Mon Sep 17 00:00:00 2001
+From: Steve Purcell <steve@sanityinc.com>
+Date: Sun, 5 Apr 2020 15:22:40 +1200
+Subject: [PATCH] Remove obsolete turn-on- and turn-off- functions for
+ elm-indent-mode
+
+---
+ elm-indent.el | 7 -------
+ 1 file changed, 7 deletions(-)
+
+diff --git a/elm-indent.el b/elm-indent.el
+index a1a2a1c..8ffcd9f 100644
+--- a/elm-indent.el
++++ b/elm-indent.el
+@@ -1233,13 +1233,6 @@ Invokes `elm-indent-hook' if not nil."
+     (kill-local-variable 'indent-line-function)
+     (kill-local-variable 'indent-region-function)))
+ 
+-;;;###autoload
+-(define-obsolete-function-alias 'turn-on-elm-indent 'elm-indent-mode)
+-
+-(defun turn-off-elm-indent ()
+-  "Turn off ``intelligent'' Elm indentation mode."
+-  (elm-indent-mode nil))
+-
+ 
+ (provide 'elm-indent)
+ ;;; elm-indent.el ends here
+-- 
+2.36.1
+
-- 
2.36.1





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

* bug#55695: Closing
  2022-05-29  3:36 [bug#55695] [PATCH] gnu: emacs-elm-mode: Fix wrong number of arguments Matthew James Kraai
@ 2022-05-31  2:27 ` Matthew James Kraai
  0 siblings, 0 replies; 2+ messages in thread
From: Matthew James Kraai @ 2022-05-31  2:27 UTC (permalink / raw)
  To: 55695-done

This is superseded by 55717.

-- 
Matt




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

end of thread, other threads:[~2022-05-31  2:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-29  3:36 [bug#55695] [PATCH] gnu: emacs-elm-mode: Fix wrong number of arguments Matthew James Kraai
2022-05-31  2:27 ` bug#55695: Closing Matthew James Kraai

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).