commit: e287fa31d05df719242ccdc9a4efe3a73adf22cb Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Tue Feb 22 09:02:58 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Mon Feb 28 17:59:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e287fa31
subversion.eclass: Support EAPI 8 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/subversion.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/subversion.eclass b/eclass/subversion.eclass index 2a2297678ad1..8b12382a649d 100644 --- a/eclass/subversion.eclass +++ b/eclass/subversion.eclass @@ -6,7 +6,7 @@ # Akinori Hattori <[email protected]> # @AUTHOR: # Original Author: Akinori Hattori <[email protected]> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Fetch software sources from subversion repositories # @DESCRIPTION: # The subversion eclass provides functions to fetch software sources @@ -15,7 +15,7 @@ ESVN="${ECLASS}" case ${EAPI} in - 6|7) inherit estack ;; + 6|7|8) inherit estack ;; *) die "${ESVN}: EAPI ${EAPI:-0} is not supported" ;; esac
