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 9A9B213835A for ; Tue, 8 Jan 2013 04:36:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 840EB21C015; Tue, 8 Jan 2013 04:36:46 +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 0815A21C015 for ; Tue, 8 Jan 2013 04:36:45 +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 0E72E33DB30 for ; Tue, 8 Jan 2013 04:36:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 96E4CE5439 for ; Tue, 8 Jan 2013 04:36:43 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1357619795.51824bb37562772d7a02adabda11528e4f091886.kleiner_otti@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lang/ispc/ChangeLog dev-lang/ispc/ispc-9999.ebuild X-VCS-Directories: dev-lang/ispc/ X-VCS-Committer: kleiner_otti X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 51824bb37562772d7a02adabda11528e4f091886 X-VCS-Branch: master Date: Tue, 8 Jan 2013 04:36:43 +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: b71d7fc5-e0ba-44af-bb03-6d0467344239 X-Archives-Hash: 3db8a5e3341d81f339f51afe21ab537c commit: 51824bb37562772d7a02adabda11528e4f091886 Author: Christoph Junghans gentoo org> AuthorDate: Tue Jan 8 04:35:19 2013 +0000 Commit: Christoph Junghans gmx de> CommitDate: Tue Jan 8 04:36:35 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=51824bb3 fixed python dep Package-Manager: portage-2.2.0_alpha149 --- dev-lang/ispc/ChangeLog | 5 ++++- dev-lang/ispc/ispc-9999.ebuild | 10 ++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog index 81a6141..e87b0c0 100644 --- a/dev-lang/ispc/ChangeLog +++ b/dev-lang/ispc/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for dev-lang/ispc -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 08 Jan 2013; Christoph Junghans ispc-9999.ebuild: + fixed python dep + 26 Aug 2012; Christoph Junghans ispc-9999.ebuild: sync with gx86 diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild index f1c5130..e65b5c1 100644 --- a/dev-lang/ispc/ispc-9999.ebuild +++ b/dev-lang/ispc/ispc-9999.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.2 2012/07/20 19:58:21 ottxor Exp $ EAPI=4 -inherit base toolchain-funcs +PYTHON_DEPEND="2" + +inherit base toolchain-funcs python DESCRIPTION="Intel SPMD Program Compiler" HOMEPAGE="http://ispc.github.com/" @@ -32,6 +34,10 @@ DEPEND=" sys-devel/flex " +pkg_setup() { + python_set_active_version 2 +} + src_compile() { emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)" }