dev-libs/libclc: Drop 0.2.0_pre20160209 (requires LLVM 3.7)

This commit is contained in:
Michał Górny
2018-03-29 10:47:34 +02:00
parent 9a705e1f9c
commit 43a35d6717
2 changed files with 0 additions and 56 deletions

View File

@@ -1,4 +1,3 @@
DIST libclc-0.2.0_pre20160209.tar.xz 75756 BLAKE2B 9f093e67feecfb75caaaf4f53ec07a75ee07c80dd9c18adeefac96d52632a7b1cdb6e336c5a156018b117fdf0d16d2d6e12c116ee35be1d236ca9500b71208aa SHA512 d3edff5e04dc3d34033fdccc0a0d8256ea03515bd98b32818ec181d541141acf9ea06bb7e6bb149ea5e7f5dbcbb76ba13453fb1f461b4737a15ac60c7b3fc4ca
DIST libclc-0.2.0_pre20160921.tar.gz 127817 BLAKE2B 831bdc4a82d50ec33eb3199ef707fd84951b2b07cc8f6b1f166834240eab533d5f69dbe1d5d6c47cecd9f3c51618b96ad868c724e758fce2ec9d5f0915989f38 SHA512 5aae6010f32935c0b8fa510fc27cfd0be2df3d58d73cb5fb280d6758aafe54bd63a0137e59053aa81dca01ad2c5a0591ee1d4a83e3ef9a590a009a1a19062373
DIST libclc-0.2.0_pre20170118.tar.gz 130793 BLAKE2B 5083e821c5a0e481d3b6b638ac93c8c936972dcdb78e20a86de5f6873f300d7065e8aba242b332d4a91d494bb3a9e67f1f60a566bfbef78891d7c438bebbf41c SHA512 d94a58ebcafb7bbdbcded84574676537ae7b4ba86c7c2270cc1cd7aa3113104e018e53396b570e821c2fd473b6dd63677f59d990e36e15a7cdb43cdb96cd058c
DIST libclc-0.2.0_pre20170929.tar.gz 138719 BLAKE2B 05a3d47626a5e1918f32510b1254f846c88c642f60920377dda73568d34656fecd53872ebc01114b2cc8b2161b196c89efe119bfd785875f723fcee4c1ce3662 SHA512 08f3a21fb1dc103a3b33980c420506fd142294b2d8b4a3eeb100ea55036fb87b9740a2489a0a9a5793d71ebb157e6f3ad7854d1916fc1fa472de72374cdeaea3

View File

@@ -1,55 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
EGIT_REPO_URI="http://llvm.org/git/${PN}.git"
if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi
inherit python-any-r1 $GIT_ECLASS
DESCRIPTION="OpenCL C library"
HOMEPAGE="http://libclc.llvm.org/"
if [[ $PV = 9999* ]]; then
SRC_URI="${SRC_PATCHES}"
else
SRC_URI="mirror://gentoo/${P}.tar.xz ${SRC_PATCHES}"
fi
LICENSE="|| ( MIT BSD )"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
>=sys-devel/clang-3.7:0
>=sys-devel/llvm-3.7:0
<sys-devel/clang-3.9:0
<sys-devel/llvm-3.9:0"
DEPEND="${RDEPEND}
${PYTHON_DEPS}"
src_unpack() {
if [[ $PV = 9999* ]]; then
git-r3_src_unpack
else
default
mv ${PN}-*/ ${P} || die
fi
}
src_configure() {
./configure.py \
--with-llvm-config="$(type -P llvm-config)" \
--prefix="${EPREFIX}/usr" || die
}
src_compile() {
emake VERBOSE=1
}