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/networkx/
Date: Fri, 31 Jul 2020 06:21:13
Message-Id: 1596176455.d3c3e033be875073d586b408f0b7cea25529e388.mgorny@gentoo
1 commit: d3c3e033be875073d586b408f0b7cea25529e388
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:33:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:20:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3c3e033
7
8 dev-python/networkx: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/networkx/networkx-2.4.ebuild | 59 ---------------------------------
13 1 file changed, 59 deletions(-)
14
15 diff --git a/dev-python/networkx/networkx-2.4.ebuild b/dev-python/networkx/networkx-2.4.ebuild
16 deleted file mode 100644
17 index 07a98d729cc..00000000000
18 --- a/dev-python/networkx/networkx-2.4.ebuild
19 +++ /dev/null
20 @@ -1,59 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -# networkx-2.4 supports up to python3_8
27 -PYTHON_COMPAT=( python3_{6,7} )
28 -inherit distutils-r1 virtualx
29 -
30 -DESCRIPTION="Python tools to manipulate graphs and complex networks"
31 -HOMEPAGE="http://networkx.github.io/ https://github.com/networkx/networkx"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="BSD"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
37 -IUSE="examples extras pandas scipy test xml yaml"
38 -RESTRICT="!test? ( test )"
39 -
40 -REQUIRED_USE="
41 - test? ( extras pandas scipy xml yaml )"
42 -
43 -COMMON_DEPEND="
44 - >=dev-python/matplotlib-2.2.2[${PYTHON_USEDEP}]
45 - extras? (
46 - >=dev-python/pydot-1.2.4[${PYTHON_USEDEP}]
47 - >=dev-python/pygraphviz-1.5[${PYTHON_USEDEP}]
48 - >=sci-libs/gdal-1.10.0[python,${PYTHON_USEDEP}]
49 - )
50 - pandas? ( >=dev-python/pandas-0.23.3[${PYTHON_USEDEP}] )
51 - scipy? ( >=sci-libs/scipy-1.1.0[${PYTHON_USEDEP}] )
52 - xml? ( >=dev-python/lxml-4.2.3[${PYTHON_USEDEP}] )
53 - yaml? ( >=dev-python/pyyaml-3.13[${PYTHON_USEDEP}] )"
54 -DEPEND="
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - >=dev-python/decorator-4.3.0[${PYTHON_USEDEP}]
57 - ${COMMON_DEPEND}
58 - test? (
59 - dev-python/nose[${PYTHON_USEDEP}]
60 - )"
61 -RDEPEND="
62 - >=dev-python/decorator-4.3.0[${PYTHON_USEDEP}]
63 - ${COMMON_DEPEND}
64 - examples? (
65 - dev-python/pyparsing[${PYTHON_USEDEP}]
66 - )"
67 -
68 -PATCHES=(
69 -)
70 -
71 -python_test() {
72 - virtx nosetests -vv
73 -}
74 -
75 -python_install_all() {
76 - use examples && dodoc -r examples
77 -
78 - distutils-r1_python_install_all
79 -}