DH_PYTHON3(1) | General Commands Manual | DH_PYTHON3(1) |
dh_python3 - calculates Python dependencies, adds maintainer scripts to byte compile files, etc.
dh_python3 tries to translate Python dependencies from Requires-Dist entries in dist-info or requires.txt contents in egg-info to Debian dependencies. In many cases, this works without any additional configuration because dh_python3 comes with a build-in mapping of Python module names to Debian packages that is periodically regenerated from the Debian archive. By default, the version information in the Python dependencies is discarded. If you want dh_python3 to generate more strict dependencies (e.g. to avoid ABI problems), or if the automatic mapping does not work correctly for your package, you have to provide dh_python3 with additional rules for the translation of Python module to Debian package dependencies.
For a package python3-foo that depends on a package python3-bar, there are two files that may provide such rules:
Both files have the same format described in /usr/share/doc/dh-python/README.PyDist. If all you want is to generate versioned dependencies (and assuming that the python3-bar package provides the pybar Python module), in most cases it will be sufficient to put the line pybar python3-bar; PEP386 into either of the above files.
/usr/share/foo, /usr/share/games/foo, /usr/lib/foo and /usr/lib/games/foo private directories are scanned for Python files by default (where foo is binary package name). If your package ships Python files in some other directory, add another dh_python3 call in debian/rules with directory name as an argument - you can use different set of options in this call. If you need to change options (f.e. a list of supported Python 3 versions) for a private directory that is checked by default, invoke dh_python3 with --skip-private option and add another call with a path to this directory and new options.
In binary packages which name ends with -dbg, all files in /usr/lib/python3/dist-packages/ directory that have extensions different than so or h are removed by default. Use --no-dbg-cleaning option to disable this feature.
Files listed in debian/pkg.pyinstall file will be installed as public modules (i.e. into .../dist-packages/ directory) for all requested Python versions.
Syntax: path/to/file [NAMESPACE] [VERSION_RANGE]
debian directory is automatically removed from the path, so you can place your files in debian/ directory and install them from this location (if you want to install them in "debian" namespace, set NAMESPACE to debian). If NAMESPACE is set, all listed files will be installed in .../dist-packages/NAMESPACE/ directory.
If you want to remove some public modules (i.e. files in .../dist-packages/ directory) installed by build system (from all supported Python versions or only from a subset of these versions), add them to debian/pkg.pyremove file.
Byte-compilation exception patterns can be described in these files. Use it if you want py3compile to skip specific files. This is the only way to skip .py files in …/dist-packages/ directory (as --exclude passed to py3compile in postinst is not used in rtupdate scripts and thus this option cannot be used for non-private modules).
re|-3.6|/usr/lib/python3/dist-packages/jinja2|.*/async(foo|bar).py will skip byte-compilation of asyncfoo.py and asyncbar.py in /usr/lib/python3/dist-packages/jinja2/ directory for each interpreter that doesn't support async keyword (introduced in Python 3.6).
If you want to skip byte-compilation in a subdirectory for all interpreters, use: dir|-4.0|/usr/lib/python3/dist-packages/foo/tests/. VERSION_RANGE (-4.0 in the example) is described in README.PyDist file.
debian/python3-foo.bcep file from source package will be included in the binary package as /usr/share/python3/bcep/python3-foo.bcep
If you want to override system's list of supported Python versions or the default one (f.e. to build a package that includes symlinks for older version of Python or compile .py files only for given interpreter version), you can do that via DEBPYTHON3_SUPPORTED and/or DEBPYTHON3_DEFAULT env. variables.
Example: 3.2,3.3 limits the list of supported Python versions to Python 3.2 and Python 3.3.
Piotr Ożarowski, 2012-2013