diff options
author | 2024-10-08 17:31:25 +0200 | |
---|---|---|
committer | 2024-10-08 17:31:25 +0200 | |
commit | 4dfda0e55ff2b2b96b2b08f6fd3520014bfe67ed (patch) | |
tree | 67e505d031e4c9568db951089dfbabae9c7a1f34 | |
parent | php-pear-r2.eclass: drop support for EAPI 6 (diff) | |
download | gentoo-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.eclass | 6 |
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 |