diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2021-12-25 19:51:03 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-12-28 09:08:52 +0100 |
commit | ca0e49859cf71204ab9d9a700cce5560ff8248ea (patch) | |
tree | 52f19a5bc324a3df040110bc62f677de21c2bfbf | |
parent | eclass/java-pkg-opt-2.eclass: added eapi8 support (diff) | |
download | gentoo-ca0e49859cf71204ab9d9a700cce5560ff8248ea.tar.gz gentoo-ca0e49859cf71204ab9d9a700cce5560ff8248ea.tar.bz2 gentoo-ca0e49859cf71204ab9d9a700cce5560ff8248ea.zip |
eclass/java-osgi.eclass: added eapi8 support
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
-rw-r--r-- | eclass/java-osgi.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-osgi.eclass b/eclass/java-osgi.eclass index 74c7c1a07f5c..f2f55772e873 100644 --- a/eclass/java-osgi.eclass +++ b/eclass/java-osgi.eclass @@ -6,7 +6,7 @@ # java@gentoo.org # @AUTHOR: # Java maintainers <java@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 5 6 7 8 # @PROVIDES: java-utils-2 # @BLURB: Java OSGi eclass # @DESCRIPTION: @@ -16,7 +16,7 @@ # could extend this so that Gentoo Java system would be fully OSGi compliant. case ${EAPI:-0} in - [567]) ;; + [5678]) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |