summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2024-10-08 17:31:25 +0200
committerDavid Seifert <soap@gentoo.org>2024-10-08 17:31:25 +0200
commit4dfda0e55ff2b2b96b2b08f6fd3520014bfe67ed (patch)
tree67e505d031e4c9568db951089dfbabae9c7a1f34
parentphp-pear-r2.eclass: drop support for EAPI 6 (diff)
downloadgentoo-4dfda0e55ff2b2b96b2b08f6fd3520014bfe67ed.tar.gz
gentoo-4dfda0e55ff2b2b96b2b08f6fd3520014bfe67ed.tar.bz2
gentoo-4dfda0e55ff2b2b96b2b08f6fd3520014bfe67ed.zip
portability.eclass: drop support for EAPI 6
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r--eclass/portability.eclass6
1 files changed, 1 insertions, 5 deletions
diff --git a/eclass/portability.eclass b/eclass/portability.eclass
index 926ac8b8b825..9efc9bfe4134 100644
--- a/eclass/portability.eclass
+++ b/eclass/portability.eclass
@@ -6,17 +6,13 @@
# base-system@gentoo.org
# @AUTHOR:
# Diego Pettenò <flameeyes@gentoo.org>
-# @SUPPORTED_EAPIS: 6 7 8
+# @SUPPORTED_EAPIS: 7 8
# @BLURB: This eclass is created to avoid using non-portable GNUisms inside ebuilds
if [[ -z ${_PORTABILITY_ECLASS} ]]; then
_PORTABILITY_ECLASS=1
case ${EAPI} in
- 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