diff options
author | 2020-09-21 16:14:45 +0200 | |
---|---|---|
committer | 2020-09-21 16:14:45 +0200 | |
commit | 304b98d0ad89f394ae8a901554228466f03e8dd5 (patch) | |
tree | b66665c4b02288f47173261dfd5a376561262891 /dev-python/pyflann | |
parent | dev-python/pygsl: Remove last-rited pkg (diff) | |
download | gentoo-304b98d0ad89f394ae8a901554228466f03e8dd5.tar.gz gentoo-304b98d0ad89f394ae8a901554228466f03e8dd5.tar.bz2 gentoo-304b98d0ad89f394ae8a901554228466f03e8dd5.zip |
dev-python/pyflann: Remove last-rited pkg
Closes: https://bugs.gentoo.org/719408
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyflann')
-rw-r--r-- | dev-python/pyflann/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyflann/metadata.xml | 19 | ||||
-rw-r--r-- | dev-python/pyflann/pyflann-1.9.1.ebuild | 36 |
3 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/pyflann/Manifest b/dev-python/pyflann/Manifest deleted file mode 100644 index c8693334eeea..000000000000 --- a/dev-python/pyflann/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST flann-1.9.1.tar.gz 485391 BLAKE2B bf1e1e7feb33e939e1d0586db593bea3fdf66726fbadec63df9ed9c7bdb678babb11001769f0d041a7a569186b3d700db8b96af5eb9740615f6dfd880460f68b SHA512 0da78bb14111013318160dd3dee1f93eb6ed077b18439fd6496017b62a8a6070cc859cfb3e08dad4c614e48d9dc1da5f7c4a21726ee45896d360506da074a6f7 diff --git a/dev-python/pyflann/metadata.xml b/dev-python/pyflann/metadata.xml deleted file mode 100644 index 80f8d7b45f21..000000000000 --- a/dev-python/pyflann/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci@gentoo.org</email> - <name>Gentoo Science Project</name> - </maintainer> - <longdescription lang="en"> - FLANN is a library for performing fast approximate nearest neighbor - searches in high dimensional spaces. It contains a collection of - algorithms we found to work best for nearest neighbor search and a - system for automatically choosing the best algorithm and optimum - parameters depending on the dataset. - This is the python binding package split from the main package. - </longdescription> - <upstream> - <remote-id type="github">mariusmuja/flann</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/pyflann/pyflann-1.9.1.ebuild b/dev-python/pyflann/pyflann-1.9.1.ebuild deleted file mode 100644 index 6c705d19ed24..000000000000 --- a/dev-python/pyflann/pyflann-1.9.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -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="https://github.com/mariusmuja/flann/archive/${PV}.tar.gz -> flann-${PV}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] - ~sci-libs/flann-${PV}" -DEPEND="${RDEPEND}" -# TODO: -# readd dependencies for test suite, -# requires repackaging auto-downloaded files - -S="${WORKDIR}/flann-${PV}/src/python" - -python_prepare_all() { - sed -e "s/@FLANN_VERSION@/${PV}/" \ - -e '/package_d/d' \ - -e "s/,.*'pyflann.lib'//" \ - setup.py.tpl >> setup.py || die - - distutils-r1_python_prepare_all -} |