commit: fd665137d31b94a741fecc534f8f7e0ae87459ab Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Mar 25 14:32:28 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Mar 25 14:39:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd665137
dev-haskell/cryptonite: fix cpu_flags_* default (disable) We shouldn't enable CPU_FLAGS_* by default. Users don't mask or explicitly disable flags they don't have, they just enable the ones they _do_ have. Reported-by: ggabriel Signed-off-by: Sam James <sam <AT> gentoo.org> dev-haskell/cryptonite/cryptonite-0.26-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-haskell/cryptonite/cryptonite-0.26-r1.ebuild b/dev-haskell/cryptonite/cryptonite-0.26-r1.ebuild index da6a90056ed..8728bac1d52 100644 --- a/dev-haskell/cryptonite/cryptonite-0.26-r1.ebuild +++ b/dev-haskell/cryptonite/cryptonite-0.26-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,7 +16,7 @@ SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" -IUSE="+cpu_flags_x86_rdrand +cpu_flags_x86_aes cpu_flags_x86_sse cpu_flags_x86_sse4_1 +integer-gmp" +IUSE="cpu_flags_x86_rdrand cpu_flags_x86_aes cpu_flags_x86_sse cpu_flags_x86_sse4_1 +integer-gmp" RDEPEND=">=dev-haskell/basement-0.0.6:=[profile?] >=dev-haskell/memory-0.14.18:=[profile?]
