emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/git-commit baae31e08d 1/2: Depend on seq-2.24 in all packa


From: ELPA Syncer
Subject: [nongnu] elpa/git-commit baae31e08d 1/2: Depend on seq-2.24 in all packages
Date: Sun, 24 Sep 2023 16:00:28 -0400 (EDT)

branch: elpa/git-commit
commit baae31e08df7d910778fd805d6d2d81411357dde
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Depend on seq-2.24 in all packages
    
    In [1: 84eaa203f3] we only did this for `magit' itself.
    
    1: 2023-09-21 84eaa203f3c70d55f29fbe6a8d6d9d5334cb6818
       Use seq-keep instead of delq and mapcar
    
    This is not strictly necessary for `git-commit' because there we don't
    *currently* use `seq-keep', but in the future we might very well start
    using it there as well, without remembering that a dependency has to
    be added.  So let's just do it now.
---
 Makefile              | 5 ++++-
 lisp/git-commit.el    | 3 +++
 lisp/magit-libgit.el  | 1 +
 lisp/magit-section.el | 3 ++-
 4 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index d170a34177..efcf803b48 100644
--- a/Makefile
+++ b/Makefile
@@ -204,6 +204,7 @@ define set_package_requires_nongnu
 (--update-package "lisp/git-commit.el" "$(GIT_COMMIT_VERSION)"
 `((emacs ,emacs-version) ;`
   (compat ,compat-version)
+  (seq ,seq-version)
   (transient ,transient-version)
   (with-editor ,with-editor-version)))
 
@@ -221,12 +222,14 @@ define set_package_requires_nongnu
 `((emacs "$(LIBGIT_EMACS_VERSION)") ;`
   (compat ,compat-version)
   (libgit ,libgit-version)
+  (seq ,seq-version)
   (magit ,magit-version)))
 
 (--update-package "lisp/magit-section.el" "$(MAGIT_SECTION_VERSION)"
 `((emacs ,emacs-version) ;`
   (compat ,compat-version)
-  (dash ,dash-version)))
+  (dash ,dash-version)
+  (seq ,seq-version)))
 endef
 export set_package_requires_nongnu
 
diff --git a/lisp/git-commit.el b/lisp/git-commit.el
index a4c2a22060..bba999dbde 100644
--- a/lisp/git-commit.el
+++ b/lisp/git-commit.el
@@ -15,6 +15,7 @@
 ;; Package-Requires: (
 ;;     (emacs "25.1")
 ;;     (compat "29.1.3.4")
+;;     (seq "2.24")
 ;;     (transient "0.3.6")
 ;;     (with-editor "3.0.5"))
 
@@ -118,7 +119,9 @@
 ;;; Code:
 
 (require 'compat)
+(require 'seq)
 (require 'subr-x)
+
 (require 'log-edit)
 (require 'ring)
 (require 'rx)
diff --git a/lisp/magit-libgit.el b/lisp/magit-libgit.el
index cce6e9c082..9162c43941 100644
--- a/lisp/magit-libgit.el
+++ b/lisp/magit-libgit.el
@@ -13,6 +13,7 @@
 ;;     (emacs "26.1")
 ;;     (compat "29.1.3.4")
 ;;     (libgit "0")
+;;     (seq "2.24")
 ;;     (magit "3.3.0"))
 
 ;; SPDX-License-Identifier: GPL-3.0-or-later
diff --git a/lisp/magit-section.el b/lisp/magit-section.el
index 5aed2a54f7..e4600ee365 100644
--- a/lisp/magit-section.el
+++ b/lisp/magit-section.el
@@ -12,7 +12,8 @@
 ;; Package-Requires: (
 ;;     (emacs "25.1")
 ;;     (compat "29.1.3.4")
-;;     (dash "2.19.1"))
+;;     (dash "2.19.1")
+;;     (seq "2.24"))
 
 ;; SPDX-License-Identifier: GPL-3.0-or-later
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]