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: Wed, 05 Oct 2016 16:19:57
Message-Id: 1475684381.fdab7fc15aa348d070a5b901c0cfb0d76975ec0d.mgorny@gentoo
1 commit: fdab7fc15aa348d070a5b901c0cfb0d76975ec0d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 5 15:47:07 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 5 16:19:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdab7fc1
7
8 dev-python/lit: Add 3.9.0 release
9
10 dev-python/lit/Manifest | 1 +
11 dev-python/lit/lit-3.9.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
12 2 files changed, 35 insertions(+)
13
14 diff --git a/dev-python/lit/Manifest b/dev-python/lit/Manifest
15 new file mode 100644
16 index 00000000..2f155b8
17 --- /dev/null
18 +++ b/dev-python/lit/Manifest
19 @@ -0,0 +1 @@
20 +DIST llvm-3.9.0.src.tar.xz 18235716 SHA256 66c73179da42cee1386371641241f79ded250e117a79f571bbd69e56daa48948 SHA512 f18ae32531218ab156c3e56c11826be0fd05f0799c82eaf2e6a043b38e1277560b4d921987513b88b11d97ea2619feaf277eec72181dd2ae4f4108c2836bf7b2 WHIRLPOOL a36c1bcee6e7995067a9a7a51e3fdb0f10d51d0239250eefab92ed2e46b024a203fa10a17a25a5aca69046bcb413628e288427f1a6690d0862e07cd95694c8a8
21
22 diff --git a/dev-python/lit/lit-3.9.0.ebuild b/dev-python/lit/lit-3.9.0.ebuild
23 new file mode 100644
24 index 00000000..6e832f5
25 --- /dev/null
26 +++ b/dev-python/lit/lit-3.9.0.ebuild
27 @@ -0,0 +1,34 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python2_7 )
35 +inherit distutils-r1
36 +
37 +MY_P=llvm-${PV}
38 +DESCRIPTION="A stand-alone install of the LLVM suite testing tool"
39 +HOMEPAGE="http://llvm.org/"
40 +SRC_URI="http://llvm.org/releases/${PV}/${MY_P}.src.tar.xz"
41 +EGIT_REPO_URI="http://llvm.org/git/llvm.git
42 + https://github.com/llvm-mirror/llvm.git"
43 +
44 +LICENSE="UoI-NCSA"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +S=${WORKDIR}/${MY_P}.src/utils/lit
50 +
51 +# Tests require 'FileCheck' and 'not' utilities (from llvm)
52 +DEPEND="
53 + test? (
54 + dev-python/psutil[${PYTHON_USEDEP}]
55 + sys-devel/llvm )"
56 +
57 +# TODO: move the manpage generation here (from sys-devel/llvm)
58 +
59 +python_test() {
60 + ./lit.py -sv tests || die
61 +}