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/graphviz/
Date: Thu, 31 Mar 2022 16:03:21
Message-Id: 1648741324.85ac90eafe0609881ce94946fc9d49e9dac2152f.mgorny@gentoo
1 commit: 85ac90eafe0609881ce94946fc9d49e9dac2152f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 15:42:04 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 15:42:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85ac90ea
7
8 dev-python/graphviz: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/graphviz/graphviz-0.19.1.ebuild | 38 ------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/dev-python/graphviz/graphviz-0.19.1.ebuild b/dev-python/graphviz/graphviz-0.19.1.ebuild
16 deleted file mode 100644
17 index 4600484d191c..000000000000
18 --- a/dev-python/graphviz/graphviz-0.19.1.ebuild
19 +++ /dev/null
20 @@ -1,38 +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 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Simple Python interface for Graphviz"
30 -HOMEPAGE="https://graphviz.readthedocs.io/"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
32 -
33 -LICENSE="MIT"
34 -KEYWORDS="amd64 ~riscv x86 ~amd64-linux ~x86-linux"
35 -SLOT="0"
36 -
37 -RDEPEND="media-gfx/graphviz"
38 -BDEPEND="
39 - app-arch/unzip
40 - test? (
41 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
42 - >=dev-python/pytest-mock-1.8[${PYTHON_USEDEP}]
43 - media-gfx/graphviz[gts,pdf]
44 - )
45 -"
46 -
47 -distutils_enable_tests pytest
48 -
49 -src_prepare() {
50 - sed -e 's:--cov --cov-report=term --cov-report=html::' \
51 - -i setup.cfg || die
52 - distutils-r1_src_prepare
53 -}
54 -
55 -python_test() {
56 - "${EPYTHON}" run-tests.py -vv -ra -l -Wdefault -p no:xdoctest ||
57 - die "Tests failed with ${EPYTHON}"
58 -}