eclass/udev: Sync with Gentoo

It's from Gentoo commit 001d4ff8cf4b01897276841e706a78eeb119a4c5.
This commit is contained in:
Flatcar Buildbot 2024-09-16 07:14:27 +00:00 committed by Krzesimir Nowak
parent d7f9ed1819
commit e88871d8e6

View File

@ -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
case ${EAPI} in
5|6|7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
esac
if [[ -z ${_UDEV_ECLASS} ]]; then
_UDEV_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
inherit toolchain-funcs
if [[ ${EAPI} == [56] ]]; then