aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2015-08-16 19:29:00 +0200
committerJonas Bernoulli <jonas@bernoul.li>2015-08-16 19:29:00 +0200
commit1bfa83cc2ec378c137b548d341ba304473815b72 (patch)
tree3e6839557d0438906cbf47db9fc1f9dd1147b31c /Makefile
parent47ff67a04dafb514095cc05e8951da2d0d28c141 (diff)
release version 2.2.02.2.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 12 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 2ae4b5f..4244ad7 100644
--- a/Makefile
+++ b/Makefile
@@ -145,8 +145,9 @@ elpa: $(ELPA_ARCHIVES)
define with_editor_pkg
(define-package "with-editor" "$(VERSION)"
"Use the Emacsclient as $$EDITOR"
- '((emacs "24.4")
- (dash "2.10.0")))
+ '((emacs "$(EMACS_VERSION)")
+ (async "$(ASYNC_VERSION)")
+ (dash "$(DASH_VERSION)")))
endef
# '
export with_editor_pkg
@@ -169,8 +170,9 @@ git-commit-$(VERSION).el:
define magit_popup_pkg
(define-package "magit-popup" "$(VERSION)"
"Define prefix-infix-suffix command combos"
- '((emacs "24.4")
- (dash "2.10.0")))
+ '((emacs "$(EMACS_VERSION)")
+ (async "$(ASYNC_VERSION)")
+ (dash "$(DASH_VERSION)")))
endef
# '
export magit_popup_pkg
@@ -191,11 +193,12 @@ ELPA_DOCS_FILES = $(addprefix Documentation/,AUTHORS.md dir magit.info)
define magit_pkg
(define-package "magit" "$(VERSION)"
"A Git porcelain inside Emacs"
- '((emacs "24.4")
- (dash "2.10.0")
- (with-editor "2.1.0")
- (git-commit "2.1.0")
- (magit-popup "2.1.0")))
+ '((emacs "$(EMACS_VERSION)")
+ (async "$(ASYNC_VERSION)")
+ (dash "$(DASH_VERSION)")
+ (with-editor "$(VERSION)")
+ (git-commit "$(VERSION)")
+ (magit-popup "$(VERSION)")))
endef
# '
export magit_pkg