commit: 2332003973da6b9c6441f93448df4785f053ce68 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org> AuthorDate: Mon Oct 12 16:08:59 2020 +0000 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org> CommitDate: Mon Oct 12 18:45:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23320039
sci-libs/rtree-0.9.4: fixed missing dependency for tests Closes: https://bugs.gentoo.org/747883 Signed-off-by: Dennis Lamm <expeditoneer <AT> gentoo.org> Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org> sci-libs/rtree/rtree-0.9.4-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/sci-libs/rtree/rtree-0.9.4-r1.ebuild b/sci-libs/rtree/rtree-0.9.4-r1.ebuild new file mode 100644 index 00000000000..a0940fd1901 --- /dev/null +++ b/sci-libs/rtree/rtree-0.9.4-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +MY_PN="Rtree" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="R-Tree spatial index for Python GIS" +HOMEPAGE="https://rtree.readthedocs.io/en/latest/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +LICENSE="MIT" + +KEYWORDS="~amd64 ~x86" +SLOT="0" + +S=${WORKDIR}/${MY_P} + +RDEPEND="sci-libs/libspatialindex" + +distutils_enable_sphinx docs/source + +distutils_enable_tests pytest + +DEPEND+=" + test? ( dev-python/numpy[${PYTHON_USEDEP}] ) +"
