From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1360844-garchives=archives.gentoo.org@lists.gentoo.org> 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 7D399158087 for <garchives@archives.gentoo.org>; Sun, 23 Jan 2022 21:49:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CBCF2BC002; Sun, 23 Jan 2022 21:49:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 268452BC002 for <gentoo-commits@lists.gentoo.org>; Sun, 23 Jan 2022 21:49:29 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34B31342D29 for <gentoo-commits@lists.gentoo.org>; Sun, 23 Jan 2022 21:49:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7981121E for <gentoo-commits@lists.gentoo.org>; Sun, 23 Jan 2022 21:49:26 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1642974559.344a6e70c77a76a15930e5768c8a6ada5cb0f8e9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/m2crypto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/m2crypto/m2crypto-0.38.0.ebuild X-VCS-Directories: dev-python/m2crypto/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 344a6e70c77a76a15930e5768c8a6ada5cb0f8e9 X-VCS-Branch: master Date: Sun, 23 Jan 2022 21:49:26 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9865ae03-87fd-441e-8732-c1dfb88b2845 X-Archives-Hash: 6ffe970f9b93915c36f0b4e432e6e4d5 commit: 344a6e70c77a76a15930e5768c8a6ada5cb0f8e9 Author: John Hansen <john <AT> mrhansen <DOT> id <DOT> au> AuthorDate: Sun Jan 23 21:48:34 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 23 21:49:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344a6e70 dev-python/m2crypto: fix build on MIPS Fixes errors like: ``` /usr/include/openssl/opensslconf.h:16: Error: CPP #error ""abi_mips_n32 not supported by the package."". Use the -cpperraswarn option to continue swig processing. ``` Signed-off-by: John Hansen <john <AT> mrhansen.id.au> Signed-off-by: Sam James <sam <AT> gentoo.org> dev-python/m2crypto/m2crypto-0.38.0.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-python/m2crypto/m2crypto-0.38.0.ebuild b/dev-python/m2crypto/m2crypto-0.38.0.ebuild index b6170a252e6b..f6c277a5522a 100644 --- a/dev-python/m2crypto/m2crypto-0.38.0.ebuild +++ b/dev-python/m2crypto/m2crypto-0.38.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2018-2021 Gentoo Authors +# Copyright 2018-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="test" +IUSE="test abi_mips_n32 abi_mips_n64 abi_mips_o32" RESTRICT="!test? ( test )" BDEPEND=" @@ -59,5 +59,14 @@ python_compile() { # https://bugs.gentoo.org/674112 swig_define __ARM_PCS_VFP + # Avoid similar errors to bug #688668 for MIPS + if use abi_mips_n32; then + swig_define _MIPS_SIM = _ABIN32 + elif use abi_mips_n64; then + swig_define _MIPS_SIM = _ABI64 + elif use abi_mips_o32; then + swig_define _MIPS_SIM = _ABIO32 + fi + distutils-r1_python_compile --openssl="${ESYSROOT}"/usr }