diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2021-07-05 23:06:03 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2021-07-10 12:08:12 +0100 |
commit | 3cef7dc7c93537384dddf71cf96f57931467644d (patch) | |
tree | 1aedb8898a15d67492812382d39e1d83ffc6d1c5 /eclass | |
parent | ghc-package.eclass: drop EAPI={0..5} support (diff) | |
download | gentoo-3cef7dc7c93537384dddf71cf96f57931467644d.tar.gz gentoo-3cef7dc7c93537384dddf71cf96f57931467644d.tar.bz2 gentoo-3cef7dc7c93537384dddf71cf96f57931467644d.zip |
ghc-package.eclass: allow EAPI=8
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ghc-package.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ghc-package.eclass b/eclass/ghc-package.eclass index 71e84af3444f..e91fb2912f65 100644 --- a/eclass/ghc-package.eclass +++ b/eclass/ghc-package.eclass @@ -4,7 +4,7 @@ # @ECLASS: ghc-package.eclass # @MAINTAINER: # "Gentoo's Haskell Language team" <haskell@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @AUTHOR: # Original Author: Andres Loeh <kosmikus@gentoo.org> # @BLURB: This eclass helps with the Glasgow Haskell Compiler's package configuration utility. @@ -15,7 +15,7 @@ inherit multiprocessing # Maintain version-testing compatibility with ebuilds not using EAPI 7. case "${EAPI:-0}" in - 7) ;; + 7|8) ;; 6) inherit eapi7-ver ;; *) die "EAPI ${EAPI} unsupported." ;; esac |