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 A4A84138334 for ; Mon, 8 Jul 2019 13:31:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE3EBE085A; Mon, 8 Jul 2019 13:31:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C09A0E085A for ; Mon, 8 Jul 2019 13:31:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A179F346EE0 for ; Mon, 8 Jul 2019 13:31:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06C566DF for ; Mon, 8 Jul 2019 13:31:47 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1562592677.d0c54ca151d04776d24da5ca81be96155659ce36.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nettle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nettle/metadata.xml dev-libs/nettle/nettle-3.5.1.ebuild X-VCS-Directories: dev-libs/nettle/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: d0c54ca151d04776d24da5ca81be96155659ce36 X-VCS-Branch: master Date: Mon, 8 Jul 2019 13:31:47 +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: 6d23303a-5ef4-4633-bfb7-4615211b5026 X-Archives-Hash: 73f07f345d5cf3d807f1f2c2419e3efb commit: d0c54ca151d04776d24da5ca81be96155659ce36 Author: Alon Bar-Lev gentoo org> AuthorDate: Mon Jul 8 13:24:03 2019 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Mon Jul 8 13:31:17 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0c54ca1 dev-libs/nettle: USE cpu_flags_x86_sha->preview-cpu_flags_x86_sha A temporary solution until cpu_flags_x86_sha available. Bug: https://bugs.gentoo.org/show_bug.cgi?id=688858 Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-libs/nettle/metadata.xml | 2 +- dev-libs/nettle/nettle-3.5.1.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/nettle/metadata.xml b/dev-libs/nettle/metadata.xml index 2992d1b3df8..2afa9cc06f2 100644 --- a/dev-libs/nettle/metadata.xml +++ b/dev-libs/nettle/metadata.xml @@ -6,6 +6,6 @@ Crypto - Enable support for Intel's SHA instruction set (SHA-NI) + Enable support for Intel's SHA instruction set (SHA-NI) diff --git a/dev-libs/nettle/nettle-3.5.1.ebuild b/dev-libs/nettle/nettle-3.5.1.ebuild index 5bf45e8446d..75245bd15cd 100644 --- a/dev-libs/nettle/nettle-3.5.1.ebuild +++ b/dev-libs/nettle/nettle-3.5.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="|| ( LGPL-3 LGPL-2.1 )" SLOT="0/7" # subslot = libnettle soname version KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc +gmp neon static-libs test cpu_flags_x86_aes cpu_flags_x86_sha" +IUSE="doc +gmp neon static-libs test cpu_flags_x86_aes preview-cpu_flags_x86_sha" DEPEND="gmp? ( >=dev-libs/gmp-6.0:0=[static-libs?,${MULTILIB_USEDEP}] )" RDEPEND="${DEPEND}" @@ -50,7 +50,7 @@ multilib_src_configure() { ECONF_SOURCE="${S}" econf \ $(tc-is-static-only && echo --disable-shared) \ $(use_enable cpu_flags_x86_aes x86-aesni) \ - $(use_enable cpu_flags_x86_sha x86-sha-ni) \ + $(use_enable preview-cpu_flags_x86_sha x86-sha-ni) \ $(use_enable doc documentation) \ $(use_enable gmp public-key) \ $(use_enable neon arm-neon) \