From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EEFC1138334 for ; Fri, 19 Jul 2019 18:15:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEE65E07F2; Fri, 19 Jul 2019 18:15:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B10EFE07F2 for ; Fri, 19 Jul 2019 18:15:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 912F83480F7 for ; Fri, 19 Jul 2019 18:15:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20FC46F2 for ; Fri, 19 Jul 2019 18:15:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1563559777.7f0c9506e115eb23918e65386e83dd1d32b82b66.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/crypto++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/crypto++/crypto++-8.2.0-r2.ebuild X-VCS-Directories: dev-libs/crypto++/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7f0c9506e115eb23918e65386e83dd1d32b82b66 X-VCS-Branch: master Date: Fri, 19 Jul 2019 18:15:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ac032e99-f77a-41cb-8d57-cc174705687f X-Archives-Hash: e5b16de3294ce3a4e7a985e42cfcce30 commit: 7f0c9506e115eb23918e65386e83dd1d32b82b66 Author: Michał Górny gentoo org> AuthorDate: Thu Jul 18 14:53:49 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 19 18:09:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0c9506 dev-libs/crypto++: [QA] Revert cpu_flags_x86_sha removal Reverts: a1cd4b52d4fcb499ea4416c17dd2638e2362b70e Reverts: 57980c409d0770cf99b2b9ab89e1b02220c5a4fa Signed-off-by: Michał Górny gentoo.org> dev-libs/crypto++/crypto++-8.2.0-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/crypto++/crypto++-8.2.0-r2.ebuild b/dev-libs/crypto++/crypto++-8.2.0-r2.ebuild index 17988c37722..41b85ded021 100644 --- a/dev-libs/crypto++/crypto++-8.2.0-r2.ebuild +++ b/dev-libs/crypto++/crypto++-8.2.0-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip" LICENSE="Boost-1.0" SLOT="0/8" # subslot is so version KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" -IUSE="+asm cpu_flags_x86_aes cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_pclmul cpu_flags_x86_sse2 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 static-libs" +IUSE="+asm cpu_flags_x86_aes cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_pclmul cpu_flags_x86_sha cpu_flags_x86_sse2 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 static-libs" BDEPEND="app-arch/unzip" @@ -40,7 +40,7 @@ src_prepare() { use cpu_flags_x86_avx || config_add CRYPTOPP_DISABLE_AVX use cpu_flags_x86_avx2 || config_add CRYPTOPP_DISABLE_AVX2 use cpu_flags_x86_pclmul || config_add CRYPTOPP_DISABLE_CLMUL - false || config_add CRYPTOPP_DISABLE_SHANI + use cpu_flags_x86_sha || config_add CRYPTOPP_DISABLE_SHANI use cpu_flags_x86_sse2 || config_add CRYPTOPP_DISABLE_SSE2 use cpu_flags_x86_sse4_2 || config_add CRYPTOPP_DISABLE_SSE4 use cpu_flags_x86_ssse3 || config_add CRYPTOPP_DISABLE_SSSE3