diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-06-20 11:40:11 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-06-23 23:44:27 +0200 |
commit | 2de97ff4b3118af380cc727eaa5a6eb56e4cf14f (patch) | |
tree | 32dc5b297083e8472de02bbf031d2a9b8fe5f2c8 /eclass/distutils-r1.eclass | |
parent | distutils-r1.eclass: Use 'dosym -r' in EAPI 8 (diff) | |
download | gentoo-2de97ff4b3118af380cc727eaa5a6eb56e4cf14f.tar.gz gentoo-2de97ff4b3118af380cc727eaa5a6eb56e4cf14f.tar.bz2 gentoo-2de97ff4b3118af380cc727eaa5a6eb56e4cf14f.zip |
distutils-r1.eclass: Enable EAPI 8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 7501f6540bb6..cc0416fb1d9e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Author: Michał Górny <mgorny@gentoo.org> # Based on the work of: Krzysztof Pawlik <nelchael@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: A simple eclass to build Python packages using distutils. # @DESCRIPTION: # A simple eclass providing functions to build Python packages using @@ -47,7 +47,7 @@ case "${EAPI:-0}" in [0-5]) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - [6-7]) + [6-8]) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" |