diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-04-02 12:30:44 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-04-02 12:51:21 -0700 |
commit | f355aa6676830d7b6ca10cf011630301977870b2 (patch) | |
tree | 2edaaba53f784d78f8b64bcdf052945191f8b0ec /eclass/xorg-3.eclass | |
parent | kde-frameworks/kimageformats: Keyword 5.92.0-r1 ppc64, #834999 (diff) | |
download | gentoo-f355aa6676830d7b6ca10cf011630301977870b2.tar.gz gentoo-f355aa6676830d7b6ca10cf011630301977870b2.tar.bz2 gentoo-f355aa6676830d7b6ca10cf011630301977870b2.zip |
xorg-3.eclass: Support EAPI 8
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'eclass/xorg-3.eclass')
-rw-r--r-- | eclass/xorg-3.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index e908d51c669f..17382938c047 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @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 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: multilib-minimal # @BLURB: Reduces code duplication in the modularized X11 ebuilds. # @DESCRIPTION: @@ -59,7 +59,7 @@ fi EXPORTED_FUNCTIONS="src_prepare src_configure src_unpack src_compile src_install pkg_postinst pkg_postrm" case "${EAPI:-0}" in - 7) ;; + [7-8]) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |