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