Signed-off-by: Ulrich Müller <[email protected]> --- eclass/cvs.eclass | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass index bd80725b03ed9..011b0d28cb7a8 100644 --- a/eclass/cvs.eclass +++ b/eclass/cvs.eclass @@ -4,7 +4,7 @@ # @ECLASS: cvs.eclass # @MAINTAINER: # No maintainer <[email protected]> -# @SUPPORTED_EAPIS: 7 8 +# @SUPPORTED_EAPIS: 7 8 9 # @BLURB: This eclass provides generic cvs fetching functions # @DESCRIPTION: # This eclass provides the generic cvs fetching functions. To use this from an @@ -13,14 +13,15 @@ # cvs_src_unpack. If you find that you need to call the cvs_* functions # directly, I'd be interested to hear about it. +if [[ -z ${_CVS_ECLASS} ]]; then +_CVS_ECLASS=1 + case ${EAPI} in 7|8) inherit eapi9-pipestatus ;; + 9) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -if [[ -z ${_CVS_ECLASS} ]]; then -_CVS_ECLASS=1 - # TODO: # Implement more auth types (gserver?, kserver?) -- 2.53.0
