diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-08-26 19:50:44 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-08-28 00:02:55 +0200 |
commit | bb846f4ae2a0c02db5d808977d122b86cec75d86 (patch) | |
tree | 97be502b1e3f6d8804c49ec6d91a47a32f6ea890 | |
parent | Fix typo (diff) | |
download | ebuild-mode-bb846f4ae2a0c02db5d808977d122b86cec75d86.tar.gz ebuild-mode-bb846f4ae2a0c02db5d808977d122b86cec75d86.tar.bz2 ebuild-mode-bb846f4ae2a0c02db5d808977d122b86cec75d86.zip |
Drop EAPI 6
* ebuild-mode.el (ebuild-mode-eapi-list): Drop 6 from list of
supported EAPIs.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ebuild-mode.el | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2024-08-26 Ulrich Müller <ulm@gentoo.org> + * ebuild-mode.el (ebuild-mode-eapi-list): Drop 6 from list of + supported EAPIs. + * test/ebuild-mode-tests.el (ebuild-mode-test-input): New variable and function. (ebuild-mode-test-skeleton, ebuild-mode-test-keybindings): diff --git a/ebuild-mode.el b/ebuild-mode.el index aa1a473..4c23e73 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -68,9 +68,9 @@ :group 'ebuild) (defcustom ebuild-mode-eapi-list - '("6" "7" "8") + '("7" "8") "List of supported EAPIs. -The most recent EAPI must be listed last." +The most recent EAPI is listed last." :type '(repeat string) :group 'ebuild) |