diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2024-04-10 23:09:56 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2024-04-11 09:48:21 +0200 |
commit | 28a2ff3d33063abd580cba982a11120eb34cdc2b (patch) | |
tree | 060238d61096b796ab09b956d09a7ef119b94925 /eclass | |
parent | dev-java/caffeine: min java 11 (diff) | |
download | gentoo-28a2ff3d33063abd580cba982a11120eb34cdc2b.tar.gz gentoo-28a2ff3d33063abd580cba982a11120eb34cdc2b.tar.bz2 gentoo-28a2ff3d33063abd580cba982a11120eb34cdc2b.zip |
java-ant-2.eclass: drop EAPI 6
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/36199
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-ant-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-ant-2.eclass b/eclass/java-ant-2.eclass index 1eccead3067f..b0d2fb216b10 100644 --- a/eclass/java-ant-2.eclass +++ b/eclass/java-ant-2.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # kiorky <kiorky@cryptelium.net> # Petteri Räty <betelgeuse@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: java-utils-2 # @BLURB: eclass for ant based Java packages # @DESCRIPTION: @@ -16,7 +16,7 @@ # or java-pkg-opt-2 eclass. case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |