summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-06-03 19:03:14 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-06-06 16:54:43 +0200
commit007c09e7328eec7fafdbbb6694994e2faf4eca68 (patch)
tree1c543d231f0471bdd5141ea7c650a0df360b2fa2 /dev-python
parentdev-vcs/git: Synced live ebuilds. (diff)
downloadgentoo-007c09e7328eec7fafdbbb6694994e2faf4eca68.tar.gz
gentoo-007c09e7328eec7fafdbbb6694994e2faf4eca68.tar.bz2
gentoo-007c09e7328eec7fafdbbb6694994e2faf4eca68.zip
dev-python/pyflann: Drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pyflann/Manifest2
-rw-r--r--dev-python/pyflann/pyflann-1.8.4.ebuild47
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-python/pyflann/Manifest b/dev-python/pyflann/Manifest
index b7bd4a7ec5ef..c8693334eeea 100644
--- a/dev-python/pyflann/Manifest
+++ b/dev-python/pyflann/Manifest
@@ -1,3 +1 @@
-DIST flann-1.8.4-src.zip 561057 BLAKE2B 0cd1cf7bc394501d878d848246f76919924e39dc950e49e82bd2c8dbf46d9626fc9749ba4578ce62aabd0313314969dd7f6883c42167545238bc89561ce028ce SHA512 47ac6be66e3ec7303d28febc5a4cea2f8d1b3d81c3b7081f27cf17936074e06e91e30123569b41269a2b97c9960274dc485a575d77c1a386e8f539a76a8d3a0a
-DIST flann-1.8.4-testdata.tar.xz 26744244 BLAKE2B eb8a5066d79dedd2ff4ec48f0e0969d6486417abfb2cc5c2e3e1e0f8dfef637f2cb290e8f1868b819ff7e4d71687daf2aaeb16c8197f5642125ea50ef775441f SHA512 f2bee5e2dfe2fbb42953df563f178b67639b62e26fc31be14e07c196ba3e84db21804e594af44991f7cf45ca5e10ff753093cf160abf33e90d19735a9a0b51cb
DIST flann-1.9.1.tar.gz 485391 BLAKE2B bf1e1e7feb33e939e1d0586db593bea3fdf66726fbadec63df9ed9c7bdb678babb11001769f0d041a7a569186b3d700db8b96af5eb9740615f6dfd880460f68b SHA512 0da78bb14111013318160dd3dee1f93eb6ed077b18439fd6496017b62a8a6070cc859cfb3e08dad4c614e48d9dc1da5f7c4a21726ee45896d360506da074a6f7
diff --git a/dev-python/pyflann/pyflann-1.8.4.ebuild b/dev-python/pyflann/pyflann-1.8.4.ebuild
deleted file mode 100644
index 43f4060e2d8f..000000000000
--- a/dev-python/pyflann/pyflann-1.8.4.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for FLANN artificial neural network library"
-HOMEPAGE="http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN/"
-SRC_URI="http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-${PV}-src.zip
- test? ( https://dev.gentoo.org/~bicatali/distfiles/flann-${PV}-testdata.tar.xz )"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- ~sci-libs/flann-${PV}"
-DEPEND="${RDEPEND}
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-S="${WORKDIR}/flann-${PV}-src/src/python"
-
-python_prepare_all() {
- sed -e "s/@FLANN_VERSION@/${PV}/" \
- -e '/package_d/d' \
- -e "s/,.*'pyflann.lib'//" \
- setup.py.tpl >> setup.py
-
- use test && ln -s "${WORKDIR}"/testdata/* "${WORKDIR}"/flann-${PV}-src/test/
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- cd "${WORKDIR}"/flann-${PV}-src/test/
- local t
- #for t in test*.py; do
- # test_autotune buggy
- for t in test_{nn,nn_index,index_save,clustering}.py; do
- einfo "Running ${t}"
- PYTHONPATH="${BUILD_DIR}/lib" ${EPYTHON} ${t} || die
- done
-}