Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/scikits_image/
Date: Sun, 29 Dec 2019 13:23:28
Message-Id: 1577625774.62ded693099a6759cb812d01d4044f5296d255ed.asturm@gentoo
1 commit: 62ded693099a6759cb812d01d4044f5296d255ed
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 28 16:42:05 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 13:22:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ded693
7
8 sci-libs/scikits_image: Drop 0.13.0 (r0)
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/scikits_image/scikits_image-0.13.0.ebuild | 58 ----------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/sci-libs/scikits_image/scikits_image-0.13.0.ebuild b/sci-libs/scikits_image/scikits_image-0.13.0.ebuild
17 deleted file mode 100644
18 index 985fd58974d..00000000000
19 --- a/sci-libs/scikits_image/scikits_image-0.13.0.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python2_7 python3_{5,6} )
28 -
29 -inherit distutils-r1 eutils virtualx
30 -
31 -MYPN="${PN/scikits_/scikit-}"
32 -MYP="${MYPN}-${PV}"
33 -
34 -DESCRIPTION="Image processing routines for SciPy"
35 -HOMEPAGE="https://scikit-image.org/"
36 -SRC_URI="mirror://pypi/${PN:0:1}/${MYPN}/${MYP}.tar.gz"
37 -
38 -LICENSE="BSD"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
41 -IUSE="doc freeimage pyamg test"
42 -RESTRICT="!test? ( test )"
43 -
44 -RDEPEND="
45 - dev-python/matplotlib[${PYTHON_USEDEP}]
46 - dev-python/networkx[${PYTHON_USEDEP}]
47 - dev-python/numpy[${PYTHON_USEDEP}]
48 - dev-python/pillow[${PYTHON_USEDEP}]
49 - dev-python/pywavelets[${PYTHON_USEDEP}]
50 - dev-python/six[${PYTHON_USEDEP}]
51 - sci-libs/scipy[sparse,${PYTHON_USEDEP}]
52 - freeimage? ( media-libs/freeimage )
53 - pyamg? ( dev-python/pyamg[${PYTHON_USEDEP}] )"
54 -DEPEND="${RDEPEND}
55 - >=dev-python/cython-0.23[${PYTHON_USEDEP}]
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
58 -
59 -S="${WORKDIR}/${MYP}"
60 -
61 -DOCS=( CONTRIBUTORS.txt DEPENDS.txt RELEASE.txt TASKS.txt TODO.txt )
62 -
63 -python_test() {
64 - distutils_install_for_testing
65 - cd "${TEST_DIR}" || die "no ${TEST_DIR} available"
66 - echo "backend : Agg" > matplotlibrc || die
67 - #echo "backend.qt4 : PyQt4" >> matplotlibrc || die
68 - #echo "backend.qt4 : PySide" >> matplotlibrc || die
69 - MPLCONFIGDIR=. virtx nosetests --exe -v skimage
70 -}
71 -
72 -pkg_postinst() {
73 - optfeature "FITS io capability" dev-python/astropy
74 - optfeature "GTK" dev-python/pygtk
75 - optfeature "Parallel computation" dev-python/dask
76 - # not in portage yet
77 - #optfeature "io plugin providing a wide variety of formats, including specialized formats using in medical imaging." dev-python/simpleitk
78 - #optfeature "io plugin providing most standard formats" dev-python/imread
79 -}