diff options
author | Sam James <sam@gentoo.org> | 2024-09-07 22:38:46 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-08 19:21:23 +0100 |
commit | 001d4ff8cf4b01897276841e706a78eeb119a4c5 (patch) | |
tree | b70b3c0bc64253a76f3bb08db7554bc2020eabed /eclass | |
parent | toolchain-funcs.eclass: add global-scope ewarn for deprecated < EAPI 7 (diff) | |
download | gentoo-001d4ff8cf4b01897276841e706a78eeb119a4c5.tar.gz gentoo-001d4ff8cf4b01897276841e706a78eeb119a4c5.tar.bz2 gentoo-001d4ff8cf4b01897276841e706a78eeb119a4c5.zip |
udev.eclass: add global-scope ewarn for deprecated < EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/udev.eclass | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/eclass/udev.eclass b/eclass/udev.eclass index ac94f98221aa..7fd99cbba8b0 100644 --- a/eclass/udev.eclass +++ b/eclass/udev.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: udev.eclass @@ -36,14 +36,18 @@ # } # @CODE +if [[ -z ${_UDEV_ECLASS} ]]; then +_UDEV_ECLASS=1 + case ${EAPI} in - 5|6|7|8) ;; + 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 -if [[ -z ${_UDEV_ECLASS} ]]; then -_UDEV_ECLASS=1 - inherit toolchain-funcs if [[ ${EAPI} == [56] ]]; then |