diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2023-02-15 19:10:12 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2023-02-17 09:03:37 +0100 |
commit | 3ac24e76864fe3f37f38d18b748adecff1172b94 (patch) | |
tree | 3e8f65bbdbe19e3e91050771c5288f22ebf6df37 /eclass | |
parent | java-pkg-opt-2.eclass: drop support for EAPI 5 (diff) | |
download | gentoo-3ac24e76864fe3f37f38d18b748adecff1172b94.tar.gz gentoo-3ac24e76864fe3f37f38d18b748adecff1172b94.tar.bz2 gentoo-3ac24e76864fe3f37f38d18b748adecff1172b94.zip |
java-pkg-2.eclass: drop support for EAPI 5
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg-2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/java-pkg-2.eclass b/eclass/java-pkg-2.eclass index ef4670a110f4..c8a4e6b5abae 100644 --- a/eclass/java-pkg-2.eclass +++ b/eclass/java-pkg-2.eclass @@ -1,4 +1,4 @@ -# Copyright 2004-2021 Gentoo Authors +# Copyright 2004-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: java-pkg-2.eclass @@ -6,7 +6,7 @@ # java@gentoo.org # @AUTHOR: # Thomas Matthijs <axxo@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 6 7 8 # @PROVIDES: java-utils-2 # @BLURB: Eclass for Java Packages # @DESCRIPTION: @@ -14,7 +14,7 @@ # need to use Java. case ${EAPI:-0} in - [5678]) ;; + [678]) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |