[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/git-commit a9604e0eb0 5/6: make: Add Compat dependency and
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/git-commit a9604e0eb0 5/6: make: Add Compat dependency and remove Dash were appropriate |
Date: |
Sat, 4 Feb 2023 06:59:07 -0500 (EST) |
branch: elpa/git-commit
commit a9604e0eb0ffbc55b1fababbc770598e0eab2887
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
make: Add Compat dependency and remove Dash were appropriate
---
Makefile | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 0e634bc725..537c54ac57 100644
--- a/Makefile
+++ b/Makefile
@@ -202,12 +202,13 @@ define set_package_requires_nongnu
(--update-package "lisp/git-commit.el" "$(GIT_COMMIT_VERSION)"
`((emacs ,emacs-version) ;`
- (dash ,dash-version)
+ (compat ,compat-version)
(transient ,transient-version)
(with-editor ,with-editor-version)))
(--update-package "lisp/magit.el" "$(MAGIT_SECTION_VERSION)"
`((emacs ,emacs-version) ;`
+ (compat ,compat-version)
(dash ,dash-version)
(git-commit ,git-commit-version)
(magit-section ,magit-section-version)
@@ -216,11 +217,13 @@ define set_package_requires_nongnu
(--update-package "lisp/magit-libgit.el" "$(MAGIT_LIBGIT_VERSION)"
`((emacs "$(LIBGIT_EMACS_VERSION)") ;`
+ (compat ,compat-version)
(libgit ,libgit-version)
(magit ,magit-version)))
(--update-package "lisp/magit-section.el" "$(MAGIT_SECTION_VERSION)"
`((emacs ,emacs-version) ;`
+ (compat ,compat-version)
(dash ,dash-version)))
endef
export set_package_requires_nongnu
@@ -232,11 +235,13 @@ define set_package_requires_melpa
"(define-package \"git-commit\" \"$(GIT_COMMIT_VERSION)$(DEV_SUFFIX)\"
\"Edit Git commit messages.\"
'((emacs %S)
+ (compat %S)
(transient %S)
(with-editor %S))
:homepage \"https://magit.vc\"
:keywords '(\"git\" \"tools\" \"vc\"))
" emacs-version
+ compat-version
transient-version
with-editor-version)))
@@ -245,6 +250,7 @@ define set_package_requires_melpa
"(define-package \"magit\" \"$(MAGIT_VERSION)$(DEV_SUFFIX)\"
\"A Git porcelain inside Emacs.\"
'((emacs %S)
+ (compat %S)
(dash %S)
(git-commit %S)
(magit-section %S)
@@ -253,6 +259,7 @@ define set_package_requires_melpa
:homepage \"https://magit.vc\"
:keywords '(\"git\" \"tools\" \"vc\"))
" emacs-version
+ compat-version
dash-version
git-commit-version
magit-section-version
@@ -264,11 +271,13 @@ define set_package_requires_melpa
"(define-package \"magit-libgit\" \"$(MAGIT_LIBGIT_VERSION)$(DEV_SUFFIX)\"
\"(POC) Teach Magit to use Libgit2.\"
'((emacs %S)
+ (compat %S)
(libgit %S)
(magit %S))
:homepage \"https://magit.vc\"
:keywords '(\"git\" \"tools\" \"vc\"))
" emacs-version
+ compat-version
libgit-version
magit-version)))
@@ -276,17 +285,20 @@ define set_package_requires_melpa
(insert (format
"(define-package \"magit-section\" \"$(MAGIT_SECTION_VERSION)$(DEV_SUFFIX)\"
\"Sections for read-only buffers.\"
- '((emacs %S)
- (dash %S))
+ '((emacs %S)
+ (compat %S)
+ (dash %S))
:homepage \"https://magit.vc\"
:keywords '(\"tools\"))
" emacs-version
+ compat-version
dash-version)))
endef
export set_package_requires_melpa
define set_package_versions
(emacs-version "$(EMACS_VERSION)")
+(compat-version "$(COMPAT_VERSION)")
(dash-version "$(DASH_VERSION)")
(git-commit-version "$(GIT_COMMIT_VERSION)")
(libgit-version "$(LIBGIT_VERSION)")
@@ -300,6 +312,7 @@ export set_package_versions
define set_package_snapshots
(emacs-version "$(EMACS_VERSION)")
+(compat-version "$(COMPAT_SNAPSHOT)")
(dash-version "$(DASH_MELPA_SNAPSHOT)")
(git-commit-version "$(GIT_COMMIT_MELPA_SNAPSHOT)")
(libgit-version "$(LIBGIT_MELPA_SNAPSHOT)")
- [nongnu] elpa/git-commit updated (48d38df20c -> bc00937dd7), ELPA Syncer, 2023/02/04
- [nongnu] elpa/git-commit d5d8d6c087 1/6: magit-section.el: Format Package-Requires as in other libraries, ELPA Syncer, 2023/02/04
- [nongnu] elpa/git-commit bd0d22975c 4/6: make: Fix and tweak set_package_requires_melpa, ELPA Syncer, 2023/02/04
- [nongnu] elpa/git-commit bc00937dd7 6/6: Bump dependencies, ELPA Syncer, 2023/02/04
- [nongnu] elpa/git-commit a9604e0eb0 5/6: make: Add Compat dependency and remove Dash were appropriate,
ELPA Syncer <=
- [nongnu] elpa/git-commit 269bb6ff41 2/6: make: Use ".50-git" as suffix of unreleased versions, ELPA Syncer, 2023/02/04
- [nongnu] elpa/git-commit 35245a6010 3/6: make: Fix set_package_requires_nongnu, ELPA Syncer, 2023/02/04