Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/graphviz/
Date: Tue, 12 Mar 2019 23:30:04
Message-Id: 1552427527.aed9457afed12f70edb3a2eac25d2debdf529ff4.williamh@gentoo
1 commit: aed9457afed12f70edb3a2eac25d2debdf529ff4
2 Author: William Hubbs <william.hubbs <AT> sony <DOT> com>
3 AuthorDate: Tue Mar 12 20:26:04 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 21:52:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aed9457a
7
8 dev-python/graphviz: 0.10.1 bump
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.51, Repoman-2.3.12
12 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
13
14 dev-python/graphviz/Manifest | 1 +
15 dev-python/graphviz/graphviz-0.10.1.ebuild | 33 ++++++++++++++++++++++++++++++
16 2 files changed, 34 insertions(+)
17
18 diff --git a/dev-python/graphviz/Manifest b/dev-python/graphviz/Manifest
19 index 4a5091f4f5c..22013e4f9cf 100644
20 --- a/dev-python/graphviz/Manifest
21 +++ b/dev-python/graphviz/Manifest
22 @@ -1 +1,2 @@
23 +DIST graphviz-0.10.1.zip 167590 BLAKE2B 4ca344cffe042bd16de56c15ae8056805e7ea82c88b0a9b535cc42d77038d1b54f1f4102630df3b3961e2edf7ab36e2cab75aea6a73a98c603609e0df82ab1fd SHA512 49366190fd3bd703c3d85a9220a63e5a667dc35a41037a54167f3ba96098945b2331294ece4ab260d7006b260cfdd0558b007768fb5f51aededf0b2c0d302eff
24 DIST graphviz-0.7.1.zip 100779 BLAKE2B b981953160f1978fe62b6c2cf422fcde78cc4de80a5274fd6e59c15f8907b34c68b0413d2c538d507d43bd8761349cd7fe532744d2e5ad737f403e52e1fca7b2 SHA512 e8ba326060ff3039f74902c01cf3d96c9965ce2259d0d5a9594e399added05c7e25b0f6c4b0be9ab21c1d37bbfb69e9c4856a7bb457b545185d48838d34cac70
25
26 diff --git a/dev-python/graphviz/graphviz-0.10.1.ebuild b/dev-python/graphviz/graphviz-0.10.1.ebuild
27 new file mode 100644
28 index 00000000000..7e92809d7b7
29 --- /dev/null
30 +++ b/dev-python/graphviz/graphviz-0.10.1.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_5 python3_6 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Simple Python interface for Graphviz"
42 +HOMEPAGE="https://graphviz.readthedocs.io/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
44 +
45 +LICENSE="MIT"
46 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 +SLOT="0"
48 +IUSE="test"
49 +
50 +RDEPEND="media-gfx/graphviz"
51 +DEPEND="
52 + app-arch/unzip
53 + dev-python/setuptools[${PYTHON_USEDEP}]
54 + test? ( ${RDEPEND}
55 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
56 + >=dev-python/pytest-3.4[${PYTHON_USEDEP}]
57 + >=dev-python/pytest-mock-1.8[${PYTHON_USEDEP}]
58 + dev-python/pytest-cov[${PYTHON_USEDEP}]
59 + )
60 +"
61 +
62 +python_test() {
63 + py.test -v || die
64 +}