summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2020-12-22 22:41:05 +0000
committerMarek Szuba <marecki@gentoo.org>2020-12-22 22:47:20 +0000
commitfae49c087a35ae5a6d78ca043fda68a6f1557e6c (patch)
treeb32e82d2251181626b76e1dfbc88176ab9bfe6b6 /eclass/waf-utils.eclass
parentnet-dns/pdns-recursor: migrate to lua-single.eclass (diff)
downloadgentoo-fae49c087a35ae5a6d78ca043fda68a6f1557e6c.tar.gz
gentoo-fae49c087a35ae5a6d78ca043fda68a6f1557e6c.tar.bz2
gentoo-fae49c087a35ae5a6d78ca043fda68a6f1557e6c.zip
waf-utils.eclass: support EAPI-7
Trivial bump. Tested with a modified media-video/mpv ebuild (which package requires this change before it can be migrated to Lua eclasses), seems to work fine. Closes: https://bugs.gentoo.org/743826 Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'eclass/waf-utils.eclass')
-rw-r--r--eclass/waf-utils.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
index 7a894f6bbb73..f22460881ef4 100644
--- a/eclass/waf-utils.eclass
+++ b/eclass/waf-utils.eclass
@@ -8,7 +8,7 @@
# Original Author: Gilles Dartiguelongue <eva@gentoo.org>
# Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@gentoo.org>
# Proper prefix support: Jonathan Callen <jcallen@gentoo.org>
-# @SUPPORTED_EAPIS: 4 5 6
+# @SUPPORTED_EAPIS: 4 5 6 7
# @BLURB: common ebuild functions for waf-based packages
# @DESCRIPTION:
# The waf-utils eclass contains functions that make creating ebuild for
@@ -19,7 +19,7 @@
inherit multilib toolchain-funcs multiprocessing
case ${EAPI:-0} in
- 4|5|6) EXPORT_FUNCTIONS src_configure src_compile src_install ;;
+ 4|5|6|7) EXPORT_FUNCTIONS src_configure src_compile src_install ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac