Skip to content
Commits on Source (4)
pykdtree (1.3.1-3) UNRELEASED; urgency=medium
pykdtree (1.3.1-3) unstable; urgency=medium
[ Bas Couwenberg ]
* Bump Standards-Version to 4.4.0, no changes.
* Update gbp.conf to use --source-only-changes by default.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Aug 2018 20:47:16 +0200
[ Antonio Valentino ]
* Drop Python 2 support.
* Set compat ro 12.
* Add ${python3:Provides} substvar to arch: any packages.
-- Antonio Valentino <antonio.valentino@tiscali.it> Sun, 21 Jul 2019 14:29:59 +0000
pykdtree (1.3.1-2) unstable; urgency=medium
......
......@@ -3,48 +3,23 @@ Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Uploaders: Antonio Valentino <antonio.valentino@tiscali.it>
Section: python
Priority: optional
Build-Depends: debhelper (>= 11),
Build-Depends: debhelper (>= 12),
dh-python,
python-setuptools,
python3-setuptools,
python-all-dev,
python3-all-dev,
python-numpy,
python3-nose,
python3-numpy,
python-nose,
python3-nose
python3-setuptools
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/pykdtree
Vcs-Git: https://salsa.debian.org/debian-gis-team/pykdtree.git
Homepage: https://github.com/pytroll/pykdtree
Package: python-pykdtree
Architecture: any
Depends: ${shlibs:Depends},
${python:Depends},
${misc:Depends}
Description: Fast kd-tree implementation with OpenMP-enabled queries (Python 2 version)
pykdtree is a kd-tree implementation for fast nearest neighbour search
in Python. The aim is to be the fastest implementation around for
common use cases (low dimensions and low number of neighbours) for
both tree construction and queries.
.
The implementation is based on scipy.spatial.cKDTree and libANN by
combining the best features from both and focus on implementation
efficiency.
.
The interface is similar to that of scipy.spatial.cKDTree except only
Euclidean distance measure is supported.
.
Queries are optionally multithreaded using OpenMP.
.
This is the Python 2 version of the package.
Package: python3-pykdtree
Architecture: any
Depends: ${shlibs:Depends},
${python3:Depends},
${misc:Depends}
Provides: ${python3:Provides}
Description: Fast kd-tree implementation with OpenMP-enabled queries (Python 3 version)
pykdtree is a kd-tree implementation for fast nearest neighbour search
in Python. The aim is to be the fastest implementation around for
......
......@@ -10,11 +10,7 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export PYBUILD_NAME=pykdtree
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_python2:
dh_python2 -ppython-pykdtree
dh_numpy -ppython-pykdtree
dh $@ --with python3 --buildsystem=pybuild
override_dh_python3:
dh_python3 -ppython3-pykdtree
......