summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2021-06-16 10:24:49 +0100
committerMarek Szuba <marecki@gentoo.org>2021-06-21 11:04:34 +0100
commit7b1e924c21850c52a1cdc742ac8ef296c6685b95 (patch)
tree5f26a762ff04ae381c244b1b4990f8d43a9b646c /eclass/lua-single.eclass
parentlua.eclass: support EAPI 8 (diff)
downloadgentoo-7b1e924c21850c52a1cdc742ac8ef296c6685b95.tar.gz
gentoo-7b1e924c21850c52a1cdc742ac8ef296c6685b95.tar.bz2
gentoo-7b1e924c21850c52a1cdc742ac8ef296c6685b95.zip
lua-single.eclass: support EAPI 8
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'eclass/lua-single.eclass')
-rw-r--r--eclass/lua-single.eclass8
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}"