Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/python-igraph/
Date: Wed, 23 Dec 2020 04:13:54
Message-Id: 1608696822.29b1b634500b41d138fd3c6f14c5f7f8e01622ac.epsilon-0@gentoo
1 commit: 29b1b634500b41d138fd3c6f14c5f7f8e01622ac
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Wed Dec 23 04:13:42 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Wed Dec 23 04:13:42 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=29b1b634
7
8 dev-python/python-igraph: version bump to 0.8.3
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 .../python-igraph/python-igraph-0.8.3.ebuild | 36 ++++++++++++++++++++++
14 1 file changed, 36 insertions(+)
15
16 diff --git a/dev-python/python-igraph/python-igraph-0.8.3.ebuild b/dev-python/python-igraph/python-igraph-0.8.3.ebuild
17 new file mode 100644
18 index 000000000..7e7eca0a1
19 --- /dev/null
20 +++ b/dev-python/python-igraph/python-igraph-0.8.3.ebuild
21 @@ -0,0 +1,36 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{6..9} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Python interface for igraph"
32 +HOMEPAGE="https://igraph.org"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="${PYTHON_DEPS}
40 + dev-libs/igraph
41 + dev-python/texttable[${PYTHON_USEDEP}]
42 + dev-python/pycairo[${PYTHON_USEDEP}]
43 +"
44 +DEPEND="${RDEPEND}"
45 +BDEPEND="
46 + test? (
47 + dev-python/networkx[${PYTHON_USEDEP}]
48 + dev-python/matplotlib[${PYTHON_USEDEP}]
49 + dev-python/ipywidgets[${PYTHON_USEDEP}]
50 + )
51 +"
52 +
53 +distutils_enable_tests pytest
54 +
55 +python_compile() {
56 + distutils-r1_python_compile --use-pkg-config
57 +}