• [gentoo-dev] [PATCH 11/12] vcs-snapshot.eclass: remove EAPI 0-5

    From David Seifert@21:1/5 to All on Sat Jan 29 18:40:01 2022
    Signed-off-by: David Seifert <[email protected]>
    ---
    eclass/vcs-snapshot.eclass | 10 +++++-----
    1 file changed, 5 insertions(+), 5 deletions(-)

    diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass
    index 74e5f4bcd42..0e86cb4ad51 100644
    --- a/eclass/vcs-snapshot.eclass
    +++ b/eclass/vcs-snapshot.eclass
    @@ -4,7 +4,7 @@
    # @ECLASS: vcs-snapshot.eclass
    # @MAINTAINER:
    # [email protected]
    -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 8
    +# @SUPPORTED_EAPIS: 6 7 8
    # @BLURB: support eclass for unpacking VCS snapshot tarballs
    # @DESCRIPTION:
    # THIS ECLASS IS NOT NECESSARY FOR MODERN GITHUB AND GITLAB SNAPSHOTS.
    @@ -42,9 +42,9 @@
    # and however the tarballs were originally packed, all files will appear
    # in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively.

    -case ${EAPI:-0} in
    - 0|1|2|3|4|5|6|7|8) ;;
    - *) die "vcs-snapshot.eclass API in EAPI ${EAPI} not yet established." +case ${EAPI} in
    + 6|7|8) ;;
    + *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
    esac

    EXPORT_FUNCTIONS src_unpack
    @@ -102,7 +102,7 @@ vcs-s