diff options
author | hololeap <hololeap@protonmail.com> | 2023-11-03 09:50:37 -0600 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-11-19 18:32:25 +0000 |
commit | edbb4e70b6fb4d9eca3f47e2d6270a8aa149b7a7 (patch) | |
tree | 06dba3d5599e579a6effdc43669b5f07f673a69e /dev-haskell/cabal-install | |
parent | dev-haskell/cabal: Add upper bound to ghc deps (diff) | |
download | gentoo-edbb4e70b6fb4d9eca3f47e2d6270a8aa149b7a7.tar.gz gentoo-edbb4e70b6fb4d9eca3f47e2d6270a8aa149b7a7.tar.bz2 gentoo-edbb4e70b6fb4d9eca3f47e2d6270a8aa149b7a7.zip |
dev-haskell/cabal-install: Fix CABAL_CHDEPS line
cabal-install-3.4.1.0 has an updated dependency for base in it's 2nd
Hackage revision. This updates the string in CABAL_CHDEPS to avoid
"no trigger for" errors.
Closes: https://bugs.gentoo.org/916263
Signed-off-by: hololeap <hololeap@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-haskell/cabal-install')
-rw-r--r-- | dev-haskell/cabal-install/cabal-install-3.4.1.0-r3.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-haskell/cabal-install/cabal-install-3.4.1.0-r3.ebuild b/dev-haskell/cabal-install/cabal-install-3.4.1.0-r3.ebuild index 0c5326fc9d73..9e2bce608882 100644 --- a/dev-haskell/cabal-install/cabal-install-3.4.1.0-r3.ebuild +++ b/dev-haskell/cabal-install/cabal-install-3.4.1.0-r3.ebuild @@ -21,7 +21,7 @@ KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv ~x86" IUSE="+lukko +native-dns" CABAL_CHDEPS=( - 'base >= 4.8 && < 4.15' 'base >= 4.8' + 'base >= 4.8 && < 4.16' 'base >= 4.8' 'hashable >= 1.0 && < 1.4' 'hashable >=1.0' 'HTTP >= 4000.1.5 && < 4000.4' 'HTTP >= 4000.1.5 && < 4000.5' ) |