Skip to content
Commits on Source (6)
pyepr (0.9.3-4) UNRELEASED; urgency=medium
* Change priority from extra to optional.
* Bump Standards-Version to 4.1.0, changes: priority.
* Bump Standards-Version to 4.1.3, changes: priority.
* Add python3-sphinx to build dependencies.
* Set compat to 11.
* Strip trailing whitespace from changelog.
* debian/control
- use secure URL for HomePage
- fix python2-epr-dbg recommends to point to python3-numpy-dbg
* debian/rules
- fix doc installation
-- Antonio Valentino <antonio.valentino@tiscali.it> Sun, 24 Sep 2017 13:20:24 +0200
......
......@@ -3,7 +3,7 @@ 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 (>= 9),
Build-Depends: debhelper (>= 11),
dh-python,
python-all-dev,
python-all-dbg,
......@@ -23,10 +23,10 @@ Build-Depends: debhelper (>= 9),
texlive-latex-extra,
python3-doc,
python-numpy-doc
Standards-Version: 4.1.0
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/pyepr.git
Vcs-Git: https://anonscm.debian.org/git/pkg-grass/pyepr.git
Homepage: http://avalentino.github.com/pyepr
Homepage: https://avalentino.github.com/pyepr
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.2
......@@ -98,7 +98,7 @@ Depends: ${misc:Depends},
${python3:Depends},
${shlibs:Depends},
python3-epr (= ${binary:Version})
Recommends: python-numpy-dbg
Recommends: python3-numpy-dbg
Description: Python ENVISAT Product Reader API (debug extension for Python 3)
PyEPR provides Python bindings for the ENVISAT Product Reader C API
(EPR API) for reading satellite data from ENVISAT ESA (European Space
......
......@@ -6,5 +6,5 @@ Abstract: This document includes the
Section: Programming/Python
Format: HTML
Index: /usr/share/doc/python-epr-doc/html/index.html
Files: /usr/share/doc/python-epr-doc/html/*.html
Index: /usr/share/doc/python-epr/html/index.html
Files: /usr/share/doc/python-epr/html/*.html
......@@ -15,7 +15,7 @@ SPHINXOPTS += -D html_last_updated_fmt=\"$(BUILD_DATE)\"
# Get the supported Python versions
#PY2VERS=$(shell pyversions -vr)
PY3VERS=$(shell py3versions -vr)
#PY3VERS=$(shell py3versions -vr)
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
......@@ -80,9 +80,16 @@ ifeq (,$(findstring nodoc,$(DEB_BUILD_OPTIONS)))
else
mkdir -p doc/html
endif
dh_installdocs
dh_installdocs -ppython-epr-doc --doc-main-package=python-epr
dh_installdocs --remaining-packages
override_dh_installexamples:
dh_installexamples -ppython-epr-doc --doc-main-package=python-epr
dh_installexamples --remaining-packages
.PHONY: override_dh_gencontrol override_dh_auto_clean override_dh_auto_test \
override_dh_strip override_dh_installchangelogs override_dh_compress \
dh_sphinxdoc override_dh_installdocs
override_dh_sphinxdoc override_dh_installdocs override_dh_installexamples