• [gentoo-dev] [PATCH] eclass/webapps.eclass: added eapi8 support

    From =?UTF-8?q?Miroslav=20=C5=A0ulc?=@21:1/5 to All on Sat Dec 25 20:20:01 2021
    Signed-off-by: Miroslav Ć ulc <fordfrog@gentoo.org>
    ---
    eclass/webapp.eclass | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
    index 5ef7dbce03cf..7bdf28430b48 100644
    --- a/eclass/webapp.eclass
    +++ b/eclass/webapp.eclass
    @@ -4,14 +4,14 @@
    # @ECLASS: webapp.eclass
    # @MAINTAINER:
    # web-apps@gentoo.org
    -# @SUPPORTED_EAPIS: 5 6 7
    +# @SUPPORTED_EAPIS: 5 6 7 8
    # @BLURB: functions for installing applications to run under a web server
    # @DESCRIPTION:
    # The webapp eclass contains functions to handle web applications with
    # webapp-config. Part of the implementation of GLEP #11

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

    @@ -24,7 +24,7 @@ _WEBAPP_ECLASS=1
    # @DESCRIPTION:
    # An ebuild should use WEBAPP_DEPEND if a custom DEPEND needs to be built, most
    # notably in combination with WEBAPP_OPTIONAL. -WEBAPP_DEPEND=">=app-admin/webapp-config-1.50.15" +WEBAPP_DEPEND="app-admin/webapp-config"

    # @ECLASS-V