commit: fdc4dad8e53324570a0d9b60b2fcf3009d8bd287 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Mon Jan 2 22:01:37 2023 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Mon Jan 2 22:01:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdc4dad8
s6.eclass: drop EAPI 5, 6 and 7 support Signed-off-by: David Seifert <soap <AT> gentoo.org> eclass/s6.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/s6.eclass b/eclass/s6.eclass index 25960ba4a1db..f4d7ebf2c31d 100644 --- a/eclass/s6.eclass +++ b/eclass/s6.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: s6.eclass # @MAINTAINER: # William Hubbs <[email protected]> -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 8 # @BLURB: helper functions to install s6 services # @DESCRIPTION: # This eclass provides helpers to install s6 services. @@ -26,7 +26,7 @@ # @CODE case ${EAPI} in - 5|6|7|8) ;; + 8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac
