Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lit/
Date: Sat, 20 Apr 2019 23:26:19
Message-Id: 1555704644.b8ebb20fc20477473e0dc887dfe50389c8898af5.mgorny@gentoo
1 commit: b8ebb20fc20477473e0dc887dfe50389c8898af5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 19 19:48:29 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 19 20:10:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ebb20f
7
8 dev-python/lit: Remove 7.0.9999
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lit/lit-7.0.9999.ebuild | 41 --------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/lit/lit-7.0.9999.ebuild b/dev-python/lit/lit-7.0.9999.ebuild
16 deleted file mode 100644
17 index aa749c9b66f..00000000000
18 --- a/dev-python/lit/lit-7.0.9999.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
27 -inherit distutils-r1 git-r3 multiprocessing
28 -
29 -DESCRIPTION="A stand-alone install of the LLVM suite testing tool"
30 -HOMEPAGE="https://llvm.org/"
31 -SRC_URI=""
32 -EGIT_REPO_URI="https://git.llvm.org/git/llvm.git
33 - https://github.com/llvm-mirror/llvm.git"
34 -EGIT_BRANCH="release_70"
35 -
36 -LICENSE="UoI-NCSA"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE="test"
40 -RESTRICT="!test? ( test )"
41 -
42 -S=${WORKDIR}/${P}/utils/lit
43 -
44 -# Tests require 'FileCheck' and 'not' utilities (from llvm)
45 -DEPEND="
46 - dev-python/setuptools[${PYTHON_USEDEP}]
47 - test? (
48 - dev-python/psutil[${PYTHON_USEDEP}]
49 - sys-devel/llvm )"
50 -
51 -# TODO: move the manpage generation here (from sys-devel/llvm)
52 -
53 -src_unpack() {
54 - git-r3_fetch
55 - git-r3_checkout '' '' '' utils/lit
56 -}
57 -
58 -python_test() {
59 - ./lit.py -j "${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" \
60 - -vv tests || die
61 -}