[PATCH 3/4] texlive-module.eclass: support EAPI 9
Florian Schmaus <[email protected]>
| Newsgroups | gmane.linux.gentoo.devel |
|---|---|
| Message-ID | <[email protected]> |
Signed-off-by: Florian Schmaus <[email protected]> --- eclass/texlive-module.eclass | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index 15dcdea5df20..e14aab5194b4 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -6,7 +6,7 @@ # [email protected] # @AUTHOR: # Original Author: Alexis Ballier <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 7 8 9 # @BLURB: Provide generic install functions so that modular texlive's texmf ebuild will only have to inherit this eclass # @DESCRIPTION: # Purpose: Provide generic install functions so that modular texlive's texmf ebuilds will @@ -72,14 +72,15 @@ # e.g. for enabling/disabling a feature case ${EAPI} in - 7|8) ;; + 7|8) inherit eapi9-pipestatus ;; + 9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac if [[ -z ${_TEXLIVE_MODULE_ECLASS} ]]; then _TEXLIVE_MODULE_ECLASS=1 -inherit eapi9-pipestatus texlive-common +inherit texlive-common HOMEPAGE="https://www.tug.org/texlive/" -- 2.54.0