• [gentoo-dev] [PATCH 1/2] vala.eclass: drop EAPI 6 support

    From David Seifert@21:1/5 to All on Sun Jan 1 18:00:02 2023
    Signed-off-by: David Seifert <soap@gentoo.org>
    ---
    eclass/vala.eclass | 18 +++++++-----------
    1 file changed, 7 insertions(+), 11 deletions(-)

    diff --git a/eclass/vala.eclass b/eclass/vala.eclass
    index acdf958191e..22407197042 100644
    --- a/eclass/vala.eclass
    +++ b/eclass/vala.eclass
    @@ -1,4 +1,4 @@
    -# Copyright 1999-2022 Gentoo Authors
    +# Copyright 1999-2023 Gentoo Authors
    # Distributed under the terms of the GNU General Public License v2

    # @ECLASS: vala.eclass
    @@ -6,7 +6,7 @@
    # gnome@gentoo.org
    # @AUTHOR:
    # Alexandre Rostovtsev <tetromino@gentoo.org>
    -# @SUPPORTED_EAPIS: 6 7 8
    +# @SUPPORTED_EAPIS: 7 8
    # @BLURB: Sets up the environment for using a specific version of vala.
    # @DESCRIPTION:
    # This eclass sets up commonly used environment variables for using a specific @@ -15,7 +15,7 @@
    # executables, pkgconfig files, etc., which Gentoo does not provide.

    case ${EAPI} in
    - 6|7) inherit eutils multilib ;;
    + 7) inherit eutils multilib ;;
    8) ;;
    *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
    esac
    @@ -99,13