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