diff options
author | Matt Turner <mattst88@gentoo.org> | 2024-12-16 23:14:28 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2024-12-17 21:59:44 -0500 |
commit | 2b210d2cf3d12742d2109d82a3ea7f388c3641bd (patch) | |
tree | b9077b2ab8f079a0d31993f1af5543cc163c2f4a /eclass | |
parent | sys-devel/crossdev: Stabilize 20241202 hppa, #946079 (diff) | |
download | gentoo-2b210d2cf3d12742d2109d82a3ea7f388c3641bd.tar.gz gentoo-2b210d2cf3d12742d2109d82a3ea7f388c3641bd.tar.bz2 gentoo-2b210d2cf3d12742d2109d82a3ea7f388c3641bd.zip |
xorg-3.eclass: Disallow EAPI=7
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xorg-3.eclass | 4 |
1 files 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 <scarabeus@gentoo.org> # Author: Donnie Berkholz <dberkholz@gentoo.org> # Author: Matt Turner <mattst88@gentoo.org> -# @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 |