diff options
author | Cédric Krier <cedk@gentoo.org> | 2022-01-01 18:35:31 +0100 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2022-01-08 14:31:40 +0100 |
commit | 9f24bebc8dd0d5dd6b8c683ea8bc1b39c64481d4 (patch) | |
tree | 718d9e8d0280660a2e585d59d738a55777358a2c /eclass/mercurial.eclass | |
parent | dev-python/isort: Stabilize 5.10.1 ALLARCHES, #830787 (diff) | |
download | gentoo-9f24bebc8dd0d5dd6b8c683ea8bc1b39c64481d4.tar.gz gentoo-9f24bebc8dd0d5dd6b8c683ea8bc1b39c64481d4.tar.bz2 gentoo-9f24bebc8dd0d5dd6b8c683ea8bc1b39c64481d4.zip |
eclass/mercurial.eclass: add EAPI 8
Closes: https://bugs.gentoo.org/829131
Signed-off-by: Cédric Krier <cedk@gentoo.org>
Diffstat (limited to 'eclass/mercurial.eclass')
-rw-r--r-- | eclass/mercurial.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass index e984da08e330..b79b754aa68a 100644 --- a/eclass/mercurial.eclass +++ b/eclass/mercurial.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Next gen author: Krzysztof Pawlik <nelchael@gentoo.org> # Original author: Aron Griffis <agriffis@gentoo.org> -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: This eclass provides generic mercurial fetching functions # @DESCRIPTION: # This eclass provides generic mercurial fetching functions. To fetch sources @@ -16,7 +16,7 @@ # project name in all of them. case ${EAPI:-0} in - 7) ;; + [78]) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |