diff options
author | David Seifert <soap@gentoo.org> | 2023-03-17 23:04:11 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-03-17 23:04:11 +0100 |
commit | c34a14a9eb45999c2d72657cf960a078172e5a05 (patch) | |
tree | 70c70fbbb404cc56699b3e67da1d76068d7cc445 /eclass/cron.eclass | |
parent | cron.eclass: add EAPI 8 (diff) | |
download | gentoo-c34a14a9eb45999c2d72657cf960a078172e5a05.tar.gz gentoo-c34a14a9eb45999c2d72657cf960a078172e5a05.tar.bz2 gentoo-c34a14a9eb45999c2d72657cf960a078172e5a05.zip |
cron.eclass: remove EAPI 6
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/cron.eclass')
-rw-r--r-- | eclass/cron.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/cron.eclass b/eclass/cron.eclass index ebf8ea1e824a..c185c0eaa032 100644 --- a/eclass/cron.eclass +++ b/eclass/cron.eclass @@ -6,7 +6,7 @@ # maintainer-needed@gentoo.org # @AUTHOR: # Original Author: Aaron Walker <ka0ttic@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Some functions for cron # @DESCRIPTION: # Purpose: The main motivation for this eclass was to simplify @@ -18,7 +18,7 @@ # chosen based on the most common setting among cron ebuilds. case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |