Skip to content
Commits on Source (4)
pyepr (0.9.5-3) UNRELEASED; urgency=medium
pyepr (0.9.5-3) unstable; urgency=medium
* Team upload.
[ Bas Couwenberg ]
* Remove package name from lintian overrides.
* Update gbp.conf to use --source-only-changes by default.
* Bump Standards-Version to 4.4.0, no changes.
-- Bas Couwenberg <sebastic@debian.org> Fri, 15 Mar 2019 15:36:14 +0100
[ Antonio Valentino ]
* Drop Python 2 support.
* Set compat to 12.
* Drop unnecessary override file: python3-epr-dbg.lintian-overrides.
-- Antonio Valentino <antonio.valentino@tiscali.it> Sun, 21 Jul 2019 10:49:25 +0000
pyepr (0.9.5-2) unstable; urgency=medium
......
......@@ -4,74 +4,24 @@ Uploaders: Antonio Valentino <antonio.valentino@tiscali.it>
Section: python
Priority: optional
Testsuite: autopkgtest-pkg-python
Build-Depends: debhelper (>= 11),
Build-Depends: debhelper (>= 12),
dh-python,
python-all-dev,
python-all-dbg,
python3-all-dev,
python3-all-dbg,
cython,
cython-dbg,
cython3,
cython3-dbg,
python-numpy,
python-numpy-dbg,
libepr-api-dev,
python-numpy-doc,
python3-all-dev,
python3-all-dbg,
python3-doc,
python3-numpy,
python3-numpy-dbg,
libepr-api-dev,
python-sphinx,
python3-sphinx,
texlive-latex-extra,
python3-doc,
python-numpy-doc
texlive-latex-extra
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/pyepr
Vcs-Git: https://salsa.debian.org/debian-gis-team/pyepr.git
Homepage: https://avalentino.github.com/pyepr
Package: python-epr
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
${python:Depends},
${shlibs:Depends},
python-numpy
Suggests: python-epr-doc
Description: Python ENVISAT Product Reader API (Python 2)
PyEPR provides Python bindings for the ENVISAT Product Reader C API
(EPR API) for reading satellite data from ENVISAT ESA (European Space
Agency) mission.
.
PyEPR, as well as the EPR API for C, supports ENVISAT MERIS, AATSR
Level 1B and Level 2 and also ASAR data products. It provides access
to the data either on a geophysical (decoded, ready-to-use pixel
samples) or on a raw data layer. The raw data access makes it possible
to read any data field contained in a product file.
.
This is the Python 2 version of the package.
Package: python-epr-dbg
Section: debug
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
${python:Depends},
${shlibs:Depends},
python-epr (= ${binary:Version})
Recommends: python-numpy-dbg
Description: Python ENVISAT Product Reader API (debug extension for Python 2)
PyEPR provides Python bindings for the ENVISAT Product Reader C API
(EPR API) for reading satellite data from ENVISAT ESA (European Space
Agency) mission.
.
PyEPR, as well as the EPR API for C, supports ENVISAT MERIS, AATSR
Level 1B and Level 2 and also ASAR data products. It provides access
to the data either on a geophysical (decoded, ready-to-use pixel
samples) or on a raw data layer. The raw data access makes it possible
to read any data field contained in a product file.
.
This package contains the extension built for the Python 2 debug interpreter.
Package: python3-epr
Architecture: any
Multi-Arch: same
......@@ -122,8 +72,6 @@ Multi-Arch: foreign
Depends: ${sphinxdoc:Depends},
${misc:Depends}
Suggests: www-browser
Breaks: python-epr (<< 0.9.3-4~)
Replaces: python-epr (<< 0.9.3-4~)
Description: Python ENVISAT Product Reader API (common documentation)
PyEPR provides Python bindings for the ENVISAT Product Reader C API
(EPR API) for reading satellite data from ENVISAT ESA (European Space
......
# Spelling error false alarm
spelling-error-in-binary * yUR your
......@@ -6,5 +6,5 @@ Abstract: This document includes the
Section: Programming/Python
Format: HTML
Index: /usr/share/doc/python-epr/html/index.html
Files: /usr/share/doc/python-epr/html/*.html
Index: /usr/share/doc/python-epr-doc/html/index.html
Files: /usr/share/doc/python-epr-doc/html/*.html
usr/share/doc/python-epr/examples usr/share/doc/python-epr/html/_downloads
usr/share/doc/python-epr-doc/examples usr/share/doc/python-epr-doc/html/_downloads
# Spelling error false alarm:
spelling-error-in-binary * yUR your
......@@ -14,28 +14,18 @@ SPHINXOPTS := -D today=\"$(BUILD_DATE)\"
SPHINXOPTS += -D html_last_updated_fmt=\"$(BUILD_DATE)\"
# Get the supported Python versions
#PY2VERS=$(shell pyversions -vr)
#PY3VERS=$(shell py3versions -vr)
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
export CFLAGS ?= -O0
endif
%:
dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
override_dh_python2:
dh_python2
dh_numpy
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_python3:
dh_python3
dh_numpy3
dh_python3 -N python-epr-doc
dh_numpy3 -N python-epr-doc
override_dh_auto_clean:
......@@ -47,7 +37,6 @@ override_dh_auto_clean:
override_dh_strip:
dh_strip -ppython-epr --dbg-package=python-epr-dbg
dh_strip -ppython3-epr --dbg-package=python3-epr-dbg
......