cubicweb/skeleton/debian/control.tmpl
author Jérémy Bobbio <jeremy.bobbio@irq7.fr>
Wed, 10 Jul 2019 14:57:58 +0200
branch3.26
changeset 12689 376168d1b14a
parent 11835 fafdb7f1e888
child 12709 280c9db41038
permissions -rw-r--r--
[skeleton] Update Debian packaging template Here are multiple updates to the Debian packaging template provided when running `cubicweb-ctl newcube`: * Switch to source format 3.0 (quilt). * Switch to debhelper 9. * Switch to dh-python. * Add Python 3 packages. * Name the binary packages `python-cubicweb-CUBENAME` and `python3-cubicweb-CUBENAME` instead of just `cubicweb-CUBENAME` (which is still the source package). * Populate Depends using dh_python{2,3} support for Python requirements. * Run test suite at build time using pytest. * Add autopkgtest to run test suite against the installed package. * Bump Standards-Version to 4.3.0.

Source: %(distname)s
Section: web
Priority: optional
Maintainer: %(author)s <%(author-email)s>
Build-Depends:
 debhelper (>= 9),
 dh-python,
 python-all,
 python-setuptools,
 python-pytest,
 python-cubicweb,
 python3-all,
 python3-setuptools,
 python3-pytest,
 python3-cubicweb,
Standards-Version: 4.3.0
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.4

Package: python-%(distname)s
Architecture: all
Depends:
 ${python:Depends},
 ${misc:Depends},
Description: %(shortdesc)s
 CubicWeb is a semantic web application framework.
 .
 %(longdesc)s
 .
 This package will install all the components you need to run an application
 using the %(distname)s cube for Python 2.

Package: python3-%(distname)s
Architecture: all
Depends:
 ${python3:Depends},
 ${misc:Depends},
Description: %(shortdesc)s
 CubicWeb is a semantic web application framework.
 .
 %(longdesc)s
 .
 This package will install all the components you need to run an application
 using the %(distname)s cube for Python 3.