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: Mon, 24 Jul 2017 19:04:03
Message-Id: 1500923024.13ea51202f971c357987d7d093a6899ab05b842c.mgorny@gentoo
1 commit: 13ea51202f971c357987d7d093a6899ab05b842c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 23 15:30:01 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 24 19:03:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13ea5120
7
8 dev-python/lit: Branch for 5.0.0 release
9
10 dev-python/lit/lit-5.0.9999.ebuild | 34 ++++++++++++++++++++++++++++++++++
11 1 file changed, 34 insertions(+)
12
13 diff --git a/dev-python/lit/lit-5.0.9999.ebuild b/dev-python/lit/lit-5.0.9999.ebuild
14 new file mode 100644
15 index 00000000000..61b9ce3ec02
16 --- /dev/null
17 +++ b/dev-python/lit/lit-5.0.9999.ebuild
18 @@ -0,0 +1,34 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
25 +inherit distutils-r1 git-r3
26 +
27 +DESCRIPTION="A stand-alone install of the LLVM suite testing tool"
28 +HOMEPAGE="https://llvm.org/"
29 +SRC_URI=""
30 +EGIT_REPO_URI="https://git.llvm.org/git/llvm.git
31 + https://github.com/llvm-mirror/llvm.git"
32 +EGIT_BRANCH="release_50"
33 +
34 +LICENSE="UoI-NCSA"
35 +SLOT="0"
36 +KEYWORDS=""
37 +IUSE="test"
38 +
39 +S=${WORKDIR}/${P}/utils/lit
40 +
41 +# Tests require 'FileCheck' and 'not' utilities (from llvm)
42 +DEPEND="
43 + dev-python/setuptools[${PYTHON_USEDEP}]
44 + test? (
45 + dev-python/psutil[${PYTHON_USEDEP}]
46 + sys-devel/llvm )"
47 +
48 +# TODO: move the manpage generation here (from sys-devel/llvm)
49 +
50 +python_test() {
51 + ./lit.py -sv tests || die
52 +}