diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-07-14 23:46:44 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-07-16 22:38:03 +0100 |
commit | 8c93bfcd0cea6fa1407b877a3eae9d47cd3a2b14 (patch) | |
tree | 9b2f18582267c86a1a139dbf7aef110dc9864a5b /eclass/cuda.eclass | |
parent | www-client/chromium: add 91.0.4472.164 (diff) | |
download | gentoo-8c93bfcd0cea6fa1407b877a3eae9d47cd3a2b14.tar.gz gentoo-8c93bfcd0cea6fa1407b877a3eae9d47cd3a2b14.tar.bz2 gentoo-8c93bfcd0cea6fa1407b877a3eae9d47cd3a2b14.zip |
cuda.eclass: EAPI support: add 8, drop 5 and 6
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'eclass/cuda.eclass')
-rw-r--r-- | eclass/cuda.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/cuda.eclass b/eclass/cuda.eclass index b1da77c69dda..08d2302d55b9 100644 --- a/eclass/cuda.eclass +++ b/eclass/cuda.eclass @@ -1,11 +1,11 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 case "${EAPI:-0}" in - 0|1|2|3|4) + [0-6]) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - 5|6|7) + 7|8) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" @@ -15,7 +15,7 @@ esac # @ECLASS: cuda.eclass # @MAINTAINER: # Gentoo Science Project <sci@gentoo.org> -# @SUPPORTED_EAPIS: 5 6 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Common functions for cuda packages # @DESCRIPTION: # This eclass contains functions to be used with cuda package. Currently it is |