diff options
author | hololeap <hololeap@protonmail.com> | 2023-10-05 19:56:22 -0600 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-10-23 04:09:25 +0100 |
commit | 82a7b73ff6911e1257cc09a3bca18070f09d30a1 (patch) | |
tree | 03b3deb90e1d65c76de1fce10756e4fd2bc03b45 /dev-haskell/cryptohash-sha1 | |
parent | dev-haskell/cryptohash-sha1: add 0.11.101.0 (diff) | |
download | gentoo-82a7b73ff6911e1257cc09a3bca18070f09d30a1.tar.gz gentoo-82a7b73ff6911e1257cc09a3bca18070f09d30a1.tar.bz2 gentoo-82a7b73ff6911e1257cc09a3bca18070f09d30a1.zip |
dev-haskell/cryptohash-sha1: Migrate to CABAL_CHDEPS
Signed-off-by: hololeap <hololeap@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-haskell/cryptohash-sha1')
-rw-r--r-- | dev-haskell/cryptohash-sha1/cryptohash-sha1-0.11.100.1.ebuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/dev-haskell/cryptohash-sha1/cryptohash-sha1-0.11.100.1.ebuild b/dev-haskell/cryptohash-sha1/cryptohash-sha1-0.11.100.1.ebuild index 9612b03eade0..1e0a3aca5194 100644 --- a/dev-haskell/cryptohash-sha1/cryptohash-sha1-0.11.100.1.ebuild +++ b/dev-haskell/cryptohash-sha1/cryptohash-sha1-0.11.100.1.ebuild @@ -28,11 +28,9 @@ DEPEND="${RDEPEND} >=dev-haskell/tasty-quickcheck-0.8 ) " -src_prepare() { - cabal_chdeps \ - 'base >= 4.5 && < 4.10' 'base >= 4.5' \ - 'tasty == 0.11.*' 'tasty >= 0.11' \ - 'tasty-quickcheck == 0.8.*' 'tasty-quickcheck >= 0.8' \ - 'tasty-hunit == 0.9.*' 'tasty-hunit >= 0.9' - default -} +CABAL_CHDEPS=( + 'base >= 4.5 && < 4.10' 'base >= 4.5' + 'tasty == 0.11.*' 'tasty >= 0.11' + 'tasty-quickcheck == 0.8.*' 'tasty-quickcheck >= 0.8' + 'tasty-hunit == 0.9.*' 'tasty-hunit >= 0.9' +) |