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 2281B138247 for ; Mon, 2 Dec 2013 16:21:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3CA3E0869; Mon, 2 Dec 2013 16:21:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5AD61E0869 for ; Mon, 2 Dec 2013 16:21:41 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2435C33F24A for ; Mon, 2 Dec 2013 16:21:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D810C110005 for ; Mon, 2 Dec 2013 16:21:38 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1384919927.7733f5e801c0548c3f2f66d229d1817f91cf49f1.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/z3/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/z3/z3-4.3.1.ebuild X-VCS-Directories: sci-mathematics/z3/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 7733f5e801c0548c3f2f66d229d1817f91cf49f1 X-VCS-Branch: master Date: Mon, 2 Dec 2013 16:21:38 +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: 0c5a4328-bd0b-4d97-82a5-bd80c25b093c X-Archives-Hash: 3d6701168b1721cef9e9aa25acc62316 commit: 7733f5e801c0548c3f2f66d229d1817f91cf49f1 Author: Yichao Zhou gmail com> AuthorDate: Wed Nov 20 03:58:47 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Nov 20 03:58:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7733f5e8 sci-mathematics/z3-4.3.1: using python-r1, remove useless dependency --- sci-mathematics/z3/z3-4.3.1.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/sci-mathematics/z3/z3-4.3.1.ebuild b/sci-mathematics/z3/z3-4.3.1.ebuild index c334709..7b5b287 100644 --- a/sci-mathematics/z3/z3-4.3.1.ebuild +++ b/sci-mathematics/z3/z3-4.3.1.ebuild @@ -8,24 +8,25 @@ DESCRIPTION="An efficient theorem prover" HOMEPAGE="http://z3.codeplex.com/" EGIT_REPO_URI="https://git01.codeplex.com/z3" EGIT_COMMIT="v${PV}" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" SLOT="0" IUSE="" -DEPEND=" - app-arch/unzip - sys-devel/autoconf - >=net-misc/curl-7.33" -RDEPEND="${DEPEND}" +# A new curl is needed because codeplex has a bug and early version of libcurl +# will cause a failed git clone. +DEPEND=">=net-misc/curl-7.33" +RDEPEND="" S="${WORKDIR}/z3" src_prepare() { - eautoconf + eautoreconf + python-r1_src_prepare } src_configure() { - econf --host="" --with-python="$(which python2)" + python_export_best + econf --host="" --with-python="${PYTHON}" python2 scripts/mk_make.py } @@ -39,6 +40,5 @@ src_install() { dolib.so build/*.so dobin build/z3 - sed -i '1i#!/usr/bin/python2' src/api/python/*.py || die "sed failed" python_foreach_impl python_domodule src/api/python/*.py }