Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ispc: ispc-1.4.1.ebuild ChangeLog ispc-1.3.1.ebuild
Date: Fri, 31 May 2013 23:25:25
Message-Id: 20130531232518.3641C2171D@flycatcher.gentoo.org
1 ottxor 13/05/31 23:25:18
2
3 Modified: ChangeLog
4 Added: ispc-1.4.1.ebuild
5 Removed: ispc-1.3.1.ebuild
6 Log:
7 version bump (thx to alexxy)
8
9 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key C2000586)
10
11 Revision Changes Path
12 1.11 dev-lang/ispc/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ChangeLog?rev=1.11&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ChangeLog?rev=1.11&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ChangeLog?r1=1.10&r2=1.11
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v
21 retrieving revision 1.10
22 retrieving revision 1.11
23 diff -u -r1.10 -r1.11
24 --- ChangeLog 11 Jan 2013 22:33:31 -0000 1.10
25 +++ ChangeLog 31 May 2013 23:25:17 -0000 1.11
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-lang/ispc
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v 1.10 2013/01/11 22:33:31 ottxor Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ChangeLog,v 1.11 2013/05/31 23:25:17 ottxor Exp $
31 +
32 +*ispc-1.4.1 (31 May 2013)
33 +
34 + 31 May 2013; Christoph Junghans <ottxor@g.o> +ispc-1.4.1.ebuild,
35 + -ispc-1.3.1.ebuild:
36 + version bump (thx to alexxy)
37
38 11 Jan 2013; Christoph Junghans <ottxor@g.o> ispc-1.3.1.ebuild:
39 update SRC_URI
40
41
42
43 1.1 dev-lang/ispc/ispc-1.4.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ispc-1.4.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ispc/ispc-1.4.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ispc-1.4.1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.4.1.ebuild,v 1.1 2013/05/31 23:25:17 ottxor Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit base toolchain-funcs python-any-r1
59
60 DESCRIPTION="Intel SPMD Program Compiler"
61 HOMEPAGE="http://ispc.github.com/"
62
63 if [[ ${PV} = *9999 ]]; then
64 inherit git-2
65 EGIT_REPO_URI="git://github.com/ispc/ispc.git"
66 else
67 SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
68 fi
69
70 LICENSE="BSD BSD-2 UoI-NCSA"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE="examples"
74
75 RDEPEND="
76 >=sys-devel/clang-3.0
77 >=sys-devel/llvm-3.0
78 "
79 DEPEND="
80 ${RDEPEND}
81 sys-devel/bison
82 sys-devel/flex
83 "
84
85 src_compile() {
86 emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
87 }
88
89 src_install() {
90 dobin ispc
91 dodoc README.rst
92
93 if use examples; then
94 insinto "/usr/share/doc/${PF}/examples"
95 docompress -x "/usr/share/doc/${PF}/examples"
96 doins -r examples/*
97 fi
98 }