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: Tue, 02 May 2017 09:48:40
Message-Id: 1493718470.5b8a13ad8570fd7628660e8199e412dab30625d2.mgorny@gentoo
1 commit: 5b8a13ad8570fd7628660e8199e412dab30625d2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 09:00:23 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 09:47:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8a13ad
7
8 dev-python/networkx: Clean old versions up
9
10 dev-python/networkx/Manifest | 1 -
11 dev-python/networkx/networkx-1.10.ebuild | 78 -------------------------------
12 dev-python/networkx/networkx-1.9.1.ebuild | 70 ---------------------------
13 3 files changed, 149 deletions(-)
14
15 diff --git a/dev-python/networkx/Manifest b/dev-python/networkx/Manifest
16 index cbfebe2afe2..7d6e9b57622 100644
17 --- a/dev-python/networkx/Manifest
18 +++ b/dev-python/networkx/Manifest
19 @@ -1,3 +1,2 @@
20 DIST networkx-1.10.tar.gz 1189291 SHA256 ced4095ab83b7451cec1172183eff419ed32e21397ea4e1971d92a5808ed6fb8 SHA512 fc0a0b929991baef63c30382c2045d551b217140393a4264b18a5f1be198d325eee9f57e02dda38a7ad9f99771c5b78f82c673a88b04df122b9d91852db09efd WHIRLPOOL 8a9666142a1978e72b9eeb791de5c2033d0d29cd2db846f2583c41876d6a5c864c295316bb3d1c2858ccda0f4ca5081108ed9c07176eb8146c8c772fa77c8a60
21 DIST networkx-1.11.tar.gz 1315737 SHA256 0d0e70e10dfb47601cbb3425a00e03e2a2e97477be6f80638fef91d54dd1e4b8 SHA512 622c93330bb5ba93a2be087f7f19963a1bb9a50dc72b6500ea8321c36aa9da19af379c5cd4bbee8bba3cb6e68a28f11ee24bbe333047f5c7d0ce0b755fd57253 WHIRLPOOL 64f68a750efef2f356525f4f2e1d8046327b223a4a55b3388fef1f7b68dac3796fbd05e7d997052ab644213ccea25a0584a2f4bbd660bc32b4c9aff9a92926c6
22 -DIST networkx-1.9.1.tar.gz 1035784 SHA256 6380eb38d0b5770d7e50813c8a48ff7c373b2187b4220339c1adce803df01c59 SHA512 8c18bd07530b26731da4db40dc9d82c81b78b086a2b15a45daa65ab55ec92a4ba836f911add062f698c3f319e5e85b5a26a6a52f760f5cf32e3d2a73c46cd93d WHIRLPOOL 01db9c8560140a52a890851871249c9d509883f7aa877487c16cdcc42973ae74b9c1815371d99247f72766e1f26e0a1afc0965af65583c4a9b59b75c2369fe2a
23
24 diff --git a/dev-python/networkx/networkx-1.10.ebuild b/dev-python/networkx/networkx-1.10.ebuild
25 deleted file mode 100644
26 index 1492fe30f04..00000000000
27 --- a/dev-python/networkx/networkx-1.10.ebuild
28 +++ /dev/null
29 @@ -1,78 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python{2_7,3_4} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python tools to manipulate graphs and complex networks"
40 -HOMEPAGE="http://networkx.github.io/ https://github.com/networkx/networkx"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
46 -IUSE="doc examples test"
47 -
48 -REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
49 -
50 -COMMON_DEPEND="
51 - dev-python/matplotlib[${PYTHON_USEDEP}]
52 - sci-libs/scipy[${PYTHON_USEDEP}]"
53 -DEPEND="
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 - doc? (
56 - dev-python/sphinx[${PYTHON_USEDEP}]
57 - dev-python/matplotlib[${PYTHON_USEDEP}]
58 - $(python_gen_cond_dep 'dev-python/numpydoc[${PYTHON_USEDEP}]' python2_7)
59 - $(python_gen_cond_dep 'dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]' python2_7 python{3_3,3_4})
60 - )
61 - test? (
62 - ${COMMON_DEPEND}
63 - dev-python/nose[${PYTHON_USEDEP}]
64 - $(python_gen_cond_dep 'media-gfx/pydot[${PYTHON_USEDEP}]' python2_7)
65 - )"
66 -RDEPEND="
67 - >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
68 - examples? (
69 - ${COMMON_DEPEND}
70 - $(python_gen_cond_dep 'dev-python/pygraphviz[${PYTHON_USEDEP}]' python2_7)
71 - dev-python/pyparsing[${PYTHON_USEDEP}]
72 - dev-python/pyyaml[${PYTHON_USEDEP}]
73 - )"
74 -
75 -pkg_setup() {
76 - use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( 'python2*' )
77 -}
78 -
79 -python_prepare_all() {
80 - # Avoid d'loading of file objects.inv from 2 sites of python docs
81 - sed -e "s/'sphinx.ext.intersphinx', //" -i doc/source/conf.py || die
82 - distutils-r1_python_prepare_all
83 -}
84 -
85 -python_compile_all() {
86 - # https://github.com/networkx/networkx/issues/1263
87 - if use doc; then
88 - sed \
89 - -e "s:^\t\./:\t${PYTHON} :g" \
90 - -i doc/Makefile || die
91 - emake -C doc html
92 - fi
93 -}
94 -
95 -python_test() {
96 - nosetests -vv || die
97 -}
98 -
99 -python_install_all() {
100 - # Oh my.
101 - rm -r "${ED}"usr/share/doc/${P} || die
102 -
103 - use doc && local HTML_DOCS=( doc/build/html/. )
104 - use examples && local EXAMPLES=( examples/. )
105 -
106 - distutils-r1_python_install_all
107 -}
108
109 diff --git a/dev-python/networkx/networkx-1.9.1.ebuild b/dev-python/networkx/networkx-1.9.1.ebuild
110 deleted file mode 100644
111 index 5e015e38f35..00000000000
112 --- a/dev-python/networkx/networkx-1.9.1.ebuild
113 +++ /dev/null
114 @@ -1,70 +0,0 @@
115 -# Copyright 1999-2017 Gentoo Foundation
116 -# Distributed under the terms of the GNU General Public License v2
117 -
118 -EAPI=5
119 -
120 -PYTHON_COMPAT=( python{2_7,3_4} )
121 -
122 -inherit distutils-r1
123 -
124 -DESCRIPTION="Python tools to manipulate graphs and complex networks"
125 -HOMEPAGE="http://networkx.github.io/ https://github.com/networkx/networkx"
126 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
127 -
128 -LICENSE="BSD"
129 -SLOT="0"
130 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
131 -IUSE="doc examples test"
132 -
133 -COMMON_DEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
134 - sci-libs/scipy[${PYTHON_USEDEP}]"
135 -DEPEND="
136 - dev-python/setuptools[${PYTHON_USEDEP}]
137 - doc? (
138 - dev-python/sphinx[${PYTHON_USEDEP}]
139 - dev-python/matplotlib[${PYTHON_USEDEP}]
140 - $(python_gen_cond_dep 'dev-python/numpydoc[${PYTHON_USEDEP}]' python2_7)
141 - $(python_gen_cond_dep 'dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]' python2_7 python{3_3,3_4})
142 - )
143 - test? (
144 - ${COMMON_DEPEND}
145 - dev-python/nose[${PYTHON_USEDEP}]
146 - )"
147 -RDEPEND="
148 - >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
149 - examples? (
150 - ${COMMON_DEPEND}
151 - $(python_gen_cond_dep 'dev-python/pygraphviz[${PYTHON_USEDEP}]' python2_7)
152 - dev-python/pyparsing[${PYTHON_USEDEP}]
153 - dev-python/pyyaml[${PYTHON_USEDEP}]
154 - )"
155 -
156 -python_prepare_all() {
157 - # Avoid d'loading of file objects.inv from 2 sites of python docs
158 - sed -e "s/'sphinx.ext.intersphinx', //" -i doc/source/conf.py || die
159 - distutils-r1_python_prepare_all
160 -}
161 -
162 -python_compile_all() {
163 - # https://github.com/networkx/networkx/issues/1263
164 - if use doc; then
165 - sed \
166 - -e "s:^\t\./:\t${PYTHON} :g" \
167 - -i doc/Makefile || die
168 - emake -C doc html
169 - fi
170 -}
171 -
172 -python_test() {
173 - nosetests -vv || die
174 -}
175 -
176 -python_install_all() {
177 - # Oh my.
178 - rm -r "${ED}"usr/share/doc/${P} || die
179 -
180 - use doc && local HTML_DOCS=( doc/build/html/. )
181 - use examples && local EXAMPLES=( examples/. )
182 -
183 - distutils-r1_python_install_all
184 -}