diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2024-12-24 10:09:41 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2025-01-01 16:44:51 +0100 |
commit | 76d4017fad0aa22c946d7238684da3ecd46daae4 (patch) | |
tree | a2c6d010c1515cff1384a8bfb1d5ca983e0b72d4 /eclass | |
parent | net-im/zoom: Check for pipestatus (diff) | |
download | gentoo-76d4017fad0aa22c946d7238684da3ecd46daae4.tar.gz gentoo-76d4017fad0aa22c946d7238684da3ecd46daae4.tar.bz2 gentoo-76d4017fad0aa22c946d7238684da3ecd46daae4.zip |
java-pkg-simple.eclass: drop support for EAPI 7
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/39911
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-pkg-simple.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-pkg-simple.eclass b/eclass/java-pkg-simple.eclass index 5ed7e3e5b78e..ce4a62f048da 100644 --- a/eclass/java-pkg-simple.eclass +++ b/eclass/java-pkg-simple.eclass @@ -6,7 +6,7 @@ # java@gentoo.org # @AUTHOR: # Java maintainers <java@gentoo.org> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 8 # @BLURB: Eclass for packaging Java software with ease. # @DESCRIPTION: # This class is intended to build pure Java packages from Java sources @@ -17,7 +17,7 @@ # directory before calling the src_compile function of this eclass. case ${EAPI} in - 7|8) ;; + 8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |