summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-12-21 18:58:23 +0100
committerMichał Górny <mgorny@gentoo.org>2017-12-21 22:00:54 +0100
commit0179e2775398a57d96ea19b1a10dc56d51e3e8d0 (patch)
treee8e397a55ecc0d06b9f8e2e34538fd4dc9e1fb54 /dev-python/lit
parentsys-devel/llvm-common: Remove live ebuild for obsolete 5.0 branch (diff)
downloadgentoo-0179e2775398a57d96ea19b1a10dc56d51e3e8d0.tar.gz
gentoo-0179e2775398a57d96ea19b1a10dc56d51e3e8d0.tar.bz2
gentoo-0179e2775398a57d96ea19b1a10dc56d51e3e8d0.zip
dev-python/lit: Remove live ebuild for obsolete 5.0 branch
Diffstat (limited to 'dev-python/lit')
-rw-r--r--dev-python/lit/lit-5.0.9999.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/lit/lit-5.0.9999.ebuild b/dev-python/lit/lit-5.0.9999.ebuild
deleted file mode 100644
index 43337cc4d0f6..000000000000
--- a/dev-python/lit/lit-5.0.9999.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A stand-alone install of the LLVM suite testing tool"
-HOMEPAGE="https://llvm.org/"
-SRC_URI=""
-EGIT_REPO_URI="https://git.llvm.org/git/llvm.git
- https://github.com/llvm-mirror/llvm.git"
-EGIT_BRANCH="release_50"
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-S=${WORKDIR}/${P}/utils/lit
-
-# Tests require 'FileCheck' and 'not' utilities (from llvm)
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- dev-python/psutil[${PYTHON_USEDEP}]
- sys-devel/llvm )"
-
-# TODO: move the manpage generation here (from sys-devel/llvm)
-
-src_unpack() {
- git-r3_fetch
- git-r3_checkout '' '' '' utils/lit
-}
-
-python_test() {
- ./lit.py -sv tests || die
-}