diff options
author | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:36 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:36 +0200 |
commit | 6ff32128c05cd0f447bb2d77430695591370a8a6 (patch) | |
tree | 8bd869526b69bd5ad85705c4bef0ded7f03b30eb /eclass | |
parent | systemd.eclass: drop support for EAPI 5 and 6 (diff) | |
download | gentoo-6ff32128c05cd0f447bb2d77430695591370a8a6.tar.gz gentoo-6ff32128c05cd0f447bb2d77430695591370a8a6.tar.bz2 gentoo-6ff32128c05cd0f447bb2d77430695591370a8a6.zip |
tmpfiles.eclass: drop support for EAPI 5 and 6
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/tmpfiles.eclass | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass index 63889a275fef..aed792adad1c 100644 --- a/eclass/tmpfiles.eclass +++ b/eclass/tmpfiles.eclass @@ -8,7 +8,7 @@ # @AUTHOR: # Mike Gilbert <floppym@gentoo.org> # William Hubbs <williamh@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Functions related to tmpfiles.d files # @DESCRIPTION: # This eclass provides functionality related to installing and @@ -32,7 +32,7 @@ # Typical usage of this eclass: # # @CODE -# EAPI=6 +# EAPI=8 # inherit tmpfiles # # ... @@ -56,10 +56,6 @@ if [[ -z ${_TMPFILES_ECLASS} ]]; then _TMPFILES_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 |