commit: 8ac4ea404d4283b424edeead1bca57553508d1aa Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Dec 17 15:29:45 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Jan 25 14:35:31 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac4ea40
junit5.eclass: Support EAPI 9 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/junit5.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/junit5.eclass b/eclass/junit5.eclass index 687bd98b706b..6713e104346a 100644 --- a/eclass/junit5.eclass +++ b/eclass/junit5.eclass @@ -6,7 +6,7 @@ # [email protected] # @AUTHOR: # Yuan Liao <[email protected]> -# @SUPPORTED_EAPIS: 8 +# @SUPPORTED_EAPIS: 8 9 # @BLURB: Experimental eclass to add support for testing on the JUnit Platform # @DESCRIPTION: # This eclass runs tests on the JUnit Platform (which is a JUnit 5 sub-project) @@ -17,8 +17,8 @@ if [[ ! ${_JUNIT5_ECLASS} ]]; then case ${EAPI} in - 8) ;; - *) die "${ECLASS}: EAPI ${EAPI} unsupported." ;; + 8|9) ;; + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac inherit java-pkg-simple
