.\" Man page generated from reStructuredText. . .TH DH_PYTHON3 1 "" "" "" .SH NAME dh_python3 \- calculates Python dependencies, adds maintainer scripts to byte compile files, etc. . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .SH SYNOPSIS .INDENT 0.0 .INDENT 3.5 dh_python3 \-p PACKAGE [\-V [X.Y][\-][A.B]] DIR [\-X REGEXPR] .UNINDENT .UNINDENT .SH DESCRIPTION .SS QUICK GUIDE FOR MAINTAINERS .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .IP \(bu 2 build depend on dh\-python .IP \(bu 2 build\-depend on python3 (Python application) or python3\-all (Python module) or python3\-all\-dev (Python extension), .IP \(bu 2 if necessary, describe supported Python 3 versions via X\-Python3\-Version field in debian/control, .IP \(bu 2 build module/application using its standard build system (pybuild wrapper recommended, see pybuild.1 for more details), remember to build extensions for all supported Python 3 versions (loop over \fBpy3versions \-vr\fP), .IP \(bu 2 install files to the \fIstandard\fP locations, add \fI\-\-install\-layout=deb\fP to setup.py\(aqs install command if your package is using distutils, .IP \(bu 2 add \fIpython3\fP to dh\(aqs \-\-with option, or: .IP \(bu 2 \fIinclude /usr/share/cdbs/1/class/python\-distutils.mk\fP in debian/rules and depend on \fIcdbs (>= 0.4.90)\fP, or: .IP \(bu 2 call \fBdh_python3\fP in the \fIbinary\-*\fP target, .IP \(bu 2 add \fI${python3:Depends}\fP to Depends .UNINDENT .UNINDENT .UNINDENT .SS NOTES .SS dependencies .sp dh_python3 tries to translate Python dependencies from the \fIrequires.txt\fP file 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. .sp For a package \fIpython3\-foo\fP that depends on a package \fIpython3\-bar\fP, there are two files that may provide such rules: .INDENT 0.0 .IP 1. 3 If the \fIpython3\-foo\fP source package ships with a \fIdebian/py3dist\-overrides\fP file, this file is used by dh_python3 during the build of \fIpython3\-foo\fP\&. .IP 2. 3 If the \fIpython3\-bar\fP source package ships with a \fIdebian/python3\-bar.pydist\fP file (and uses dh_python3), this file will be included in the binary package as \fI/usr/share/dh\-python/dist/cpython3/python3\-bar\fP\&. During the build of \fIpython3\-foo\fP, dh_python3 will then find and use the file. .UNINDENT .sp Both files have the same format described in \fI/usr/share/doc/dh\-python/README.PyDist\fP\&. If all you want is to generate versioned dependencies (and assuming that the \fIpython3\-bar\fP package provides the \fIpybar\fP Python module), in most cases it will be sufficient to put the line \fBpybar python3\-bar; PEP386\fP into either of the above files. .SS private dirs .sp \fI/usr/share/foo\fP, \fI/usr/share/games/foo\fP, \fI/usr/lib/foo\fP and \fI/usr/lib/games/foo\fP private directories are scanned for Python files by default (where \fIfoo\fP 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. .SS debug packages .sp In binary packages which name ends with \fI\-dbg\fP, all files in \fI/usr/lib/python3/dist\-packages/\fP directory that have extensions different than \fIso\fP or \fIh\fP are removed by default. Use \-\-no\-dbg\-cleaning option to disable this feature. .SS pyinstall files .sp Files listed in debian/pkg.pyinstall file will be installed as public modules (i.e. into .../dist\-packages/ directory) for all requested Python versions. .sp Syntax: \fBpath/to/file [VERSION_RANGE] [NAMESPACE]\fP .sp 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. .INDENT 0.0 .TP .B Examples: .INDENT 7.0 .IP \(bu 2 \fBfoo.py\fP installs .../dist\-packages/foo.py for all supported Python versions .IP \(bu 2 \fBfoo/bar.py 3.3\-\fP installs .../dist\-packages/foo/bar.py for versions >= 3.3 .IP \(bu 2 \fBfoo/bar.py spam\fP installs .../dist\-packages/spam/bar.py .IP \(bu 2 \fBdebian/*.py spam.egg 3.2\fP installs .../python3.2/dist\-packages/spam/egg/*.py files .UNINDENT .UNINDENT .SS pyremove files .sp 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. .INDENT 0.0 .TP .B Examples: .INDENT 7.0 .IP \(bu 2 \fB*.pth\fP removes .pth files from .../dist\-packages/ .IP \(bu 2 \fBbar/baz.py 3.2\fP removes .../python3.2/dist\-packages/bar/baz.py .UNINDENT .UNINDENT .SS bcep files .sp 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 \fI\-\-exclude\fP passed to py3compile in postinst is not used in rtupdate scripts and thus this option cannot be used for non\-private modules). .sp \fBre|\-3.6|/usr/lib/python3/dist\-packages/jinja2|.*/async(foo|bar).py\fP will skip byte\-compilation of \fIasyncfoo.py\fP and \fIasyncbar.py\fP in \fI/usr/lib/python3/dist\-packages/jinja2/\fP directory for each interpreter that doesn\(aqt support \fIasync\fP keyword (introduced in Python 3.6). .sp If you want to skip byte\-compilation in a subdirectory for all interpreters, use: \fBdir|\-4.0|/usr/lib/python3/dist\-packages/foo/tests/\fP\&. VERSION_RANGE (\fI\-4.0\fP in the example) is described in \fIREADME.PyDist\fP file. .sp \fIdebian/python3\-foo.bcep\fP file from source package will be included in the binary package as \fI/usr/share/python3/bcep/python3\-foo.bcep\fP .SS overriding supported / default Python versions .sp If you want to override system\(aqs 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 \fIDEBPYTHON3_SUPPORTED\fP and/or \fIDEBPYTHON3_DEFAULT\fP env. variables. .sp Example: \fB3.2,3.3\fP limits the list of supported Python versions to Python 3.2 and Python 3.3. .SH OPTIONS .INDENT 0.0 .TP .B \-\-version show program\(aqs version number and exit .TP .B \-h\fP,\fB \-\-help show help message and exit .TP .B \-\-no\-guessing\-deps disable guessing dependencies .TP .B \-\-no\-dbg\-cleaning do not remove any files from debug packages .TP .B \-\-no\-ext\-rename do not add magic tags nor multiarch tuples to extension file names .TP .B \-\-no\-shebang\-rewrite do not rewrite shebangs .TP .B \-\-skip\-private don\(aqt check private directories .TP .B \-v\fP,\fB \-\-verbose turn verbose mode on .TP .B \-i\fP,\fB \-\-indep act on architecture independent packages .TP .B \-a\fP,\fB \-\-arch act on architecture dependent packages .TP .B \-q\fP,\fB \-\-quiet be quiet .TP .BI \-p \ PACKAGE\fR,\fB \ \-\-package\fB= PACKAGE act on the package named PACKAGE .TP .BI \-N \ NO_PACKAGE\fR,\fB \ \-\-no\-package\fB= NO_PACKAGE do not act on the specified package .TP .BI \-V \ VERSION_RANGE specify list of supported Python 3 versions. See py3compile(1) for examples .TP .BI \-X \ REGEXPR\fR,\fB \ \-\-exclude\fB= REGEXPR exclude items that match given REGEXPR. You may use this option multiple times to build up a list of things to exclude from byte\-compilation in private dirs. See also \fIbcep files\fP\&. .TP .B \-\-compile\-all compile all files from given private directory in postinst/rtupdate not just the ones provided by the package (i.e. do not pass the \-\-package parameter to py3compile/py3clean) .TP .B \-\-accept\-upstream\-versions accept upstream versions while translating Python dependencies into Debian ones .TP .BI \-\-depends\fB= DEPENDS translate given requirements into Debian dependencies and add them to ${python3:Depends}. Use it for missing items in requires.txt .TP .BI \-\-depends\-section\fB= SECTION translate requirements from given sections of requres.txt file into Debian dependencies and add them to ${python3:Depends}. .TP .BI \-\-recommends\fB= RECOMMENDS translate given requirements into Debian dependencies and add them to ${python3:Recommends} .TP .BI \-\-recommends\-section\fB= SECTION translate requirements from given sections of requres.txt file into Debian dependencies and add them to ${python3:Recommends}. .TP .BI \-\-suggests\fB= SUGGESTS translate given requirements into Debian dependencies and add them to ${python3:Suggests} .TP .BI \-\-suggests\-section\fB= SECTION translate requirements from given sections of requres.txt file into Debian dependencies and add them to ${python3:Suggests}. .TP .BI \-\-requires\fB= FILENAME translate requirements from given file(s) into Debian dependencies and add them to ${python3:Depends} .TP .BI \-\-shebang\fB= COMMAND use given command as shebang in scripts .TP .B \-\-ignore\-shebangs do not translate shebangs into Debian dependencies .UNINDENT .SH SEE ALSO .INDENT 0.0 .IP \(bu 2 /usr/share/doc/python/python\-policy.txt.gz .IP \(bu 2 /usr/share/doc/dh\-python/README.PyDist .IP \(bu 2 pybuild(1) .IP \(bu 2 py3compile(1), py3clean(1) .IP \(bu 2 dh_python2(1), pycompile(1), pyclean(1) .IP \(bu 2 \fI\%http://deb.li/dhp3\fP \- most recent version of this document .UNINDENT .SH AUTHOR Piotr Ożarowski, 2012-2013 .\" Generated by docutils manpage writer. .