summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-03-17 23:04:11 +0100
committerDavid Seifert <soap@gentoo.org>2023-03-17 23:04:11 +0100
commitc34a14a9eb45999c2d72657cf960a078172e5a05 (patch)
tree70c70fbbb404cc56699b3e67da1d76068d7cc445 /eclass/cron.eclass
parentcron.eclass: add EAPI 8 (diff)
downloadgentoo-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.eclass4
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