diff options
author | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:20 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:20 +0200 |
commit | 4eeedae2f7caf2b587f4e3d725aacb111f0ebe50 (patch) | |
tree | acea238802db924f1a18d0d6aa11af68e3391369 /eclass | |
parent | multiprocessing.eclass: drop support for EAPI 5 and 6 (diff) | |
download | gentoo-4eeedae2f7caf2b587f4e3d725aacb111f0ebe50.tar.gz gentoo-4eeedae2f7caf2b587f4e3d725aacb111f0ebe50.tar.bz2 gentoo-4eeedae2f7caf2b587f4e3d725aacb111f0ebe50.zip |
out-of-source-utils.eclass: drop support for EAPI 6
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/out-of-source-utils.eclass | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/eclass/out-of-source-utils.eclass b/eclass/out-of-source-utils.eclass index 55a88127ca71..567d974449ea 100644 --- a/eclass/out-of-source-utils.eclass +++ b/eclass/out-of-source-utils.eclass @@ -6,20 +6,16 @@ # Michał Górny <mgorny@gentoo.org> # @AUTHOR: # Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Utility functions for building packages out-of-source # @DESCRIPTION: # This eclass provides a run_in_build_dir() helper that can be used # to execute specified command inside BUILD_DIR. -if [[ ! ${_OUT_OF_SOURCE_UTILS_ECLASS} ]]; then +if [[ -z ${_OUT_OF_SOURCE_UTILS_ECLASS} ]]; then _OUT_OF_SOURCE_UTILS_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 |