Skip to content

Commit

Permalink
waf-utils.eclass: support EAPI-7
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Marek Szuba committed Dec 22, 2020
1 parent 78cc006 commit fae49c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eclass/waf-utils.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Original Author: Gilles Dartiguelongue <[email protected]>
# Various improvements based on cmake-utils.eclass: Tomáš Chvátal <[email protected]>
# Proper prefix support: Jonathan Callen <[email protected]>
# @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
Expand All @@ -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

Expand Down

0 comments on commit fae49c0

Please sign in to comment.