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 93C74138010 for ; Sun, 26 Aug 2012 18:33:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37A00E0712; Sun, 26 Aug 2012 18:33:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 098BBE0712 for ; Sun, 26 Aug 2012 18:32:59 +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 5867E33D859 for ; Sun, 26 Aug 2012 18:32:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9F99BE543B for ; Sun, 26 Aug 2012 18:32:57 +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: <1346005959.f76906d097da4e564e3c0f7dd05753ff5c1a7a6c.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: f76906d097da4e564e3c0f7dd05753ff5c1a7a6c X-VCS-Branch: master Date: Sun, 26 Aug 2012 18:32:57 +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: 6a019797-4526-4419-8a61-e04ab1e647e2 X-Archives-Hash: 66935f6da400374699f4cb3723e65ade commit: f76906d097da4e564e3c0f7dd05753ff5c1a7a6c Author: Christoph Junghans gentoo org> AuthorDate: Sun Aug 26 18:32:39 2012 +0000 Commit: Christoph Junghans gmx de> CommitDate: Sun Aug 26 18:32:39 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f76906d0 sync with gx86 (Portage version: 2.2.0_alpha122/git/Linux i686, unsigned Manifest commit) --- dev-lang/ispc/ChangeLog | 4 +++- dev-lang/ispc/ispc-9999.ebuild | 18 +++++++++++------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog index 04f5d93..81a6141 100644 --- a/dev-lang/ispc/ChangeLog +++ b/dev-lang/ispc/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 26 Aug 2012; Christoph Junghans ispc-9999.ebuild: + sync with gx86 + 17 Jun 2012; Christoph Junghans ispc-9999.ebuild: fixed redundant license (bug #421401) @@ -10,4 +13,3 @@ 14 Jun 2012; Christoph Junghans +ispc-9999.ebuild, +metadata.xml: initial commit - diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild index 3931052..f1c5130 100644 --- a/dev-lang/ispc/ispc-9999.ebuild +++ b/dev-lang/ispc/ispc-9999.ebuild @@ -1,20 +1,25 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.2.2.ebuild,v 1.1 2012/06/14 17:31:34 ottxor Exp $ +# $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 git-2 toolchain-funcs +inherit base toolchain-funcs DESCRIPTION="Intel SPMD Program Compiler" HOMEPAGE="http://ispc.github.com/" -SRC_URI="" -EGIT_REPO_URI="git://github.com/ispc/ispc.git" +if [[ ${PV} = *9999 ]]; then + inherit git-2 + EGIT_REPO_URI="git://github.com/ispc/ispc.git" +else + inherit vcs-snapshot + SRC_URI="https://github.com/${PN}/${PN}/tarball/v${PV} -> ${P}.tar.gz" +fi LICENSE="BSD BSD-2 UoI-NCSA" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="examples" RDEPEND=" @@ -27,14 +32,13 @@ DEPEND=" sys-devel/flex " -DOCS=( README.rst ) - src_compile() { emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)" } src_install() { dobin ispc + dodoc README.rst if use examples; then insinto "/usr/share/doc/${PF}/examples"