summaryrefslogtreecommitdiff
path: root/dev-libs
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-03-23 04:37:50 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-03-23 04:37:50 +0000
commitbc6059ef50d0d22e13600234e4e0940bddbfb31c (patch)
treec507a22ef40fbc1082ff7b8e3e083bc42b7b39e3 /dev-libs
parenta5b0e82615a45715903e6f6462326a1ca36efb59 (diff)
dev-libs/libclc : gentoo finally catched up, drop our snapshot package
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libclc/Manifest1
-rw-r--r--dev-libs/libclc/libclc-0.2.0_pre20180310.ebuild72
2 files changed, 0 insertions, 73 deletions
diff --git a/dev-libs/libclc/Manifest b/dev-libs/libclc/Manifest
deleted file mode 100644
index 296e50ed..00000000
--- a/dev-libs/libclc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libclc-0.2.0_pre20180310.tar.gz 159107 SHA256 b4ef414d5252859dae7accb4ed42caa175c98a90f94ad9d7a19be53dc43df2b1 SHA512 18341649b99e413cecba18f78ab2c1be748d84317fca2eb6146ede1efaca20f002af7815e7da751a54e253042547a40e5786cc954e7312b2429da2ce7a575e8c WHIRLPOOL 3b9d236385a0bbe73d8fd9f16ab8f8fe8c4662b8fd330e065a76e0fa0d9268b2dcbc90abe49cfb2fc37a1fdf7131fab91cd1558713a58107b25273933291874b
diff --git a/dev-libs/libclc/libclc-0.2.0_pre20180310.ebuild b/dev-libs/libclc/libclc-0.2.0_pre20180310.ebuild
deleted file mode 100644
index d94c49f3..00000000
--- a/dev-libs/libclc/libclc-0.2.0_pre20180310.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
-
-EGIT_REPO_URI="http://llvm.org/git/${PN}.git
- https://github.com/llvm-mirror/${PN}.git"
-EGIT_COMMIT="a8b683ef7dd2fe729ef18167283502c29e6d9090"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
- EXPERIMENTAL="true"
-else
- GIT_ECLASS="vcs-snapshot"
-fi
-
-inherit llvm prefix python-any-r1 toolchain-funcs ${GIT_ECLASS}
-
-DESCRIPTION="OpenCL C library"
-HOMEPAGE="http://libclc.llvm.org/"
-
-if [[ ${PV} = 9999* ]]; then
- SRC_URI="${SRC_PATCHES}"
-else
- SRC_URI="https://github.com/llvm-mirror/libclc/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz
- ${SRC_PATCHES}"
-fi
-
-LICENSE="|| ( MIT BSD )"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
- || (
- sys-devel/clang:6
- sys-devel/clang:5
- sys-devel/clang:4
- >=sys-devel/clang-3.9:0
- )"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}"
-
-LLVM_MAX_SLOT=6
-
-llvm_check_deps() {
- has_version "sys-devel/clang:${LLVM_SLOT}"
-}
-
-src_prepare() {
- default
- if use prefix; then
- hprefixify configure.py
- fi
-}
-
-pkg_setup() {
- # we do not need llvm_pkg_setup
- python-any-r1_pkg_setup
-}
-
-src_configure() {
- ./configure.py \
- --with-cxx-compiler="$(tc-getCXX)" \
- --with-llvm-config="$(get_llvm_prefix "${LLVM_MAX_SLOT}")/bin/llvm-config" \
- --prefix="${EPREFIX}/usr" || die
-}
-
-src_compile() {
- emake VERBOSE=1
-}