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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD6A6158020 for ; Wed, 12 Oct 2022 23:09:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEF80E092C; Wed, 12 Oct 2022 23:09:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C95CEE092C for ; Wed, 12 Oct 2022 23:09:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BD113412C7 for ; Wed, 12 Oct 2022 23:09:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DAE862C for ; Wed, 12 Oct 2022 23:09:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665615964.f4cbafa51669b5468a35ee9235553322bc0e1388.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/botan/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/botan/botan-2.19.2.ebuild X-VCS-Directories: dev-libs/botan/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f4cbafa51669b5468a35ee9235553322bc0e1388 X-VCS-Branch: master Date: Wed, 12 Oct 2022 23:09:52 +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: 3ffb2748-4e38-4892-9af7-6dfdc3950da9 X-Archives-Hash: 1bb110b5a831a2a1d77b2480e524ea2b commit: f4cbafa51669b5468a35ee9235553322bc0e1388 Author: Richard-Rogalski tutanota com> AuthorDate: Sun Oct 2 17:15:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 12 23:06:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4cbafa5 dev-libs/botan: fix building for sparc Closes: https://bugs.gentoo.org/872962 Signed-off-by: Richard Rogalski tutanota.com> Closes: https://github.com/gentoo/gentoo/pull/27579 Signed-off-by: Sam James gentoo.org> dev-libs/botan/botan-2.19.2.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/botan/botan-2.19.2.ebuild b/dev-libs/botan/botan-2.19.2.ebuild index f898e8b84b25..eae0131ed655 100644 --- a/dev-libs/botan/botan-2.19.2.ebuild +++ b/dev-libs/botan/botan-2.19.2.ebuild @@ -81,8 +81,10 @@ src_configure() { if [[ ${CHOST} == *hppa* ]] ; then chostarch=parisc - elif [[ ${PROFILE_ARCH} == sparc64 ]] ; then - chostarch="sparc32-v9" + elif [[ ${ABI} == sparc64 ]] ; then + chostarch="sparc64" + elif [[ ${ABI} == sparc32 ]] ; then + chostarch="sparc32" fi ;; esac