Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/networkx/
Date: Wed, 29 Apr 2020 19:51:54
Message-Id: 1588189903.0fda9bd83865e41266f7f401e797a1b08d86a710.chutzpah@gentoo
1 commit: 0fda9bd83865e41266f7f401e797a1b08d86a710
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Wed Apr 29 19:23:25 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 19:51:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fda9bd8
7
8 dev-python/networkx-2.4-r1: Revbump, add py38 without pandas
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/networkx/networkx-2.4-r1.ebuild | 68 ++++++++++++++++++++++++++++++
15 1 file changed, 68 insertions(+)
16
17 diff --git a/dev-python/networkx/networkx-2.4-r1.ebuild b/dev-python/networkx/networkx-2.4-r1.ebuild
18 new file mode 100644
19 index 00000000000..081e31c0fa4
20 --- /dev/null
21 +++ b/dev-python/networkx/networkx-2.4-r1.ebuild
22 @@ -0,0 +1,68 @@
23 +# Copyright 1999-2020 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +# networkx-2.4 supports up to python3_8
29 +PYTHON_COMPAT=( python3_{6,7,8} )
30 +inherit distutils-r1 virtualx
31 +
32 +DESCRIPTION="Python tools to manipulate graphs and complex networks"
33 +HOMEPAGE="http://networkx.github.io/ https://github.com/networkx/networkx"
34 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="BSD"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
39 +IUSE="examples extras pandas scipy test xml yaml"
40 +RESTRICT="!test? ( test )"
41 +
42 +REQUIRED_USE="
43 + test? ( extras pandas scipy xml yaml )"
44 +
45 +COMMON_DEPEND="
46 + >=dev-python/matplotlib-2.2.2[${PYTHON_USEDEP}]
47 + extras? (
48 + >=dev-python/pydot-1.2.4[${PYTHON_USEDEP}]
49 + >=dev-python/pygraphviz-1.5[${PYTHON_USEDEP}]
50 + >=sci-libs/gdal-1.10.0[python,${PYTHON_USEDEP}]
51 + )
52 + pandas? (
53 + $(python_gen_cond_dep '>=dev-python/pandas-0.23.3[${PYTHON_USEDEP}]' python3_{6,7})
54 + )
55 + scipy? ( >=sci-libs/scipy-1.1.0[${PYTHON_USEDEP}] )
56 + xml? ( >=dev-python/lxml-4.2.3[${PYTHON_USEDEP}] )
57 + yaml? ( >=dev-python/pyyaml-3.13[${PYTHON_USEDEP}] )"
58 +DEPEND="
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + >=dev-python/decorator-4.3.0[${PYTHON_USEDEP}]
61 + ${COMMON_DEPEND}
62 + test? (
63 + dev-python/nose[${PYTHON_USEDEP}]
64 + )"
65 +RDEPEND="
66 + >=dev-python/decorator-4.3.0[${PYTHON_USEDEP}]
67 + ${COMMON_DEPEND}
68 + examples? (
69 + dev-python/pyparsing[${PYTHON_USEDEP}]
70 + )"
71 +
72 +PATCHES=(
73 +)
74 +
75 +python_test() {
76 + virtx nosetests -vv || die "tests failed with ${EPYTHON}"
77 +}
78 +
79 +python_install_all() {
80 + use examples && dodoc -r examples
81 +
82 + distutils-r1_python_install_all
83 +}
84 +
85 +pkg_postinst() {
86 + if use pandas && use python_targets_python3_8; then
87 + ewarn "The pandas functionality in ${P} will not work with python3.8 as"
88 + ewarn "dev-python/pandas does not have support for python3.8 yet"
89 + fi
90 +}