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: Thu, 03 Feb 2022 15:45:57
Message-Id: 1643903048.351c5f4493f4f0b8714dd9da949178e7f70e7847.mgorny@gentoo
1 commit: 351c5f4493f4f0b8714dd9da949178e7f70e7847
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 15:39:21 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 15:44:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351c5f44
7
8 dev-python/lit: Remove 13.0.1.9999
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lit/lit-13.0.1.9999.ebuild | 41 -----------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/lit/lit-13.0.1.9999.ebuild b/dev-python/lit/lit-13.0.1.9999.ebuild
16 deleted file mode 100644
17 index 89c5315a5acb..000000000000
18 --- a/dev-python/lit/lit-13.0.1.9999.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -DISTUTILS_USE_PEP517=setuptools
27 -PYTHON_COMPAT=( python3_{8..10} )
28 -
29 -inherit distutils-r1 llvm.org
30 -
31 -DESCRIPTION="A stand-alone install of the LLVM suite testing tool"
32 -HOMEPAGE="https://llvm.org/"
33 -
34 -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
35 -SLOT="0"
36 -KEYWORDS=""
37 -IUSE="test"
38 -RESTRICT="!test? ( test )"
39 -
40 -# Tests require 'FileCheck' and 'not' utilities (from llvm)
41 -BDEPEND="
42 - test? (
43 - dev-python/psutil[${PYTHON_USEDEP}]
44 - sys-devel/llvm
45 - )"
46 -
47 -LLVM_COMPONENTS=( llvm/utils/lit )
48 -llvm.org_set_globals
49 -
50 -# TODO: move the manpage generation here (from sys-devel/llvm)
51 -
52 -src_prepare() {
53 - cd "${WORKDIR}" || die
54 - distutils-r1_src_prepare
55 -}
56 -
57 -python_test() {
58 - local -x LIT_PRESERVES_TMP=1
59 - local litflags=$(get_lit_flags)
60 - ./lit.py ${litflags//;/ } tests || die
61 -}