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-util/cvise/
Date: Fri, 18 Sep 2020 09:38:19
Message-Id: 1600421880.6f33187ab34013d62fee3b39bba7830e8b07316d.mgorny@gentoo
1 commit: 6f33187ab34013d62fee3b39bba7830e8b07316d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 18 09:28:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 18 09:38:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f33187a
7
8 dev-util/cvise: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/cvise/Manifest | 1 -
13 dev-util/cvise/cvise-1.1.0.ebuild | 48 ---------------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-util/cvise/Manifest b/dev-util/cvise/Manifest
17 index 7f952238977..575d3a7861f 100644
18 --- a/dev-util/cvise/Manifest
19 +++ b/dev-util/cvise/Manifest
20 @@ -1,2 +1 @@
21 -DIST cvise-1.1.0.tar.gz 228867 BLAKE2B 08becb5ad00ef08a1f511c0bdb0cb649af1406dd035fe61f737ec6dfb5151215ae363272fc3676ce76e17234a88866ee1dd0664d82326f3ddb2ced2f1982aacf SHA512 66c09cb7e088fc36b0c36928e2eda19e7bef4fad4573fcedc06f2070136e74d7878f8056f406c2ade22fc465a75bf13dca9f4a1a319cd183187a2d66a441e661
22 DIST cvise-1.6.0.tar.gz 243050 BLAKE2B 64c305426dbeaf2e3f3a92a902209b35fcc76b5f5a6d2e48fcc8e24d1325badc0839e70afa1381c6d1412c22a7e9dd41ca03d6ca714fa5082958378cc8863000 SHA512 9d4ee043c34748b600b49ac4f00463b853faff2809f8b581e9b07433a8f3bef4436d0e5d5a9dbff1b2d7c3a8ab1d6d4823e78787eb3e911a683808703b2e24b6
23
24 diff --git a/dev-util/cvise/cvise-1.1.0.ebuild b/dev-util/cvise/cvise-1.1.0.ebuild
25 deleted file mode 100644
26 index dd6cb68eb87..00000000000
27 --- a/dev-util/cvise/cvise-1.1.0.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -: ${CMAKE_MAKEFILE_GENERATOR=ninja}
36 -PYTHON_COMPAT=( python3_{6,7,8} )
37 -inherit cmake llvm python-single-r1
38 -
39 -DESCRIPTION="Super-parallel Python port of the C-Reduce"
40 -HOMEPAGE="https://github.com/marxin/cvise/"
41 -SRC_URI="
42 - https://github.com/marxin/cvise/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="UoI-NCSA"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -REQUIRED_USE=${PYTHON_REQUIRED_USE}
50 -
51 -LLVM_MAX_SLOT=10
52 -DEPEND="sys-devel/clang:${LLVM_MAX_SLOT}"
53 -RDEPEND="${DEPEND}
54 - ${PYTHON_DEPS}
55 - $(python_gen_cond_dep '
56 - dev-python/pebble[${PYTHON_USEDEP}]
57 - ')
58 - dev-util/unifdef
59 - sys-devel/flex"
60 -BDEPEND="
61 - ${PYTHON_DEPS}
62 - sys-devel/flex
63 - test? (
64 - $(python_gen_cond_dep '
65 - dev-python/pebble[${PYTHON_USEDEP}]
66 - dev-python/pytest[${PYTHON_USEDEP}]
67 - ')
68 - )"
69 -
70 -llvm_check_deps() {
71 - has_version "sys-devel/clang:${LLVM_SLOT}"
72 -}
73 -
74 -src_test() {
75 - cd "${BUILD_DIR}" || die
76 - pytest -vv || die
77 -}