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 Jul 2021 07:26:35
Message-Id: 1625815579.164ef1cb856a9f6b2fd8f38ae372375c62dabb6c.mgorny@gentoo
1 commit: 164ef1cb856a9f6b2fd8f38ae372375c62dabb6c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 9 07:19:16 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 9 07:26:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164ef1cb
7
8 dev-python/pygraphviz: Bump to 1.7
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.7.ebuild | 43 +++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/pygraphviz/Manifest b/dev-python/pygraphviz/Manifest
17 index a2ec4209679..ca7cd8c5394 100644
18 --- a/dev-python/pygraphviz/Manifest
19 +++ b/dev-python/pygraphviz/Manifest
20 @@ -1 +1,2 @@
21 DIST pygraphviz-1.6.zip 117043 BLAKE2B a6c4f28d67ff67bf3fb69869adaad23855c6d702663cfea648b2072b8a5095caaa3d9cfcc864354a362cc6c4c2c6e4a15d5977c58c6af5e22b02f8cea8f7e877 SHA512 6dd389b3fd8c46fd5c8a5a450623f2fe080f720bcf0812618549d092cf917b56ef515f4235fdb89123ece422c6e295705bb08076a3d3e9b193955fcda624acb3
22 +DIST pygraphviz-1.7.zip 118754 BLAKE2B 36507fc862bec45a33bee3f89e7593a15639e7d98067e1c4ddf917558b7bc037b9d7607f7f017ad5980ba0e6805e63f05464efe8fd416ef70cb95709151714e3 SHA512 09438931d1930a70f7da94b0a12b449c0836ad707c6c8abed49bae0db162c136002d170398ed02dc56a5029269490ce3156d2d4b0f30602a11165bc0038998ea
23
24 diff --git a/dev-python/pygraphviz/pygraphviz-1.7.ebuild b/dev-python/pygraphviz/pygraphviz-1.7.ebuild
25 new file mode 100644
26 index 00000000000..de88e7c96fe
27 --- /dev/null
28 +++ b/dev-python/pygraphviz/pygraphviz-1.7.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Python wrapper for the Graphviz Agraph data structure"
39 +HOMEPAGE="https://pygraphviz.github.io/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos"
45 +
46 +# Note: only C API of graphviz is used, PYTHON_USEDEP unnecessary.
47 +RDEPEND="media-gfx/graphviz"
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="
50 + app-arch/unzip
51 + dev-lang/swig:0
52 + test? ( dev-python/doctest-ignore-unicode[${PYTHON_USEDEP}] )"
53 +
54 +distutils_enable_tests pytest
55 +
56 +python_prepare_all() {
57 + distutils-r1_python_prepare_all
58 + swig -python pygraphviz/graphviz.i || die
59 +}
60 +
61 +python_test() {
62 + cd "${BUILD_DIR}"/lib || die
63 + epytest
64 + rm -rf .hypothesis .pytest_cache || die
65 +}
66 +
67 +python_install_all() {
68 + dodoc -r examples
69 + docompress -x /usr/share/doc/${PF}/examples
70 +
71 + distutils-r1_python_install_all
72 +}