Skip to content
Commits on Source (2)
python-rtree (0.8.3+ds-3) UNRELEASED; urgency=medium
python-rtree (0.8.3+ds-3) unstable; urgency=medium
* Bump Standards-Version to 4.4.0, no changes.
* Drop autopkgtests to test installability & module import.
* Add lintian override for testsuite-autopkgtest-missing.
* Drop unused python3:Provides substvar.
* Update gbp.conf to use --source-only-changes by default.
* Drop Python 2 support.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Aug 2018 20:53:33 +0200
-- Bas Couwenberg <sebastic@debian.org> Sun, 21 Jul 2019 10:07:01 +0200
python-rtree (0.8.3+ds-2) unstable; urgency=medium
......
......@@ -6,10 +6,6 @@ Priority: optional
Build-Depends: debhelper (>= 9),
dh-python,
libspatialindex-dev (>= 1.7.0),
python-all,
python-numpy,
python-setuptools,
python-sphinx,
python3-all,
python3-numpy,
python3-setuptools,
......@@ -19,34 +15,11 @@ Vcs-Browser: https://salsa.debian.org/debian-gis-team/python-rtree
Vcs-Git: https://salsa.debian.org/debian-gis-team/python-rtree.git
Homepage: http://toblerity.org/rtree/
Package: python-rtree
Package: python3-rtree
Architecture: all
Depends: libjs-jquery,
libjs-underscore,
libspatialindex-dev (>= 1.7.0),
${python:Depends},
${misc:Depends}
Provides: ${python:Provides}
Description: R-Tree spatial index for Python GIS - Python 2 module
Rtree is a ctypes Python wrapper of libspatialindex that provides a
number of advanced spatial indexing features for the spatially curious
Python user. These features include:
.
* Nearest neighbor search
* Intersection search
* Multi-dimensional indexes
* Clustered indexes (store Python pickles directly with index entries)
* Bulk loading
* Deletion
* Disk serialization
* Custom storage implementation (to implement spatial indexing in ZODB,
for example)
.
This package contains the module for Python 2.
Package: python3-rtree
Architecture: all
Depends: libspatialindex-dev (>= 1.7.0),
${python3:Depends},
${misc:Depends}
Description: R-Tree spatial index for Python GIS - Python 3 module
......
......@@ -4,5 +4,5 @@ Author: Howard Butler, Brent Pedersen, Sean Gilles, and others
Section: Programming/Python
Format: HTML
Index: /usr/share/doc/python-rtree/html/index.html
Files: /usr/share/doc/python-rtree/html/*.html
Index: /usr/share/doc/python3-rtree/html/index.html
Files: /usr/share/doc/python3-rtree/html/*.html
usr/share/javascript/jquery/jquery.js usr/share/doc/python-rtree/html/_static/jquery.js
usr/share/javascript/underscore/underscore.js usr/share/doc/python-rtree/html/_static/underscore.js
usr/share/javascript/jquery/jquery.js usr/share/doc/python3-rtree/html/_static/jquery.js
usr/share/javascript/underscore/underscore.js usr/share/doc/python3-rtree/html/_static/underscore.js
......@@ -9,7 +9,6 @@ export PYBUILD_NAME=rtree
%:
dh $@ \
--buildsystem=pybuild \
--with python2 \
--with python3 \
--parallel
......