Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Drop Python 2 support
· 332ad198
Antonio Valentino
authored
Jul 21, 2019
332ad198
Set compat to 12
· cdbaa0c8
Antonio Valentino
authored
Jul 21, 2019
cdbaa0c8
Add substvar to arch: any packages
· d13853ab
Antonio Valentino
authored
Jul 21, 2019
d13853ab
Set distribution to unstable
· 33214144
Antonio Valentino
authored
Jul 21, 2019
33214144
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
33214144
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
...
...
debian/compat
View file @
33214144
1
1
1
2
debian/control
View file @
33214144
...
...
@@ -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 (>= 1
1
),
Build-Depends: debhelper (>= 1
2
),
dh-python,
python-setuptools,
python3-setuptools,
python-all-dev,
python3-all-dev,
python-n
umpy
,
python
3
-n
ose
,
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
...
...
debian/rules
View file @
33214144
...
...
@@ -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
...
...