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: Sat, 27 Aug 2022 23:12:03
Message-Id: 1661581435.b4e46b22bb020e665caab8223e94d0638e8c0e3e.mgorny@gentoo
1 commit: b4e46b22bb020e665caab8223e94d0638e8c0e3e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 27 06:20:05 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 27 06:23:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e46b22
7
8 dev-python/graphviz: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/graphviz/Manifest | 1 -
13 dev-python/graphviz/graphviz-0.20.ebuild | 42 --------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/graphviz/Manifest b/dev-python/graphviz/Manifest
17 index f06dc613bd02..c9275247c609 100644
18 --- a/dev-python/graphviz/Manifest
19 +++ b/dev-python/graphviz/Manifest
20 @@ -1,2 +1 @@
21 DIST graphviz-0.20.1.gh.tar.gz 188952 BLAKE2B 65d0b993e01492894b6d245c0869412b4956e5d55f9d8d490505c8f3477dc5ab98739cf0bf1aa1a15c4bacb2db4c2807659ce410ca65503c5876ffdc278e959f SHA512 34d340469856777f03b9c9e6d28f232908797bc1456a5b50104dd2f7dc8b7488afc7b29a564d57707ae96f3291f5ae90b8140ab64e378b82f271b5521763fb55
22 -DIST graphviz-0.20.zip 255452 BLAKE2B 0bafa3af9d712e30bd6777d55d54c5a8055f8ad4c6e6ee8c9f936a5abf6e025d7179b2b72e9e0926378ae30e9b655d08507e815c67944123c6c222ecbcd4939d SHA512 8b30ac09913ec5860cf26cfc9e008b0feeda8d61274e346ec305087468b655ace115ff28e0ab96eb47d97127410213729d1131dd635771dcaedfae0bae0ca178
23
24 diff --git a/dev-python/graphviz/graphviz-0.20.ebuild b/dev-python/graphviz/graphviz-0.20.ebuild
25 deleted file mode 100644
26 index 03c5a6d9544f..000000000000
27 --- a/dev-python/graphviz/graphviz-0.20.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..11} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Simple Python interface for Graphviz"
41 -HOMEPAGE="https://graphviz.readthedocs.io/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
43 -
44 -LICENSE="MIT"
45 -KEYWORDS="amd64 ~riscv x86 ~amd64-linux ~x86-linux"
46 -SLOT="0"
47 -
48 -RDEPEND="
49 - media-gfx/graphviz
50 -"
51 -BDEPEND="
52 - app-arch/unzip
53 - test? (
54 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
55 - >=dev-python/pytest-mock-1.8[${PYTHON_USEDEP}]
56 - media-gfx/graphviz[gts,pdf]
57 - )
58 -"
59 -
60 -distutils_enable_tests pytest
61 -
62 -src_prepare() {
63 - sed -e 's:--cov --cov-report=term --cov-report=html::' \
64 - -i setup.cfg || die
65 - distutils-r1_src_prepare
66 -}
67 -
68 -python_test() {
69 - "${EPYTHON}" run-tests.py -vv -ra -l -Wdefault -p no:xdoctest ||
70 - die "Tests failed with ${EPYTHON}"
71 -}