diff options
author | 2024-05-26 09:38:15 +0200 | |
---|---|---|
committer | 2024-05-26 10:18:19 +0200 | |
commit | bfe9319b5d4631a85ebbb9c2fcda1d46f09c2320 (patch) | |
tree | 503159707ab692fac688a649911c10ce23c73c70 /eclass | |
parent | dev-java/swt: drop 3.7.2-r3, 4.10-r2 (diff) | |
download | gentoo-bfe9319b5d4631a85ebbb9c2fcda1d46f09c2320.tar.gz gentoo-bfe9319b5d4631a85ebbb9c2fcda1d46f09c2320.tar.bz2 gentoo-bfe9319b5d4631a85ebbb9c2fcda1d46f09c2320.zip |
java-osgi.eclass: drop EAPI 7
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/36819
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-osgi.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/java-osgi.eclass b/eclass/java-osgi.eclass index 7019fab7b203..172b42225c6e 100644 --- a/eclass/java-osgi.eclass +++ b/eclass/java-osgi.eclass @@ -1,4 +1,4 @@ -# Copyright 2007-2022 Gentoo Authors +# Copyright 2007-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: java-osgi.eclass @@ -6,7 +6,7 @@ # java@gentoo.org # @AUTHOR: # Java maintainers <java@gentoo.org> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 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} in - 7|8) ;; + 8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |