diff options
Diffstat (limited to 'eclass/lua-single.eclass')
-rw-r--r-- | eclass/lua-single.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/lua-single.eclass b/eclass/lua-single.eclass index 11c2790dac29..7abe1eb6674a 100644 --- a/eclass/lua-single.eclass +++ b/eclass/lua-single.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: lua-single.eclass @@ -8,7 +8,7 @@ # @AUTHOR: # Marek Szuba <marecki@gentoo.org> # Based on python-single-r1.eclass by Michał Górny <mgorny@gentoo.org> et al. -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: An eclass for Lua packages not installed for multiple implementations. # @DESCRIPTION: # An extension of lua.eclass suite for packages which don't support being @@ -34,7 +34,7 @@ # # @EXAMPLE: # @CODE -# EAPI=7 +# EAPI=8 # # LUA_COMPAT=( lua5-{1..3} ) # @@ -66,7 +66,7 @@ case ${EAPI:-0} in 0|1|2|3|4|5|6) die "Unsupported EAPI=${EAPI} (too old) for ${ECLASS}" ;; - 7) + 7|8) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" |