diff options
author | hololeap <hololeap@protonmail.com> | 2023-10-05 23:05:55 -0600 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-10-23 04:09:44 +0100 |
commit | f93a8ee0f1edf958a341e37c47e5ac1edd8f3d7b (patch) | |
tree | a5654c9bfc5647c9bd9a29ad5a86ff8037dbb570 /dev-haskell/hsyaml | |
parent | dev-haskell/hsyaml: add 0.2.1.2 (diff) | |
download | gentoo-f93a8ee0f1edf958a341e37c47e5ac1edd8f3d7b.tar.gz gentoo-f93a8ee0f1edf958a341e37c47e5ac1edd8f3d7b.tar.bz2 gentoo-f93a8ee0f1edf958a341e37c47e5ac1edd8f3d7b.zip |
dev-haskell/hsyaml: Migrate to CABAL_CHDEPS
Signed-off-by: hololeap <hololeap@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-haskell/hsyaml')
-rw-r--r-- | dev-haskell/hsyaml/hsyaml-0.2.1.0.ebuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/dev-haskell/hsyaml/hsyaml-0.2.1.0.ebuild b/dev-haskell/hsyaml/hsyaml-0.2.1.0.ebuild index 631459a7d467..ebce7a4fc1d9 100644 --- a/dev-haskell/hsyaml/hsyaml-0.2.1.0.ebuild +++ b/dev-haskell/hsyaml/hsyaml-0.2.1.0.ebuild @@ -34,13 +34,10 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MY_P}" -src_prepare() { - default - - cabal_chdeps \ - 'base >=4.5 && <4.14' 'base >=4.5' \ - 'containers >=0.4.2 && <0.7' 'containers >=0.4.2' \ - 'QuickCheck == 2.13.*' 'QuickCheck >= 2.13' \ - 'tasty == 1.2.*' 'tasty >= 1.2' \ - 'tasty-quickcheck == 0.10.*' 'tasty-quickcheck >= 0.10' -} +CABAL_CHDEPS=( + 'base >=4.5 && <4.14' 'base >=4.5' + 'containers >=0.4.2 && <0.7' 'containers >=0.4.2' + 'QuickCheck == 2.13.*' 'QuickCheck >= 2.13' + 'tasty == 1.2.*' 'tasty >= 1.2' + 'tasty-quickcheck == 0.10.*' 'tasty-quickcheck >= 0.10' +) |