Skip to content
Commits on Source (4)
sphinxcontrib-autoprogram (0.1.5-2) unstable; urgency=medium
* Drop Python2 support
Closes: #938531
* debhelper-compat 12
* Standards-Version: 4.4.0
-- Andreas Tille <tille@debian.org> Wed, 04 Sep 2019 14:05:50 +0200
sphinxcontrib-autoprogram (0.1.5-1) unstable; urgency=medium
* Team upload.
......
......@@ -6,36 +6,17 @@ Uploaders: Tim Booth <tbooth@ceh.ac.uk>,
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper-compat (= 12),
dh-python,
python,
python-setuptools,
python-six,
python-sphinx,
python3,
python3-setuptools,
python3-sphinx,
python3-six
Standards-Version: 4.3.0
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/med-team/sphinxcontrib-autoprogram
Vcs-Git: https://salsa.debian.org/med-team/sphinxcontrib-autoprogram.git
Homepage: https://pythonhosted.org/sphinxcontrib-autoprogram/
Package: sphinxcontrib-autoprogram
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python:Depends}
Description: automated documentation of CLI programs for Sphinx (Python 2)
This contrib extension, sphinxcontrib.autoprogram, provides an automated way
to document CLI programs. It scans argparse.ArgumentParser object, and then
expands it into a set of .. program:: and .. option:: directives.
.
In order to use it, add sphinxcontrib.autoprogram into extensions list of your
Sphinx configuration file (conf.py)
.
This package contains the Python 2 version.
Package: python3-sphinxcontrib.autoprogram
Architecture: all
Depends: ${shlibs:Depends},
......
#!/usr/bin/make -f
export PYBUILD_DESTDIR_python2=debian/sphinxcontrib-autoprogram
export PYBUILD_DESTDIR_python3=debian/python3-sphinxcontrib.autoprogram
%:
dh $@ --with=python2,python3 --buildsystem=pybuild
dh $@ --with=python3 --buildsystem=pybuild
override_dh_auto_install:
dh_auto_install
......