Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/graphviz/
Date: Tue, 24 Sep 2019 05:01:19
Message-Id: 1569301231.6f9c51464e8cb5b4296717454a8b8b19173164b7.juippis@gentoo
1 commit: 6f9c51464e8cb5b4296717454a8b8b19173164b7
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Mon Sep 23 20:50:32 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 24 05:00:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f9c5146
7
8 dev-python/graphviz: bump to version 0.13
9
10 Also added python3.7 support and EAPI=7.
11
12 Package-Manager: Portage-2.3.76, Repoman-2.3.17
13 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-python/graphviz/Manifest | 1 +
17 dev-python/graphviz/graphviz-0.13.ebuild | 33 ++++++++++++++++++++++++++++++++
18 2 files changed, 34 insertions(+)
19
20 diff --git a/dev-python/graphviz/Manifest b/dev-python/graphviz/Manifest
21 index 22013e4f9cf..105ada540ec 100644
22 --- a/dev-python/graphviz/Manifest
23 +++ b/dev-python/graphviz/Manifest
24 @@ -1,2 +1,3 @@
25 DIST graphviz-0.10.1.zip 167590 BLAKE2B 4ca344cffe042bd16de56c15ae8056805e7ea82c88b0a9b535cc42d77038d1b54f1f4102630df3b3961e2edf7ab36e2cab75aea6a73a98c603609e0df82ab1fd SHA512 49366190fd3bd703c3d85a9220a63e5a667dc35a41037a54167f3ba96098945b2331294ece4ab260d7006b260cfdd0558b007768fb5f51aededf0b2c0d302eff
26 +DIST graphviz-0.13.zip 181039 BLAKE2B 6484706c706941891500350c933cad537e63b8f6bd602c46d493ac211842bd9762ff25d7b97c8eda9b8f345e20712971e79afbc099087a8db2fcb3e734591b71 SHA512 3401aeebd6b19f487998aeb4cffcf9598ed31a861b6d335fc76295474512068692371b061a83fb001098010813c0ab61a06c3f2c410c9c9d108000a6b2ab6631
27 DIST graphviz-0.7.1.zip 100779 BLAKE2B b981953160f1978fe62b6c2cf422fcde78cc4de80a5274fd6e59c15f8907b34c68b0413d2c538d507d43bd8761349cd7fe532744d2e5ad737f403e52e1fca7b2 SHA512 e8ba326060ff3039f74902c01cf3d96c9965ce2259d0d5a9594e399added05c7e25b0f6c4b0be9ab21c1d37bbfb69e9c4856a7bb457b545185d48838d34cac70
28
29 diff --git a/dev-python/graphviz/graphviz-0.13.ebuild b/dev-python/graphviz/graphviz-0.13.ebuild
30 new file mode 100644
31 index 00000000000..15f6ec7d368
32 --- /dev/null
33 +++ b/dev-python/graphviz/graphviz-0.13.ebuild
34 @@ -0,0 +1,33 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Simple Python interface for Graphviz"
45 +HOMEPAGE="https://graphviz.readthedocs.io/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
47 +
48 +LICENSE="MIT"
49 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
50 +SLOT="0"
51 +IUSE="test"
52 +
53 +RDEPEND="media-gfx/graphviz"
54 +DEPEND="
55 + app-arch/unzip
56 + test? ( ${RDEPEND}
57 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
58 + >=dev-python/pytest-3.4[${PYTHON_USEDEP}]
59 + >=dev-python/pytest-mock-1.8[${PYTHON_USEDEP}]
60 + dev-python/pytest-cov[${PYTHON_USEDEP}]
61 + )
62 +"
63 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
64 +
65 +python_test() {
66 + py.test -v || die
67 +}