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 49B07138350 for ; Tue, 25 Feb 2020 22:41:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A279E085B; Tue, 25 Feb 2020 22:41:13 +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 434BFE085B for ; Tue, 25 Feb 2020 22:41:13 +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 D463734DE87 for ; Tue, 25 Feb 2020 22:41:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 442289D for ; Tue, 25 Feb 2020 22:41:09 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1582670442.e3dec9bf2da04ace6b2e999ff779d117beb65e6e.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl/files/, dev-libs/openssl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/openssl/files/openssl-1.1.1d-config-Drop-linux-alpha-gcc-bwx.patch dev-libs/openssl/openssl-1.1.1d-r3.ebuild X-VCS-Directories: dev-libs/openssl/ dev-libs/openssl/files/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: e3dec9bf2da04ace6b2e999ff779d117beb65e6e X-VCS-Branch: master Date: Tue, 25 Feb 2020 22:41:09 +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: a3cfebe9-735f-4f95-b3d6-c18e21a8df6d X-Archives-Hash: ed184a9636e2a53ca136de36197389f6 commit: e3dec9bf2da04ace6b2e999ff779d117beb65e6e Author: Matt Turner gentoo org> AuthorDate: Tue Feb 25 22:37:15 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Feb 25 22:40:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3dec9bf dev-libs/openssl: Fix the build on alpha Closes: https://bugs.gentoo.org/697840 Signed-off-by: Matt Turner gentoo.org> ...sl-1.1.1d-config-Drop-linux-alpha-gcc-bwx.patch | 42 ++++++++++++++++++++++ dev-libs/openssl/openssl-1.1.1d-r3.ebuild | 1 + 2 files changed, 43 insertions(+) diff --git a/dev-libs/openssl/files/openssl-1.1.1d-config-Drop-linux-alpha-gcc-bwx.patch b/dev-libs/openssl/files/openssl-1.1.1d-config-Drop-linux-alpha-gcc-bwx.patch new file mode 100644 index 00000000000..3771684b251 --- /dev/null +++ b/dev-libs/openssl/files/openssl-1.1.1d-config-Drop-linux-alpha-gcc-bwx.patch @@ -0,0 +1,42 @@ +From 19ded1a717b6c72c3db241f06787a353f1190755 Mon Sep 17 00:00:00 2001 +From: Matt Turner +Date: Tue, 18 Feb 2020 10:08:27 -0800 +Subject: [PATCH] config: Drop linux-alpha-gcc+bwx + +Its entry in Configuration/10-main.conf was dropped in commit +7ead0c89185c ("Configure: fold related configurations more aggressively +and clean-up.") probably because all but one of its bn_ops were removed +(RC4_CHAR remained). Benchmarks on an Alpha EV7 indicate that RC4_INT is +better than RC4_CHAR so rather than restoring the configuation, remove +it from config. + +CLA: trivial +Bug: https://bugs.gentoo.org/697840 + +Reviewed-by: Paul Dale +Reviewed-by: Matt Caswell +Reviewed-by: Richard Levitte +(Merged from https://github.com/openssl/openssl/pull/11130) +--- + config | 5 +---- + 1 file changed, 1 insertion(+), 4 deletions(-) + +diff --git a/config b/config +index 2213969f90..e39481ca2a 100755 +--- a/config ++++ b/config +@@ -498,10 +498,7 @@ case "$GUESSOS" in + OUT="ios64-cross" ;; + alpha-*-linux2) + ISA=`awk '/cpu model/{print$4;exit(0);}' /proc/cpuinfo` +- case ${ISA:-generic} in +- *[678]) OUT="linux-alpha+bwx-$CC" ;; +- *) OUT="linux-alpha-$CC" ;; +- esac ++ OUT="linux-alpha-$CC" + if [ "$CC" = "gcc" ]; then + case ${ISA:-generic} in + EV5|EV45) __CNF_CFLAGS="$__CNF_CFLAGS -mcpu=ev5" +-- +2.24.1 + diff --git a/dev-libs/openssl/openssl-1.1.1d-r3.ebuild b/dev-libs/openssl/openssl-1.1.1d-r3.ebuild index 8800d05fac7..97a1002fac7 100644 --- a/dev-libs/openssl/openssl-1.1.1d-r3.ebuild +++ b/dev-libs/openssl/openssl-1.1.1d-r3.ebuild @@ -50,6 +50,7 @@ PATCHES=( "${FILESDIR}"/${P}-fix-zlib.patch "${FILESDIR}"/${P}-fix-potential-memleaks-w-BN_to_ASN1_INTEGER.patch "${FILESDIR}"/${P}-reenable-the-stitched-AES-CBC-HMAC-SHA-implementations.patch + "${FILESDIR}"/${P}-config-Drop-linux-alpha-gcc-bwx.patch ) S="${WORKDIR}/${MY_P}"