• [gentoo-dev] [PATCH 11/41] java-osgi.eclass: drop EAPI 5, 6 support

    From David Seifert@21:1/5 to All on Sun Dec 25 23:20:01 2022
    Signed-off-by: David Seifert <soap@gentoo.org>
    ---
    eclass/java-osgi.eclass | 15 ++++++---------
    1 file changed, 6 insertions(+), 9 deletions(-)

    diff --git a/eclass/java-osgi.eclass b/eclass/java-osgi.eclass
    index 2043cbfb2d8..7019fab7b20 100644
    --- a/eclass/java-osgi.eclass
    +++ b/eclass/java-osgi.eclass
    @@ -1,4 +1,4 @@
    -# Copyright 2007-2021 Gentoo Authors
    +# Copyright 2007-2022 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: 5 6 7 8
    +# @SUPPORTED_EAPIS: 7 8
    # @PROVIDES: java-utils-2
    # @BLURB: Java OSGi eclass
    # @DESCRIPTION:
    @@ -15,8 +15,8 @@
    # in their manifests. Currently this is used only by Eclipse-3.3 - later we
    # could extend this so that Gentoo Java system would be fully OSGi compliant.

    -case ${EAPI:-0} in
    - [5678]) ;;
    +case ${EAPI} in
    + 7|8) ;;
    *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
    esac

    @@ -28,12 +28,9 @@ inherit java