diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-02-04 12:38:02 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-02-04 12:38:02 +0100 |
| commit | bd0d22975c8b5f2f04c6da51bc08a5276b511725 (patch) | |
| tree | 7a5fbce72d695ed0ee2495f3cb8468b9dfc4bb29 /Makefile | |
| parent | 35245a60107675717c1d6cebb868edb61db79a45 (diff) | |
make: Fix and tweak set_package_requires_melpa
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 25 |
1 files changed, 12 insertions, 13 deletions
@@ -231,13 +231,12 @@ define set_package_requires_melpa (insert (format "(define-package \"git-commit\" \"$(GIT_COMMIT_VERSION)$(DEV_SUFFIX)\" \"Edit Git commit messages.\" - '((emacs %S) - (transient %S) + '((emacs %S) + (transient %S) (with-editor %S)) :homepage \"https://magit.vc\" :keywords '(\"git\" \"tools\" \"vc\")) " emacs-version - dash-version transient-version with-editor-version))) @@ -245,12 +244,12 @@ define set_package_requires_melpa (insert (format "(define-package \"magit\" \"$(MAGIT_VERSION)$(DEV_SUFFIX)\" \"A Git porcelain inside Emacs.\" - '((emacs %S) - (dash %S) - (git-commit %S) + '((emacs %S) + (dash %S) + (git-commit %S) (magit-section %S) - (transient %S) - (with-editor %S)) + (transient %S) + (with-editor %S)) :homepage \"https://magit.vc\" :keywords '(\"git\" \"tools\" \"vc\")) " emacs-version @@ -263,10 +262,10 @@ define set_package_requires_melpa (with-temp-file "lisp/magit-libgit-pkg.el" (insert (format "(define-package \"magit-libgit\" \"$(MAGIT_LIBGIT_VERSION)$(DEV_SUFFIX)\" - \".\" - '((emacs %S) + \"(POC) Teach Magit to use Libgit2.\" + '((emacs %S) (libgit %S) - (magit %S)) + (magit %S)) :homepage \"https://magit.vc\" :keywords '(\"git\" \"tools\" \"vc\")) " emacs-version @@ -276,9 +275,9 @@ define set_package_requires_melpa (with-temp-file "lisp/magit-section-pkg.el" (insert (format "(define-package \"magit-section\" \"$(MAGIT_SECTION_VERSION)$(DEV_SUFFIX)\" - \"Sections for read-only buffers\" + \"Sections for read-only buffers.\" '((emacs %S) - (dash %S)) + (dash %S)) :homepage \"https://magit.vc\" :keywords '(\"tools\")) " emacs-version |
