diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-04-11 20:50:18 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-04-11 20:50:18 +0200 |
commit | 9a0f1b61c873a3e0205173aeab46bc120c216a50 (patch) | |
tree | 8e188f2264606ef7bca641142729cbe9fff07524 /eclass/cdrom.eclass | |
parent | www-client/microsoft-edge: remove old (diff) | |
download | gentoo-9a0f1b61c873a3e0205173aeab46bc120c216a50.tar.gz gentoo-9a0f1b61c873a3e0205173aeab46bc120c216a50.tar.bz2 gentoo-9a0f1b61c873a3e0205173aeab46bc120c216a50.zip |
eclass/cdrom.eclass: add EAPI 8
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'eclass/cdrom.eclass')
-rw-r--r-- | eclass/cdrom.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index bae3888c6c53..81539e8560ce 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -1,10 +1,10 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: cdrom.eclass # @MAINTAINER: # games@gentoo.org -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Functions for CD-ROM handling # @DESCRIPTION: # Acquire CD(s) for those lovely CD-based emerges. Yes, this violates @@ -16,7 +16,7 @@ # The functions are generally called in src_unpack. case ${EAPI:-0} in - [67]) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |