Skip to content
Commits on Source (2)
fiona (1.8.6-2) UNRELEASED; urgency=medium
fiona (1.8.6-2) unstable; urgency=medium
* Team upload.
* Bump Standards-Version to 4.4.0, no changes.
* Drop Python 2 support.
-- Bas Couwenberg <sebastic@debian.org> Wed, 10 Jul 2019 17:57:01 +0200
-- Bas Couwenberg <sebastic@debian.org> Sun, 21 Jul 2019 19:51:35 +0200
fiona (1.8.6-1) unstable; urgency=medium
......
......@@ -7,56 +7,24 @@ Build-Depends: debhelper (>= 9),
dh-python,
gdal-bin,
libgdal-dev,
cython (>= 0.21),
cython3 (>= 0.21),
python-all,
python3-all,
python-all-dev,
python3-all-dev,
python-attr,
python3-attr,
python-boto3,
python3-boto3,
python-click-plugins,
python3-click-plugins,
python-cligj,
python3-cligj,
python-enum34,
python-mock,
python3-mock,
python-munch,
python3-munch,
python-pytest,
python3-pytest,
python-setuptools,
python3-setuptools,
python-six,
python3-six,
python-sphinx,
python3-sphinx
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/fiona
Vcs-Git: https://salsa.debian.org/debian-gis-team/fiona.git
Homepage: https://github.com/Toblerity/Fiona
Package: python-fiona
Architecture: any
Depends: ${python:Depends},
${misc:Depends},
${shlibs:Depends}
Suggests: fiona-doc
Description: Python API for reading/writing vector geospatial data
Fiona is a Python wrapper around the OGR vector data abstraction library.
Fiona is designed to be simple and dependable. It focuses on reading
and writing data in standard Python IO style and relies upon familiar
Python types and protocols such as files, dictionaries, mappings, and
iterators instead of classes specific to OGR. Fiona can read and write
real-world data using multi-layered GIS formats and zipped virtual
file systems and integrates readily with other Python GIS packages
such as pyproj, Rtree, and Shapely.
.
This package provides the Python 2 API
Package: python3-fiona
Architecture: any
Depends: ${python3:Depends},
......@@ -79,9 +47,9 @@ Package: fiona
Architecture: any
Section: science
Depends: python3-fiona (= ${binary:Version}),
python3-click-plugins,
${python3:Depends},
${misc:Depends},
python3-click-plugins
${misc:Depends}
Suggests: fiona-doc
Description: Command line tool for reading/writing vector geospatial data
Fiona is a Python wrapper around the OGR vector data abstraction library.
......
......@@ -11,7 +11,7 @@ BUILD_DATE=$(shell LC_ALL=C date -u "+%B %d, %Y" -d "@$(SOURCE_DATE_EPOCH)")
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
export PYBUILD_NAME=fiona
export PYBUILD_AFTER_BUILD_python2 = PYTHONPATH={build_dir} http_proxy='127.0.0.1:9' /usr/share/sphinx/scripts/python2/sphinx-build -N -bhtml -D today="$(BUILD_DATE)" docs/ build/html
export PYBUILD_AFTER_BUILD_python3 = PYTHONPATH={build_dir} http_proxy='127.0.0.1:9' /usr/share/sphinx/scripts/python3/sphinx-build -N -bhtml -D today="$(BUILD_DATE)" docs/ build/html
export PYBUILD_TEST_PYTEST=1
export PYBUILD_BEFORE_TEST=cp -r {dir}/tests {build_dir}
export PYBUILD_AFTER_TEST=rm -rf {build_dir}/tests
......@@ -39,7 +39,7 @@ export PYBUILD_TEST_ARGS=--ignore tests/test_bytescollection.py \
--ignore tests/test_vfs.py
%:
dh $@ --with python2,python3,sphinxdoc --buildsystem pybuild
dh $@ --with python3,sphinxdoc --buildsystem pybuild
override_dh_clean:
dh_clean
......@@ -55,7 +55,6 @@ endif
override_dh_install:
dh_install --list-missing
rm -rf debian/python-fiona/usr/bin
rm -rf debian/python3-fiona/usr/bin
debian/fiona.1:
......