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/pygraphviz/
Date: Fri, 09 Oct 2020 08:53:22
Message-Id: 1602232992.755d48ba3016cf2701f2bac6df738c215c552e67.mgorny@gentoo
1 commit: 755d48ba3016cf2701f2bac6df738c215c552e67
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 08:39:39 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 08:43:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=755d48ba
7
8 dev-python/pygraphviz: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pygraphviz/Manifest | 1 -
13 dev-python/pygraphviz/pygraphviz-1.5.ebuild | 51 -----------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/pygraphviz/Manifest b/dev-python/pygraphviz/Manifest
17 index b81426376a4..a2ec4209679 100644
18 --- a/dev-python/pygraphviz/Manifest
19 +++ b/dev-python/pygraphviz/Manifest
20 @@ -1,2 +1 @@
21 -DIST pygraphviz-1.5.zip 117810 BLAKE2B e9139d6b8e01cacb3135b1ccd2fa8624c041b7a04848f66c7668c5acf55cf66380ab9f05193b1bb240133f0c01a21915e2314807fcde23246c287d22efb9450a SHA512 6d3df6642a7e23ecb6b687761480b80a3ee5886508ef50b81697041425be7d09d623bf46990c5cea3ef36817a28d9e5c2905eb32267296f55524fdedb2199ea2
22 DIST pygraphviz-1.6.zip 117043 BLAKE2B a6c4f28d67ff67bf3fb69869adaad23855c6d702663cfea648b2072b8a5095caaa3d9cfcc864354a362cc6c4c2c6e4a15d5977c58c6af5e22b02f8cea8f7e877 SHA512 6dd389b3fd8c46fd5c8a5a450623f2fe080f720bcf0812618549d092cf917b56ef515f4235fdb89123ece422c6e295705bb08076a3d3e9b193955fcda624acb3
23
24 diff --git a/dev-python/pygraphviz/pygraphviz-1.5.ebuild b/dev-python/pygraphviz/pygraphviz-1.5.ebuild
25 deleted file mode 100644
26 index d87dcfbc259..00000000000
27 --- a/dev-python/pygraphviz/pygraphviz-1.5.ebuild
28 +++ /dev/null
29 @@ -1,51 +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 -PYTHON_COMPAT=( python3_{6,7,8} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python wrapper for the Graphviz Agraph data structure"
40 -HOMEPAGE="https://pygraphviz.github.io/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
46 -IUSE="examples test"
47 -RESTRICT="!test? ( test )"
48 -
49 -# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary.
50 -RDEPEND="media-gfx/graphviz"
51 -DEPEND="${RDEPEND}
52 - dev-lang/swig:0
53 - test? (
54 - dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}]
55 - dev-python/nose[${PYTHON_USEDEP}]
56 - )
57 -"
58 -
59 -PATCHES=(
60 - "${FILESDIR}"/${P}-docs.patch
61 -)
62 -
63 -python_prepare_all() {
64 - distutils-r1_python_prepare_all
65 - swig -python pygraphviz/graphviz.i || die
66 -}
67 -
68 -python_test() {
69 - PYTHONPATH=${PYTHONPATH}:${BUILD_DIR}/lib/pygraphviz \
70 - nosetests -c setup.cfg -x -v || die
71 -}
72 -
73 -python_install_all() {
74 - if use examples; then
75 - dodoc -r examples
76 - docompress -x /usr/share/doc/${PF}/examples
77 - fi
78 -
79 - distutils-r1_python_install_all
80 -}