diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-08-15 23:24:20 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-08-25 16:35:47 +0200 |
commit | c37c7fdabb94b836ce32256b96323f3ec95d1fc0 (patch) | |
tree | 628c00cba84f515300347c132e796fdd3039d440 /eclass | |
parent | qt5-build.eclass: Use kde.org eclass for snapshots and live ebuilds (diff) | |
download | gentoo-c37c7fdabb94b836ce32256b96323f3ec95d1fc0.tar.gz gentoo-c37c7fdabb94b836ce32256b96323f3ec95d1fc0.tar.bz2 gentoo-c37c7fdabb94b836ce32256b96323f3ec95d1fc0.zip |
qt5-build.eclass: Support EAPI-8
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 459bdd6658b4..2765fc46081f 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -6,7 +6,7 @@ # qt@gentoo.org # @AUTHOR: # Davide Pesavento <pesa@gentoo.org> -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Eclass for Qt5 split ebuilds. # @DESCRIPTION: # This eclass contains various functions that are used when building Qt5. @@ -16,7 +16,7 @@ if [[ ${CATEGORY} != dev-qt ]]; then fi case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |