Gentoo Archives: gentoo-commits

From: Christoph Junghans <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ispc/
Date: Mon, 30 May 2016 20:11:51
Message-Id: 1464639091.81741ade00690b49413776ab9c599befde2280bb.ottxor@gentoo
1 commit: 81741ade00690b49413776ab9c599befde2280bb
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 19:36:08 2016 +0000
4 Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 20:11:31 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81741ade
7
8 dev-lang/ispc: version bump
9
10 Package-Manager: portage-2.2.28
11
12 dev-lang/ispc/Manifest | 1 +
13 dev-lang/ispc/ispc-1.9.0.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/dev-lang/ispc/Manifest b/dev-lang/ispc/Manifest
17 index 8665512..11e4fc0 100644
18 --- a/dev-lang/ispc/Manifest
19 +++ b/dev-lang/ispc/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ispc-1.8.2-llvm-3.7.patch.gz 15723 SHA256 8fc724b7076b0d288cf1ffeb1d71cfdbba8bf54e5923c1b862572646f6f29931 SHA512 7ad3997e8c0168d83bdc9cd0444e48467c31f9f497105ea6a98c358f8dd1db5c9acba636e5d86e6aed77c16f2a9d776142a3f2f9d2e3780ffddbb116e6679054 WHIRLPOOL 9f92edb0dbec381f43dea9b929683186254a8824cbf8b213d460166b03bf952555b0386f9346732e1ad5bd8ba90dac3c7ef531be94b30dd3288918026ae60064
22 DIST ispc-1.8.2.tar.gz 19259133 SHA256 d17ea68b7192d261a2830d6e00df656a73fbccd08a249433fcaf24a886902a9d SHA512 bb1f64afe41af138c386fb12a2a7f477f7bc8df2543191bbe7e5d7624e6b00dfec11ba422f6f396cd91af1c7b4cb5d2b3febf7902740d85c6d068de8ab94765a WHIRLPOOL 45ba7c52b3ada111f518b2a94d71d8c259040114ae84881c693f6e3491bd4b6897563eba4bccb6ae83a7cb90901bf1723bcbfeb9a124267ed235b1b8fdf61d69
23 +DIST ispc-1.9.0.tar.gz 19271046 SHA256 b151e50f80754d81302f968c66cc7444c65010c20d1f83382b94c22491bb3971 SHA512 d886697fd0390017ee0b8c8682834d8b600b10c08eb069eea53eba7cc68788ec5a8e3f50366636add362c5a0508ef38fc0789f6a349d913b972f325830c78c28 WHIRLPOOL 63020bc499e16655bed565187d97ca7810aea294ca32ec8bef5344e4fb11ecc109cf6af7018d820ed28674b82c2a50148bb2d598d0d3cee848d990072bedb717
24
25 diff --git a/dev-lang/ispc/ispc-1.9.0.ebuild b/dev-lang/ispc/ispc-1.9.0.ebuild
26 new file mode 100644
27 index 0000000..53edbc7
28 --- /dev/null
29 +++ b/dev-lang/ispc/ispc-1.9.0.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 )
38 +
39 +inherit toolchain-funcs python-any-r1
40 +
41 +DESCRIPTION="Intel SPMD Program Compiler"
42 +HOMEPAGE="https://ispc.github.com/"
43 +
44 +if [[ ${PV} = *9999 ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="git://github.com/ispc/ispc.git"
47 + KEYWORDS=""
48 +else
49 + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 + KEYWORDS="~amd64 ~x86"
51 +fi
52 +
53 +LICENSE="BSD BSD-2 UoI-NCSA"
54 +SLOT="0"
55 +IUSE="examples"
56 +
57 +RDEPEND="
58 + >=sys-devel/clang-3.0
59 + >=sys-devel/llvm-3.0
60 + "
61 +DEPEND="
62 + ${RDEPEND}
63 + ${PYTHON_DEPS}
64 + sys-devel/bison
65 + sys-devel/flex
66 + "
67 +
68 +src_compile() {
69 + sed -i '/^\t@/s/@//' Makefile || die #make all slient commands ("@") verbose
70 + emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
71 +}
72 +
73 +src_install() {
74 + dobin ispc
75 + dodoc README.rst
76 +
77 + if use examples; then
78 + insinto "/usr/share/doc/${PF}/examples"
79 + docompress -x "/usr/share/doc/${PF}/examples"
80 + doins -r examples/*
81 + fi
82 +}