diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-12-10 15:56:35 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-12-11 08:30:55 +0100 |
commit | 068f035ebd38bb1ba7eecba4f7cfc30b77aa0f84 (patch) | |
tree | 726761d3b42f1b86ca75444f6cc2a95d72996720 /eclass/ghc-package.eclass | |
parent | haskell-cabal.eclass: Drop support for EAPI 6 (diff) | |
download | gentoo-068f035ebd38bb1ba7eecba4f7cfc30b77aa0f84.tar.gz gentoo-068f035ebd38bb1ba7eecba4f7cfc30b77aa0f84.tar.bz2 gentoo-068f035ebd38bb1ba7eecba4f7cfc30b77aa0f84.zip |
ghc-package.eclass: Drop support for EAPI 6
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/ghc-package.eclass')
-rw-r--r-- | eclass/ghc-package.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/ghc-package.eclass b/eclass/ghc-package.eclass index 66a14ca971ba..48936a894d7f 100644 --- a/eclass/ghc-package.eclass +++ b/eclass/ghc-package.eclass @@ -6,7 +6,7 @@ # "Gentoo's Haskell Language team" <haskell@gentoo.org> # @AUTHOR: # Original Author: Andres Loeh <kosmikus@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: This eclass helps with the Glasgow Haskell Compiler's package configuration utility. # @DESCRIPTION: # Helper eclass to handle ghc installation/upgrade/deinstallation process. @@ -16,7 +16,6 @@ inherit multiprocessing # Maintain version-testing compatibility with ebuilds not using EAPI 7. case ${EAPI} in 7|8) ;; - 6) inherit eapi7-ver ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |