commit: 2b210d2cf3d12742d2109d82a3ea7f388c3641bd Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Tue Dec 17 04:14:28 2024 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Wed Dec 18 02:59:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b210d2c
xorg-3.eclass: Disallow EAPI=7 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> eclass/xorg-3.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index ee4038533bfd..0d51be294051 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -8,7 +8,7 @@ # Author: Tomáš Chvátal <[email protected]> # Author: Donnie Berkholz <[email protected]> # Author: Matt Turner <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 8 # @PROVIDES: multilib-minimal # @BLURB: Reduces code duplication in the modularized X11 ebuilds. # @DESCRIPTION: @@ -23,7 +23,7 @@ # everything else should be automatic. case ${EAPI} in - 7|8) ;; + 8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
