summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-08-19 21:26:40 +0300
committerLars Wirzenius <liw@liw.fi>2017-08-19 21:26:40 +0300
commitfd26f8ef9f8233fccae3806330d49c46fd46698a (patch)
tree26a9c0dcc638ff40f6a03287e324c8dd241c78e1
parent4e61b97701bcf19a54ccbd31ca7489b7f67fd010 (diff)
downloadcliapp-fd26f8ef9f8233fccae3806330d49c46fd46698a.tar.gz
Add: Python3 for debian/control
-rw-r--r--debian/control29
1 files changed, 24 insertions, 5 deletions
diff --git a/debian/control b/debian/control
index 4c48396..b8de637 100644
--- a/debian/control
+++ b/debian/control
@@ -3,15 +3,34 @@ Maintainer: Lars Wirzenius <liw@liw.fi>
Section: python
Priority: optional
Standards-Version: 3.9.8
-Build-Depends: debhelper (>= 9), python-all (>= 2.7~),
- python-coverage-test-runner, pep8, pylint,
- python-yaml, python-xdg
-X-Python-Version: >= 2.7
+Build-Depends: debhelper (>= 9),
+ python-all (>= 2.7~),
+ python3-all (>= 3.5~),
+ python-coverage-test-runner,
+ python3-coverage-test-runner,
+ pep8,
+ pylint,
+ pylint3,
+ python-yaml,
+ python3-yaml,
+ python-xdg,
+ python3-xdg
Package: python-cliapp
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python (>= 2.7), python-yaml
-Suggests: libjs-jquery, libjs-underscore, python-xdg
+Suggests: python-xdg
+Description: Python framework for Unix command line programs
+ cliapp makes it easier to write typical Unix command line programs,
+ by taking care of the common tasks they need to do, such as
+ parsing the command line, reading configuration files, setting
+ up logging, iterating over lines of input files, and so on.
+Homepage: http://liw.fi/cliapp/
+
+Package: python3-cliapp
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}, python3 (>= 3.5), python3-yaml
+Suggests: python3-xdg
Description: Python framework for Unix command line programs
cliapp makes it easier to write typical Unix command line programs,
by taking care of the common tasks they need to do, such as