Skip to content

Commit

Permalink
Support Emacs 26.1 again
Browse files Browse the repository at this point in the history
Since [1: 1ebac69] Emacs 26.1 effectively wasn't supported anymore and
[2: fa83e81] made that formal, but we should support that release at
least a while longer, which do by using the Compat package.

1: 2023-07-18 1ebac69
   package-recipe-validate-all: Report progress

2: 2023-12-24 fa83e81
   Fix CI build by requiring a newer Emacs
  • Loading branch information
tarsius committed Jan 2, 2024
1 parent 9f62062 commit 0947239
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ include default.mk

.PHONY: test

# https://github.com/emacscollective/workflows/blob/main/bin/install-deps
# expects this to find this in this file.
DEPS = compat

all: lisp

help:
Expand Down
2 changes: 1 addition & 1 deletion default.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ELS += package-build.el
ELS += package-recipe-mode.el
ELCS = $(ELS:.el=.elc)

DEPS =
DEPS = compat

VERSION ?= $(shell test -e $(TOP).git && git describe --tags --abbrev=0 | cut -c2-)

Expand Down
2 changes: 1 addition & 1 deletion package-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
;; Keywords: maint tools

;; Package-Version: 4.0.0.50-git
;; Package-Requires: ((emacs "27.1"))
;; Package-Requires: ((emacs "26.1") (compat "27.1"))

;; SPDX-License-Identifier: GPL-3.0-or-later

Expand Down

0 comments on commit 0947239

Please sign in to comment.