summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2024-10-08 17:31:26 +0200
committerDavid Seifert <soap@gentoo.org>2024-10-08 17:31:26 +0200
commit7b35defea189cec8fc268e1ba56565d82150263f (patch)
tree9435a875f53876f3becfdaf89d1e9519b8e63746 /eclass
parentportability.eclass: drop support for EAPI 6 (diff)
downloadgentoo-7b35defea189cec8fc268e1ba56565d82150263f.tar.gz
gentoo-7b35defea189cec8fc268e1ba56565d82150263f.tar.bz2
gentoo-7b35defea189cec8fc268e1ba56565d82150263f.zip
prefix.eclass: drop support for EAPI 5 and 6
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/prefix.eclass6
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/prefix.eclass b/eclass/prefix.eclass
index e968e8ae8bac..078f483c6c2b 100644
--- a/eclass/prefix.eclass
+++ b/eclass/prefix.eclass
@@ -5,7 +5,7 @@
# @MAINTAINER:
# Feel free to contact the Prefix team through <prefix@gentoo.org> if
# you have problems, suggestions or questions.
-# @SUPPORTED_EAPIS: 5 6 7 8
+# @SUPPORTED_EAPIS: 7 8
# @BLURB: Eclass to provide Prefix functionality
# @DESCRIPTION:
# Gentoo Prefix allows users to install into a self defined offset
@@ -16,10 +16,6 @@ if [[ -z ${_PREFIX_ECLASS} ]]; then
_PREFIX_ECLASS=1
case ${EAPI} in
- 5|6)
- ewarn "${CATEGORY}/${PF}: ebuild uses ${ECLASS} with deprecated EAPI ${EAPI}!"
- ewarn "${CATEGORY}/${PF}: Support will be removed on 2024-10-08. Please port to newer EAPI."
- ;;
7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac