• [gentoo-dev] [PATCH 2/4] myspell-r2.eclass: drop support for EAPI<7

    From Arthur Zamarin@21:1/5 to All on Sun Sep 4 21:40:01 2022
    - No consumers for EAPI<7 remain in ::gentoo tree
    - Simplifies dependency logic
    - fix UnquotedVariable of DISTDIR

    Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
    ---
    eclass/myspell-r2.eclass | 17 ++++++-----------
    1 file changed, 6 insertions(+), 11 deletions(-)

    diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass
    index 6dbd1e19e1..cce75ae4d6 100644
    --- a/eclass/myspell-r2.eclass
    +++ b/eclass/myspell-r2.eclass
    @@ -1,4 +1,4 @@
    -# Copyright 1999-2021 Gentoo Authors
    +# Copyright 1999-2022 Gentoo Authors
    # Distributed under the terms of the GNU General Public License v2

    # @ECLASS: myspell-r2.eclass
    @@ -6,7 +6,7 @@
    # Conrad Kostecki <conikost@gentoo.org>
    # @AUTHOR:
    # Tomáš Chvátal <scarabeus@gentoo.org>
    -# @SUPPORTED_EAPIS: 5 6 7 8
    +# @SUPPORTED_EAPIS: 7 8
    # @BLURB: An eclass to streamline the construction of ebuilds for new Myspell dictionaries.
    # @DESCRIPTION:
    # The myspell-r2 eclass is designed to streamline the construction of ebuilds for
    @@ -30,8 +30,8 @@
    # Array variable containing list of all thesarus files.
    # MYSPELL_THES=( "file.dat" "dir/file2.idx" )

    -case ${EAPI:-0} in
    - [5-8])
    +case ${EAPI} in
    + 7|8)