From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 76FAB138262 for ; Thu, 19 May 2016 04:14:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C77A221C01D; Thu, 19 May 2016 04:13:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 16BDB21C01D for ; Thu, 19 May 2016 04:13:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F2D43409A4 for ; Thu, 19 May 2016 04:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A760987B for ; Thu, 19 May 2016 04:13:53 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1463631101.c0253ea90aa03327fad4e4341cdd0d38a6dd24a5.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/llvmlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/llvmlite/llvmlite-0.10.0.ebuild X-VCS-Directories: dev-python/llvmlite/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: c0253ea90aa03327fad4e4341cdd0d38a6dd24a5 X-VCS-Branch: master Date: Thu, 19 May 2016 04:13:53 +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-Archives-Salt: 42a63a00-bfe1-4512-8910-d9bdc449c650 X-Archives-Hash: a664056e31bbd85032567bd820694691 commit: c0253ea90aa03327fad4e4341cdd0d38a6dd24a5 Author: Benda Xu gentoo org> AuthorDate: Thu May 19 04:11:41 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Thu May 19 04:11:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0253ea9 dev-python/llvmlite: disable libstdc++ static linking. Bug: 580898 Upstream-Bug: https://github.com/numba/llvmlite/issues/93 Package-Manager: portage-2.2.28 dev-python/llvmlite/llvmlite-0.10.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/llvmlite/llvmlite-0.10.0.ebuild b/dev-python/llvmlite/llvmlite-0.10.0.ebuild index 4b8f23f..91e8986 100644 --- a/dev-python/llvmlite/llvmlite-0.10.0.ebuild +++ b/dev-python/llvmlite/llvmlite-0.10.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -28,7 +28,8 @@ DEPEND="${RDEPEND} dev-util/cmake" python_prepare_all() { - sed -i -e 's/-flto$/-flto -fPIC/' ffi/Makefile.linux || die + sed -i -e 's/-flto$/-flto -fPIC/' \ + -e 's/-static-libstdc++ //' ffi/Makefile.linux || die # disable test using installed instance to read version info sed -e 's:test_version:_&:' -i llvmlite/tests/test_binding.py || die