Skip to content

Commit

Permalink
lua.eclass: support EAPI 8
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Szuba <[email protected]>
  • Loading branch information
Marek Szuba committed Jun 21, 2021
1 parent c107bb9 commit b2c11c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eclass/lua.eclass
Original file line number Diff line number Diff line change
@@ -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.eclass
Expand All @@ -8,7 +8,7 @@
# @AUTHOR:
# Marek Szuba <[email protected]>
# Based on python-r1.eclass by Michał Górny <[email protected]> et al.
# @SUPPORTED_EAPIS: 7
# @SUPPORTED_EAPIS: 7 8
# @BLURB: A common eclass for Lua packages
# @DESCRIPTION:
# A common eclass providing helper functions to build and install
Expand All @@ -27,7 +27,7 @@
#
# @EXAMPLE:
# @CODE
# EAPI=7
# EAPI=8
#
# LUA_COMPAT=( lua5-{1..3} )
#
Expand All @@ -54,7 +54,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}"
Expand Down

0 comments on commit b2c11c5

Please sign in to comment.